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 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
fromfireblocks.models.reissue_multichain_token_requestimportReissueMultichainTokenRequest# TODO update the JSON string belowjson="{}"# create an instance of ReissueMultichainTokenRequest from a JSON stringreissue_multichain_token_request_instance=ReissueMultichainTokenRequest.from_json(json)
# print the JSON string representation of the objectprint(ReissueMultichainTokenRequest.to_json())
# convert the object into a dictreissue_multichain_token_request_dict=reissue_multichain_token_request_instance.to_dict()
# create an instance of ReissueMultichainTokenRequest from a dictreissue_multichain_token_request_from_dict=ReissueMultichainTokenRequest.from_dict(reissue_multichain_token_request_dict)