bitcoinjs-lib/types/networks.d.ts

17 lines
348 B
TypeScript
Raw Normal View History

2019-03-07 04:11:15 +01:00
export interface Network {
messagePrefix: string;
bech32: string;
2019-03-07 04:11:15 +01:00
bip32: Bip32;
pubKeyHash: number;
scriptHash: number;
wif: number;
2019-03-07 04:11:15 +01:00
}
interface Bip32 {
public: number;
private: number;
2019-03-07 04:11:15 +01:00
}
export declare const bitcoin: Network;
export declare const regtest: Network;
export declare const testnet: Network;
export {};