| 28 | } |
| 29 | |
| 30 | export interface IWalletAccount { |
| 31 | target: number; // Purpose, 0: general address, 1: change, 2... |
| 32 | index: number; // Address number starting from 0 |
| 33 | extPath: string; |
| 34 | xpub: string; |
| 35 | privateKey: string; |
| 36 | publicKey: string; |
| 37 | tweakedPrivateKey?: string; |
| 38 | xOnlyPubkey?: string; |
| 39 | mainAddress?: IAddressObject; |
| 40 | tokenAddress?: IAddressObject; |
| 41 | network: string; // livenet/testnet |
| 42 | [key: string]: any; // Support for any additional properties |
| 43 | } |
| 44 | |
| 45 | export interface IScriptObject { |
| 46 | address?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected