Skip to content

Commit

Permalink
undo commit of events code
Browse files Browse the repository at this point in the history
  • Loading branch information
Unique-Divine committed Aug 14, 2024
1 parent c251d62 commit fbee573
Show file tree
Hide file tree
Showing 3 changed files with 144 additions and 150 deletions.
16 changes: 8 additions & 8 deletions proto/eth/evm/v1/events.proto
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ option go_package = "github.com/NibiruChain/nibiru/x/evm";

// EventEthereumTx defines the event for an Ethereum transaction
message EventEthereumTx {
// value is the ether value of the transaction in units of wei.
string value = 1;
// amount
string amount = 1;
// eth_hash is the Ethereum hash of the transaction
string eth_tx_hash = 2;
string eth_hash = 2;
// index of the transaction in the block
string block_tx_index = 3;
string index = 3;
// gas_used is the amount of gas used by the transaction
string gas_used = 4;
// tm_tx_hash is the Tendermint hash of the transaction
string tm_tx_hash = 5;
// to is the EIP55-compliant hex string of the "to" address
string to = 6;
// hash is the Tendermint hash of the transaction
string hash = 5;
// recipient of the transaction
string recipient = 6;
// eth_tx_failed contains a VM error should it occur
string eth_tx_failed = 7;
}
Expand Down
193 changes: 96 additions & 97 deletions x/evm/events.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit fbee573

Please sign in to comment.