Interface representing wallet data, with support for both camelCase and snake_case property names for compatibility with older versions of the Python SDK.

interface WalletData {
    networkId?: string;
    network_id?: string;
    seed: string;
    walletId?: string;
    wallet_id?: string;
}

Properties

networkId?: string

The network ID in either camelCase or snake_case format, but not both.

network_id?: string
seed: string

The wallet seed

walletId?: string

The CDP wallet ID in either camelCase or snake_case format, but not both.

wallet_id?: string