UNPKG

348 BTypeScriptView Raw
1export interface Network {
2 messagePrefix: string;
3 bech32: string;
4 bip32: Bip32;
5 pubKeyHash: number;
6 scriptHash: number;
7 wif: number;
8}
9interface Bip32 {
10 public: number;
11 private: number;
12}
13export declare const bitcoin: Network;
14export declare const regtest: Network;
15export declare const testnet: Network;
16export {};