f7bcc8d12e
* docs: update * update + * txs * update docs * more docs * spec update * doc fixes
24 lines
1.1 KiB
Markdown
24 lines
1.1 KiB
Markdown
<!--
|
|
order: 6
|
|
-->
|
|
|
|
# Events
|
|
|
|
The EVM module emits the Cosmos SDK [events](./../../../docs/quickstart/events.md#sdk-and-tendermint-events) after a state execution. It can be expected that the type `message`, with an
|
|
attribute key of `action` will represent the first event for each message being processed as emitted
|
|
by the Cosmos SDK's `Baseapp` (i.e the the basic application that implements Tendermint Core's ABCI
|
|
interface).
|
|
|
|
## MsgEthereumTx
|
|
|
|
| Type | Attribute Key | Attribute Value |
|
|
|-------------|--------------------|-------------------------|
|
|
| ethereum_tx | `"amount"` | `{amount}` |
|
|
| ethereum_tx | `"recipient"` | `{hex_address}` |
|
|
| ethereum_tx | `"contract"` | `{hex_address}` |
|
|
| ethereum_tx | `"txHash"` | `{tendermint_hex_hash}` |
|
|
| ethereum_tx | `"ethereumTxHash"` | `{hex_hash}` |
|
|
| message | `"sender"` | `{eth_address}` |
|
|
| message | `"action"` | `"ethereum"` |
|
|
| message | `"module"` | `"evm"` |
|