You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
360 B
16 lines
360 B
export declare type Network = {
|
|
messagePrefix: string;
|
|
bech32: string;
|
|
bip32: bip32;
|
|
pubKeyHash: number;
|
|
scriptHash: number;
|
|
wif: number;
|
|
};
|
|
declare type bip32 = {
|
|
public: number;
|
|
private: number;
|
|
};
|
|
export declare const bitcoin: Network;
|
|
export declare const regtest: Network;
|
|
export declare const testnet: Network;
|
|
export {};
|
|
|