Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.33 KB

TransactionRequestGasPrice.md

File metadata and controls

29 lines (20 loc) · 1.33 KB

TransactionRequestGasPrice

For non-EIP-1559, EVM-based transactions. Price per gas unit (in Ethereum this is specified in Gwei). 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.

Properties

Name Type Description Notes

Example

from fireblocks.models.transaction_request_gas_price import TransactionRequestGasPrice

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

# convert the object into a dict
transaction_request_gas_price_dict = transaction_request_gas_price_instance.to_dict()
# create an instance of TransactionRequestGasPrice from a dict
transaction_request_gas_price_from_dict = TransactionRequestGasPrice.from_dict(transaction_request_gas_price_dict)

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