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