Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.5 KB

TransactionRequestNetworkFee.md

File metadata and controls

29 lines (20 loc) · 1.5 KB

TransactionRequestNetworkFee

For EVM-based blockchains only. The total transaction fee in the blockchain’s largest unit. Note: Only two of the three arguments can be specified in a single transaction: gasLimit, gasPrice and networkFee. Fireblocks recommends using a numeric string for accurate precision. Although a number input exists, it is deprecated. - The transaction blockchain fee. - For Ethereum, you can't pass gasPrice, gasLimit and networkFee all together. - A numeric value representation is required.

Properties

Name Type Description Notes

Example

from fireblocks.models.transaction_request_network_fee import TransactionRequestNetworkFee

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

# convert the object into a dict
transaction_request_network_fee_dict = transaction_request_network_fee_instance.to_dict()
# create an instance of TransactionRequestNetworkFee from a dict
transaction_request_network_fee_from_dict = TransactionRequestNetworkFee.from_dict(transaction_request_network_fee_dict)

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