Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 3.77 KB

File metadata and controls

47 lines (38 loc) · 3.77 KB

TransactionFee

Properties

Name Type Description Notes
fee_type FeeType
token_id str The token used to pay the transaction fee. [optional]
effective_gas_price str The gas price (gas fee per gas unit) on the chain, in wei. The gas price represents the amount of ETH that must be paid to validators for processing transactions. [optional]
fee_used str The actually charged transaction fee. [optional]
estimated_fee_used str The estimated transaction fee. [optional]
gas_used str The gas units used in the transaction. [optional]
max_fee_per_gas str The maximum gas fee per gas unit used on the chain, in wei. [optional]
max_priority_fee_per_gas str The maximum priority fee per gas unit used, in wei. The maximum priority fee represents the highest amount of miner tips that you are willing to pay for your transaction. [optional]
gas_limit str The maximum amount of gas your transaction is allowed to consume. [optional]
gas_price str The gas price, in wei. The gas price represents the amount of ETH that must be paid to validators for processing transactions per gas unit used. [optional]
max_fee_amount str The maximum fee that you are willing to pay for the transaction. Provide the value without applying precision. The transaction will fail if the transaction fee exceeds the maximum fee. [optional]
fee_rate str The fee rate in sat/vByte. The fee rate represents the satoshis you are willing to pay for each byte of data that your transaction will consume on the blockchain. [optional]
base_fee str A fixed fee charged per signature. The default is 5,000 lamports per signature. [optional]
rent_amount str The rent fee charged by the network to store non–rent-exempt accounts on-chain. It is deducted periodically until the account maintains the minimum balance required for rent exemption. [optional]
compute_unit_price str The price paid per compute unit. This value determines the priority fee for the transaction, allowing you to increase inclusion probability in congested conditions. [optional]
compute_unit_limit str The maximum number of compute units your transaction is allowed to consume. It sets an upper bound on computational resource usage to prevent overload. [optional]
gas_base str The minimum fee required for a transaction to be included in a block. The base fee is dynamically adjusted based on network congestion to maintain target block utilization. It is burned rather than paid to miners, reducing the total Filecoin supply over time. [optional]
gas_premium str An optional tip you can include to prioritize your transaction. The gas premium incentivizes miners to include your transaction sooner than those offering only the base fee. [optional]
gas_fee_cap str The maximum gas price you are willing to pay per unit of gas. [optional]

Example

from cobo_waas2.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]