Type Alias IAccountsCreateRequest

IAccountsCreateRequest: {
    accountIndex?: number;
    accountName: string;
    paymentSecret?: string;
    prvKeyDataId: string;
    type: "bip32";
    walletSecret: string;
}

Argument interface for the Wallet.accountsCreate method.