MCPcopy Index your code
hub / github.com/NoteProtocol/NoteWallet / IWalletAccount

Interface IWalletAccount

src/types.ts:30–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28}
29
30export 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
45export interface IScriptObject {
46 address?: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected