From 04ccbcfa9c6682ffeeff5183431735c6a354cb22 Mon Sep 17 00:00:00 2001 From: Unique Divine <51418232+Unique-Divine@users.noreply.github.com> Date: Tue, 12 Nov 2024 09:56:25 -0600 Subject: [PATCH] fix: e2e-evm-cron.yml (#2111) * fix: e2e-evm-cron.yml * Update e2e-evm-cron.yml * chore(e2e-evm-cron.yml): correct the GH secret name to MNEMONIC_TESTNET1_VALIDATOR * chore: changelog update --------- Co-authored-by: Oleg Nikonychev --- .github/workflows/e2e-evm-cron.yml | 11 +++++++++-- CHANGELOG.md | 1 + 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-evm-cron.yml b/.github/workflows/e2e-evm-cron.yml index 11ae62b9a..dd632068a 100644 --- a/.github/workflows/e2e-evm-cron.yml +++ b/.github/workflows/e2e-evm-cron.yml @@ -24,6 +24,11 @@ jobs: steps: - uses: actions/checkout@v4 + - name: "Install just" + # casey/just: https://just.systems/man/en/chapter_6.html + # taiki-e/install-action: https://github.com/taiki-e/install-action + uses: taiki-e/install-action@just + - name: 'just install' run: just install working-directory: 'evm-e2e' @@ -31,9 +36,11 @@ jobs: - name: 'Run tests (just test-basic)' run: just test-basic working-directory: 'evm-e2e' + # 2024-11-12: We're using the Testnet 1 validator account because it has + # a lot of funds in NIBI. env: JSON_RPC_ENDPOINT: https://evm-rpc.testnet-1.nibiru.fi - MNEMONIC: ${{ secrets.WALLET_MNEMONIC_TESTNET }} + MNEMONIC: ${{ secrets.MNEMONIC_TESTNET1_VALIDATOR }} - name: Send failure to slack channel if: always() @@ -44,4 +51,4 @@ jobs: notification_title: 'EVM basic tests failed on Testnet' message_format: '{emoji} *{workflow}* {status_message} Run: {run_url}' env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_TESTNET }} + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 553714568..408bd8bc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -105,6 +105,7 @@ tests for race conditions within funtoken precompile feat(evm-funtoken-precompile): Implement methods: balance, bankBalance, whoAmI - [#2108](https://github.com/NibiruChain/nibiru/pull/2108) - fix(evm): removed deprecated root key from eth_getTransactionReceipt - [#2110](https://github.com/NibiruChain/nibiru/pull/2110) - fix(evm): Restore StateDB to its state prior to ApplyEvmMsg call to ensure deterministic gas usage. This fixes an issue where the StateDB pointer field in NibiruBankKeeper was being updated during readonly query endpoints like eth_estimateGas, leading to non-deterministic gas usage in subsequent transactions. +- [#2111](https://github.com/NibiruChain/nibiru/pull/2111) - fix: e2e-evm-cron.yml #### Nibiru EVM | Before Audit 1 - 2024-10-18