Since the EVM logs are saved in [msg response](https://github.com/cosmos/evm/blob/3e3793173dff802dac1723443e54affb4304f714/proto/cosmos/evm/vm/v1/tx.proto#L66), we can: 1. Parse logs from the `txResult.Data` instead of `txResult.Events`. 2. Don't emit EVM events to cosmos-sdk events at all. ### Positives * Less work to do in tx execution. * Faster to parse logs in json-rpc. * Less data to store in block results and tx indexer db.