Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 2.56 KB

DecodeRawTransactionHexRISB22.md

File metadata and controls

26 lines (21 loc) · 2.56 KB

DecodeRawTransactionHexRISB22

Binance Smart Chain

Properties

Name Type Description Notes
gas_limit str Represents the amount of gas used by this specific transaction alone.
nonce int Represents the sequential running number for an address, starting from 0 for the first transaction. E.g., if the nonce of a transaction is 10, it would be the 11th transaction sent from the sender's address.
recipient str The address which receives this transaction. In UTXO-based protocols like Bitcoin there could be several senders while in account-based protocols like Ethereum there is always only one recipient.
sender str Represents the address which sends this transaction. In UTXO-based protocols like Bitcoin there could be several senders while in account-based protocols like Ethereum there is always only one sender.
type int Specifies the transaction type as one from three options: if response returns a `"0"` it means the raw transaction includes legacy transaction data, if it is `"1"` - includes access lists for EIP2930, and if it is `"2"` - EIP1559 data.
approximate_fee str Defines the approximate fee value. When isConfirmed is True - Defines the amount of the transaction fee When isConfirmed is False - For ETH-based blockchains this attribute represents the max fee value. [optional]
approximate_minimum_required_fee str Defines the approximate minimum fee that is required for the transaction. [optional]
gas_paid_for_data str Represents the amount of gas paid for the data in the transaction. [optional]
gas_price str Represents the price offered to the miner to purchase this amount of gas. [optional]
input_data str Represents additional information that is required for the transaction. [optional]
r str Represents output of an ECDSA signature. [optional]
s str Represents output of an ECDSA signature. [optional]
v str Defines the the recovery id. [optional]
value str Represents the sent/received amount. [optional]
any string name bool, date, datetime, dict, float, int, list, str, none_type any string name can be used but the value must be the correct type [optional]

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