You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pending_ethereum_tx - untyped event, emitted within evm ante handler.
Left untyped because it could be used by Tendermint TxSearch which cannot parse wrapper quotes in a typed event value.
eth.evm.v1.EventEthereumTx - typed event, contains more info about ethereum tx. Used for getting TxReceipt.
message - untyped event with attr module (evm), sender and tx_type (legacy, accessList or DynamicFee) - left untyped because it's being used for event subscription (for eth it's used in eth_filterLogs)
eth.evm.v1.EventTxLog - typed event, stores evm execution logs. Used in log queries.
Additional typed events which are emitted depending on Tx action: EventContractDeployed, EventContractExecuted or EventTransfer.
eth.evm.v1.EventBlockBloom - typed event emitted in the end of the block and used for event filtering.
TmTxIndexer vs EVM Indexer
One of the indexers must be turned on public nodes. With both turned off EVM Tx will not get a proper receipt and several queries will fail.
Fix tx_index
Fixed issue with tx_index discrepancy between ante handler event and apply evm event.
Proto Break
Removed typed EventMessage as we have to go with the untyped one. See above.
Following from changes in #1912
The text was updated successfully, but these errors were encountered: