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]
Example
fromfireblocks.models.create_multichain_token_request_create_paramsimportCreateMultichainTokenRequestCreateParams# TODO update the JSON string belowjson="{}"# create an instance of CreateMultichainTokenRequestCreateParams from a JSON stringcreate_multichain_token_request_create_params_instance=CreateMultichainTokenRequestCreateParams.from_json(json)
# print the JSON string representation of the objectprint(CreateMultichainTokenRequestCreateParams.to_json())
# convert the object into a dictcreate_multichain_token_request_create_params_dict=create_multichain_token_request_create_params_instance.to_dict()
# create an instance of CreateMultichainTokenRequestCreateParams from a dictcreate_multichain_token_request_create_params_from_dict=CreateMultichainTokenRequestCreateParams.from_dict(create_multichain_token_request_create_params_dict)