diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eeccc233..2ee92602a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ - [\#350](https://github.com/cosmos/evm/pull/350) Fix p256 precompile test flakiness - [\#376](https://github.com/cosmos/evm/pull/376) Fix precompile initialization for local node development script - [\#384](https://github.com/cosmos/evm/pull/384) Fix debug_traceTransaction RPC failing with block height mismatch errors +- [\#441](https://github.com/cosmos/evm/pull/441) Align precompiles map with available static check to Prague. ### IMPROVEMENTS diff --git a/evmd/precompiles.go b/evmd/precompiles.go index a27ab8d6b..b84977762 100644 --- a/evmd/precompiles.go +++ b/evmd/precompiles.go @@ -91,7 +91,7 @@ func NewAvailableStaticPrecompiles( opt(&options) } // Clone the mapping from the latest EVM fork. - precompiles := maps.Clone(vm.PrecompiledContractsBerlin) + precompiles := maps.Clone(vm.PrecompiledContractsPrague) // secp256r1 precompile as per EIP-7212 p256Precompile := &p256.Precompile{}