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 salt to calculate the deterministic address. Must be a number between 0 and 2^256 -1, for it to fit in the bytes32 parameter.
[optional]
chains
List[str]
The base asset identifiers of the blockchains (legacyId) to calculate deterministic addresses
display_name
str
[optional]
use_gasless
bool
Indicates whether the token should be created in a gasless manner, utilizing the ERC-2771 standard. When set to true, the transaction will be relayed by a designated relayer. The workspace must be configured to use Fireblocks gasless relay.
[optional]
fee
str
Max fee amount for the write function transaction. interchangeable with the 'feeLevel' field
[optional]
fee_level
str
Fee level for the write function transaction. interchangeable with the 'fee' field
[optional]
Example
fromfireblocks.models.create_multichain_token_requestimportCreateMultichainTokenRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateMultichainTokenRequest from a JSON stringcreate_multichain_token_request_instance=CreateMultichainTokenRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateMultichainTokenRequest.to_json())
# convert the object into a dictcreate_multichain_token_request_dict=create_multichain_token_request_instance.to_dict()
# create an instance of CreateMultichainTokenRequest from a dictcreate_multichain_token_request_from_dict=CreateMultichainTokenRequest.from_dict(create_multichain_token_request_dict)