Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.55 KB

File metadata and controls

33 lines (24 loc) · 1.55 KB

ReissueMultichainTokenRequest

Properties

Name Type Description Notes
vault_account_id str The id of the vault account that initiated the request to issue the token
chains List[str] The base asset identifiers of the blockchains you want to deploy to
use_gasless bool Whether to use gasless deployment or not [optional]
fee str Max fee amount for the deploy request. Interchangeable with the 'feeLevel' field [optional]
fee_level str Fee level for the deploy request. Interchangeable with the 'fee' field [optional]

Example

from fireblocks.models.reissue_multichain_token_request import ReissueMultichainTokenRequest

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

# convert the object into a dict
reissue_multichain_token_request_dict = reissue_multichain_token_request_instance.to_dict()
# create an instance of ReissueMultichainTokenRequest from a dict
reissue_multichain_token_request_from_dict = ReissueMultichainTokenRequest.from_dict(reissue_multichain_token_request_dict)

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