You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The token ID, which is a unique identifier that specifies both the blockchain network and cryptocurrency token in the format `{CHAIN}_{TOKEN}`. Supported values include: - USDC: `ETH_USDC`, `ARBITRUM_USDCOIN`, `SOL_USDC`, `BASE_USDC`, `MATIC_USDC2`, `BSC_USDC` - USDT: `TRON_USDT`, `ETH_USDT`, `ARBITRUM_USDT`, `SOL_USDT`, `BASE_USDT`, `MATIC_USDT`, `BSC_USDT`
address
str
The blockchain address in its native format. This is the actual destination address where funds will be sent. The address must match the format required by the specified blockchain. For example: - For `SOL_USDC`: Provide a Solana address - For `ETH_USDT`: Provide an Ethereum address
label
str
A label to help identify the address's purpose. Can contain up to 128 characters.
[optional]
Example
fromcobo_waas2.models.create_crypto_address_requestimportCreateCryptoAddressRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateCryptoAddressRequest from a JSON stringcreate_crypto_address_request_instance=CreateCryptoAddressRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateCryptoAddressRequest.to_json())
# convert the object into a dictcreate_crypto_address_request_dict=create_crypto_address_request_instance.to_dict()
# create an instance of CreateCryptoAddressRequest from a dictcreate_crypto_address_request_from_dict=CreateCryptoAddressRequest.from_dict(create_crypto_address_request_dict)