Fix index.ts networks.ts lint
This commit is contained in:
parent
6a734aef4c
commit
3f34fe457a
5 changed files with 26 additions and 26 deletions
types
10
types/networks.d.ts
vendored
10
types/networks.d.ts
vendored
|
@ -1,15 +1,15 @@
|
|||
export declare type Network = {
|
||||
export interface Network {
|
||||
messagePrefix: string;
|
||||
bech32: string;
|
||||
bip32: bip32;
|
||||
bip32: Bip32;
|
||||
pubKeyHash: number;
|
||||
scriptHash: number;
|
||||
wif: number;
|
||||
};
|
||||
declare type bip32 = {
|
||||
}
|
||||
interface Bip32 {
|
||||
public: number;
|
||||
private: number;
|
||||
};
|
||||
}
|
||||
export declare const bitcoin: Network;
|
||||
export declare const regtest: Network;
|
||||
export declare const testnet: Network;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue