# The Crypto Consumer Wallet object ## Attributes - `id` (string) Unique identifier for the object. - `object` (string) String representing the object’s type. Objects of the same type share the same value. - `livemode` (boolean) If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`. - `network` (enum) The blockchain network for this wallet Possible enum values: - `aptos` Aptos network. - `avalanche` Avalanche network. - `base` Base network. - `bitcoin` Bitcoin network. - `ethereum` Ethereum network. - `optimism` Optimism network. - `polygon` Polygon network. - `solana` Solana network. - `stellar` Stellar network. - `sui` Sui network. - `worldchain` Worldchain network. - `wallet_address` (string) The wallet address ### The Crypto Consumer Wallet object ```json { "id": "ccw_1ABC2DEF3ghi4jkl5", "object": "crypto.consumer_wallet", "livemode": false, "network": "ethereum", "wallet_address": "{{WALLET_ADDRESS}}" } ```