EmergenceTransaction
Last updated
Last updated
For descriptions of each property, see the C++ section below.
Type | Name | Description |
---|---|---|
FString | To | Address of the receiver. Null when its a contract creation transaction. |
int | Type | The transaction type. |
FString | Logs | Array of log objects, which this transaction generated. |
bool | Status | Either true (success) or false (failure). |
FString | ContractAddress | If this transaction was to create a contract address, then this will be the address of the newly create contract, otherwise will be null. |
FString | EffectiveGasPrice | The actual value per gas deducted from the senders account. Before EIP-1559, this is equal to the transaction's gas price. After, it is equal to baseFeePerGas + min(maxFeePerGas - baseFeePerGas, maxPriorityFeePerGas). Legacy transactions and EIP-2930 transactions are coerced into the EIP-1559 format by setting both maxFeePerGas and maxPriorityFeePerGas as the transaction's gas price. |
FString | GasUsed | The amount of gas used by this specific transaction alone. |
FString | CumulativeGasUsed | The total amount of gas used when this transaction was executed in the block. |
FString | Root | Post-transaction stateroot. |
FString | From | Address of the sender. |
FString | BlockNumber | Block number where this transaction was in. |
FString | BlockHash | Hash of the block where this transaction was in. |
FString | TransactionIndex | Integer of the transactions index position in the block. |
FString | TransactionHash | Hash of the transaction. |
FString | LogsBloom | Bloom filter for light clients to quickly retrieve related logs. |
int | Confirmations | The amount of confirmations (chain's current block number - this transaction's block number). |