| Name |
Type |
Description |
Notes |
| address |
str |
The wallet address. |
|
| chain_id |
str |
The chain ID of the cryptocurrency. Supported values in the development environment: - Counterparty: `ARBITRUM_ETH`, `BASE_ETH`, `BSC_BNB`, `ETH`, `TRON`, `MATIC`, `SOL`, `TTRON`, `SOLDEV_SOL`, `SETH` - Destination: `All EVM Networks`, `SOL`, `TRON`, `TTRON`, `SOLDEV_SOL` Supported values in the production environment: - Counterparty: `ARBITRUM_ETH`, `BASE_ETH`, `BSC_BNB`, `ETH`, `TRON`, `MATIC`, `SOL` - Destination: `All EVM Networks`, `SOL`, `TRON` |
|
from cobo_waas2.models.create_wallet_address import CreateWalletAddress
# TODO update the JSON string below
json = "{}"
# create an instance of CreateWalletAddress from a JSON string
create_wallet_address_instance = CreateWalletAddress.from_json(json)
# print the JSON string representation of the object
print(CreateWalletAddress.to_json())
# convert the object into a dict
create_wallet_address_dict = create_wallet_address_instance.to_dict()
# create an instance of CreateWalletAddress from a dict
create_wallet_address_from_dict = CreateWalletAddress.from_dict(create_wallet_address_dict)
[Back to Model list] [Back to API list] [Back to README]