Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.37 KB

TransactionFee.md

File metadata and controls

36 lines (27 loc) · 1.37 KB

TransactionFee

Properties

Name Type Description Notes
fee_per_byte str [optional]
gas_price float [optional]
gas_limit str [optional]
network_fee str [optional]
base_fee float (optional) Base Fee according to EIP-1559 (ETH assets) [optional]
priority_fee float (optional) Priority Fee according to EIP-1559 (ETH assets) [optional]
max_fee_per_gas_delta str Max Fee Per Gas Delta added only for EIP-1559 (ETH assets) [optional]
l1_fee str Layer 1 fee for Layer 2 chains [optional]

Example

from fireblocks.models.transaction_fee import TransactionFee

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

# convert the object into a dict
transaction_fee_dict = transaction_fee_instance.to_dict()
# create an instance of TransactionFee from a dict
transaction_fee_from_dict = TransactionFee.from_dict(transaction_fee_dict)

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