From 3016eef177be109d2ea479e6f689b405a89b1393 Mon Sep 17 00:00:00 2001 From: Oleg Nikonychev Date: Wed, 22 May 2024 17:16:09 +0400 Subject: [PATCH] feat: implemented basic evm tx methods (#1889) * feat: implemented basic evm tx methods * chore: lint * chore: extracted evm chain_id to appconst * fix: tests * fix: tests * fix: lint * chore: cleanup * refactor: merge upstream * chore(evm-keeper): remove unused code --------- Co-authored-by: Unique-Divine --- CHANGELOG.md | 1 + contrib/scripts/localnet.sh | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00f584580..e9778e810 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -63,6 +63,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [#1869](https://github.com/NibiruChain/nibiru/pull/1869) - feat(eth): Module and start of keeper tests - [#1871](https://github.com/NibiruChain/nibiru/pull/1871) - feat(evm): app config and json-rpc - [#1873](https://github.com/NibiruChain/nibiru/pull/1873) - feat(evm): keeper collections and grpc query impls for EthAccount, NibiruAccount +- [#1889](https://github.com/NibiruChain/nibiru/pull/1889) - feat: implemented basic evm tx methods - [#1883](https://github.com/NibiruChain/nibiru/pull/1883) - feat(evm): keeper logic, Ante handlers, EthCall, and EVM transactions. - [#1887](https://github.com/NibiruChain/nibiru/pull/1887) - test(evm): eth api integration test suite diff --git a/contrib/scripts/localnet.sh b/contrib/scripts/localnet.sh index 52e2b3924..d8cf41e9e 100755 --- a/contrib/scripts/localnet.sh +++ b/contrib/scripts/localnet.sh @@ -163,6 +163,8 @@ val_key_name="validator" echo "$MNEMONIC" | $BINARY keys add $val_key_name --recover $BINARY add-genesis-account $($BINARY keys show $val_key_name -a) $GENESIS_COINS +# EVM encrypted nibi address for the same account +$BINARY add-genesis-account nibi1cr6tg4cjvux00pj6zjqkh6d0jzg7mksaywxyl3 $GENESIS_COINS echo_success "Successfully added genesis account: $val_key_name" val_address=$($BINARY keys list | jq -r '.[] | select(.name == "validator") | .address')