Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.22 KB

EVMTokenCreateParamsDto.md

File metadata and controls

30 lines (21 loc) · 1.22 KB

EVMTokenCreateParamsDto

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.evm_token_create_params_dto import EVMTokenCreateParamsDto

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

# convert the object into a dict
evm_token_create_params_dto_dict = evm_token_create_params_dto_instance.to_dict()
# create an instance of EVMTokenCreateParamsDto from a dict
evm_token_create_params_dto_from_dict = EVMTokenCreateParamsDto.from_dict(evm_token_create_params_dto_dict)

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