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 deploy function parameters and values of the contract template
[optional]
symbol
str
The symbol of the token
name
str
The name of the token
issuer_address
str
The address of the issuer of this token. Will be part of the identifier of this token on chain.
Example
fromfireblocks.models.create_token_request_dto_create_paramsimportCreateTokenRequestDtoCreateParams# TODO update the JSON string belowjson="{}"# create an instance of CreateTokenRequestDtoCreateParams from a JSON stringcreate_token_request_dto_create_params_instance=CreateTokenRequestDtoCreateParams.from_json(json)
# print the JSON string representation of the objectprint(CreateTokenRequestDtoCreateParams.to_json())
# convert the object into a dictcreate_token_request_dto_create_params_dict=create_token_request_dto_create_params_instance.to_dict()
# create an instance of CreateTokenRequestDtoCreateParams from a dictcreate_token_request_dto_create_params_from_dict=CreateTokenRequestDtoCreateParams.from_dict(create_token_request_dto_create_params_dict)