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 ID of the blockchain where the token is deployed.
contract_address
str
The token's contract address on the specified blockchain.
Example
fromcobo_waas2.models.create_token_listing_request_requestimportCreateTokenListingRequestRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateTokenListingRequestRequest from a JSON stringcreate_token_listing_request_request_instance=CreateTokenListingRequestRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateTokenListingRequestRequest.to_json())
# convert the object into a dictcreate_token_listing_request_request_dict=create_token_listing_request_request_instance.to_dict()
# create an instance of CreateTokenListingRequestRequest from a dictcreate_token_listing_request_request_from_dict=CreateTokenListingRequestRequest.from_dict(create_token_listing_request_request_dict)