Name |
Type |
Description |
Notes |
vault_account_id |
str |
The vault account id this contract was deploy from |
|
abi_function |
WriteAbiFunction |
|
|
amount |
str |
Amount in base asset. Being used in payable functions |
[optional] |
fee_level |
str |
Fee level for the write function transaction. interchangeable with the 'fee' field |
[optional] |
fee |
str |
Max fee amount for the write function transaction. interchangeable with the 'feeLevel' field |
[optional] |
note |
str |
Custom note, not sent to the blockchain, that describes the transaction at your Fireblocks workspace |
[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] |
external_id |
str |
External id that can be used to identify the transaction in your system. The unique identifier of the transaction outside of Fireblocks with max length of 255 characters |
[optional] |
from fireblocks.models.write_call_function_dto import WriteCallFunctionDto
# TODO update the JSON string below
json = "{}"
# create an instance of WriteCallFunctionDto from a JSON string
write_call_function_dto_instance = WriteCallFunctionDto.from_json(json)
# print the JSON string representation of the object
print(WriteCallFunctionDto.to_json())
# convert the object into a dict
write_call_function_dto_dict = write_call_function_dto_instance.to_dict()
# create an instance of WriteCallFunctionDto from a dict
write_call_function_dto_from_dict = WriteCallFunctionDto.from_dict(write_call_function_dto_dict)
[Back to Model list] [Back to API list] [Back to README]