Type alias IAccountsCreateRequest
IAccountsCreateRequest: { 
    accountIndex?: number; 
    accountName: string; 
    paymentSecret?: string; 
    prvKeyDataId: string; 
    type: "bip32"; 
    walletSecret: string; 
} | { 
    accountName: string; 
    ecdsa?: boolean; 
    paymentSecret?: string; 
    prvKeyDataId: string; 
    type: "kaspa-keypair-standard"; 
    walletSecret: string; 
}
Type declaration
- OptionalaccountIndex?: number
- accountName: string
- OptionalpaymentSecret?: string
- prvKeyDataId: string
- type: "bip32"
- walletSecret: string
Type declaration
- accountName: string
- Optionalecdsa?: boolean
- OptionalpaymentSecret?: string
- prvKeyDataId: string
- type: "kaspa-keypair-standard"
- walletSecret: string
Argument interface for the Wallet.accountsCreate method.