Get desktop application:
View/edit binary Protocol Buffers messages
EthAccount implements the authtypes.AccountI interface and embeds an authtypes.BaseAccount type. It is compatible with the auth AccountKeeper.
base_account is an authtypes.BaseAccount
code_hash is the hash calculated from the code contents
ExtensionOptionDynamicFeeTx is an extension option that specifies the maxPrioPrice for cosmos tx
max_priority_price is the same as `max_priority_fee_per_gas` in eip-1559 spec
ExtensionOptionsWeb3Tx is an extension option that specifies the typed chain id, the fee payer as well as its signature data.
typed_data_chain_id is used only in EIP712 Domain and should match Ethereum network ID in a Web3 provider (e.g. Metamask).
fee_payer is an account address for the fee payer. It will be validated during EIP712 signature checking.
fee_payer_sig is a signature data from the fee paying account, allows to perform fee delegation when using EIP712 Domain.
TxResult is the value stored in eth tx indexer
height of the blockchain
tx_index of the cosmos transaction
msg_index in a batch transaction
eth_tx_index is the index in the list of valid eth tx in the block, aka. the transaction list returned by eth_getBlock api.
failed is true if the eth transaction did not go succeed
gas_used by the transaction. If it exceeds the block gas limit, it's set to gas limit, which is what's actually deducted by ante handler.
cumulative_gas_used specifies the cumulated amount of gas used for all processed messages within the current batch transaction.