Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.96 KB

File metadata and controls

31 lines (22 loc) · 1.96 KB

CreateCryptoAddressRequest

Properties

Name Type Description Notes
token_id str 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

from cobo_waas2.models.create_crypto_address_request import CreateCryptoAddressRequest

# TODO update the JSON string below
json = "{}"
# create an instance of CreateCryptoAddressRequest from a JSON string
create_crypto_address_request_instance = CreateCryptoAddressRequest.from_json(json)
# print the JSON string representation of the object
print(CreateCryptoAddressRequest.to_json())

# convert the object into a dict
create_crypto_address_request_dict = create_crypto_address_request_instance.to_dict()
# create an instance of CreateCryptoAddressRequest from a dict
create_crypto_address_request_from_dict = CreateCryptoAddressRequest.from_dict(create_crypto_address_request_dict)

[Back to Model list] [Back to API list] [Back to README]