Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.44 KB

File metadata and controls

30 lines (21 loc) · 1.44 KB

CreateMultichainTokenRequestCreateParams

Properties

Name Type Description Notes
contract_id str The id of the contract template that will be used to create the token
deploy_function_params List[ParameterWithValue] The deploy function parameters and values of the contract template [optional]

Example

from fireblocks.models.create_multichain_token_request_create_params import CreateMultichainTokenRequestCreateParams

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

# convert the object into a dict
create_multichain_token_request_create_params_dict = create_multichain_token_request_create_params_instance.to_dict()
# create an instance of CreateMultichainTokenRequestCreateParams from a dict
create_multichain_token_request_create_params_from_dict = CreateMultichainTokenRequestCreateParams.from_dict(create_multichain_token_request_create_params_dict)

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