Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
a5405da
Problem: eth_getLogs miss logs with batch transactions. (#577) (#578)
Apr 8, 2025
4ca6d42
Problem: recent bug fixes are not included (backport: #574 #576) (#579)
mmsqe Apr 8, 2025
434f46d
Problem: unnecessary length check in logsFromTxResponse (#580)
mmsqe Apr 9, 2025
823fc68
feat: add support for eth_getBlockReceipts (#629)
thomas-nguy Jun 18, 2025
ae39ef3
fix(grpc): add sanity check in TraceTx and TraceCall (#657)
thomas-nguy Jul 4, 2025
56b3129
fix(grpc): add sanity check in Trace_Tx follow up
thomas-nguy Jul 7, 2025
6103138
Problem: no max gas cap for grpc eth_call (#586)
thomas-nguy Jul 11, 2025
493be0f
update cosmos sdk
randy-cro Sep 23, 2025
497b8c9
fix staking keeper
randy-cro Sep 23, 2025
e350514
update cosmos-sdk and store
randy-cro Sep 25, 2025
efef3ce
update cosmos-sdk
randy-cro Sep 25, 2025
3e1b035
update comment
randy-cro Sep 25, 2025
633d895
update cosmos-sdk
randy-cro Sep 29, 2025
34eb7c0
update cosmos-sdk
randy-cro Sep 29, 2025
43b0b40
update cosmos sdk
randy-cro Sep 29, 2025
347f022
update cosmos sdk
randy-cro Sep 29, 2025
01fc9a4
update cosmos sdk (remove iterator to speed up lagging node)
randy-cro Sep 30, 2025
672ab8c
Merge remote-tracking branch 'upstream/release/v0.22.x' into test/opt…
randy-cro Sep 30, 2025
f633713
update cosmos sdk (revert remove iterator to speed up lagging node)
randy-cro Sep 30, 2025
370a06c
update CHANGELOG
randy-cro Sep 30, 2025
922a7e6
update cosmos-sdk
randy-cro Oct 2, 2025
a83b79f
minor change
randy-cro Oct 2, 2025
9804b2e
update cosmos-sdk
randy-cro Oct 2, 2025
1c43ff2
update cosmos-sdk
randy-cro Oct 3, 2025
2c4cce8
update cosmos-sdk
randy-cro Oct 3, 2025
6875d17
update cosmos-sdk and CHANGELOG
randy-cro Oct 6, 2025
f642d28
update CHANGELOG
randy-cro Oct 6, 2025
81a7a06
update cosmos-sdk
randy-cro Oct 7, 2025
36818c8
update cosmos-sdk
randy-cro Oct 8, 2025
75614a4
update cosmos-sdk
randy-cro Oct 9, 2025
5785601
fix test
randy-cro Oct 13, 2025
7bed919
update cosmos-sdk
randy-cro Oct 13, 2025
ce740e0
update CHANGELOG and update cosmos-sdk
randy-cro Oct 13, 2025
379e3e8
update cosmos-sdk
randy-cro Oct 13, 2025
630e9ee
update cosmos-sdk
randy-cro Oct 14, 2025
386d3fc
update cosmos-sdk
randy-cro Oct 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Ref: https://keepachangelog.com/en/1.0.0/

## Unreleased

* (evm) [#725](https://github.com/crypto-org-chain/ethermint/pull/743) Optimize staking endblocker execution by caching queue entries from iterators.
* (evm) [#725](https://github.com/crypto-org-chain/ethermint/pull/725) feat(RPC): add authorizationList from eth_getTransactionByHash response for EIP-7702 transactions
* (evm) [#739](https://github.com/crypto-org-chain/ethermint/pull/739) fix: missing tx context during vm initialisation
* (evm) [#736](https://github.com/crypto-org-chain/ethermint/pull/736) fix: prevent nil pointer dereference in tracer hooks
Expand Down
2 changes: 2 additions & 0 deletions evmd/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,7 @@ func NewEthermintApp(
panic(err)
}
app.txConfig = txConfig
stakingCacheSize := cast.ToInt(appOpts.Get(server.FlagStakingCacheSize))
app.StakingKeeper = stakingkeeper.NewKeeper(
appCodec,
runtime.NewKVStoreService(keys[stakingtypes.StoreKey]),
Expand All @@ -388,6 +389,7 @@ func NewEthermintApp(
authAddr,
address.NewBech32Codec(sdk.GetConfig().GetBech32ValidatorAddrPrefix()),
address.NewBech32Codec(sdk.GetConfig().GetBech32ConsensusAddrPrefix()),
stakingCacheSize,
)
app.MintKeeper = mintkeeper.NewKeeper(
appCodec,
Expand Down
2 changes: 1 addition & 1 deletion evmd/simulation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ func TestAppImportExport(t *testing.T) {
simApp.GetKey(stakingtypes.StoreKey), newApp.GetKey(stakingtypes.StoreKey),
[][]byte{
stakingtypes.UnbondingQueueKey, stakingtypes.RedelegationQueueKey, stakingtypes.ValidatorQueueKey,
stakingtypes.HistoricalInfoKey, stakingtypes.UnbondingIDKey, stakingtypes.UnbondingIndexKey, stakingtypes.UnbondingTypeKey, stakingtypes.ValidatorUpdatesKey,
stakingtypes.HistoricalInfoKey, stakingtypes.ValidatorUpdatesKey,
},
}, // ordering may change but it doesn't matter
{simApp.GetKey(slashingtypes.StoreKey), newApp.GetKey(slashingtypes.StoreKey), [][]byte{}},
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ replace (
// release/v0.50.x
cosmossdk.io/store => github.com/crypto-org-chain/cosmos-sdk/store v0.0.0-20241217090828-cfbca9fe8254
cosmossdk.io/x/tx => github.com/crypto-org-chain/cosmos-sdk/x/tx v0.0.0-20241217090828-cfbca9fe8254
github.com/cosmos/cosmos-sdk => github.com/crypto-org-chain/cosmos-sdk v0.50.6-0.20250424063720-28ea58ae20d8
github.com/cosmos/cosmos-sdk => github.com/crypto-org-chain/cosmos-sdk v0.50.6-0.20251015030247-d8ed3ff5806b
)

replace (
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -896,8 +896,8 @@ github.com/crypto-org-chain/btree v0.0.0-20240406140148-2687063b042c h1:MOgfS4+F
github.com/crypto-org-chain/btree v0.0.0-20240406140148-2687063b042c/go.mod h1:twD9XRA5jj9VUQGELzDO4HPQTNJsoWWfYEL+EUQ2cKY=
github.com/crypto-org-chain/cometbft v0.0.0-20241106091515-ce418f845d9a h1:0EN1TkzHTAxpgpGaZJY3G7L4jf4+sYnI7FOmBFLCg4U=
github.com/crypto-org-chain/cometbft v0.0.0-20241106091515-ce418f845d9a/go.mod h1:khbgmtxbgwJfMqDmnGY4rl2sQpTdzpPb1f9nqnfpy1o=
github.com/crypto-org-chain/cosmos-sdk v0.50.6-0.20250424063720-28ea58ae20d8 h1:Sif0pGNc4C384OLucyQ7P/+KjYiJ6uDn8Cf8wR7MI+c=
github.com/crypto-org-chain/cosmos-sdk v0.50.6-0.20250424063720-28ea58ae20d8/go.mod h1:JwwsMeZldLN20b72mmbWPY0EV9rs+v/12hRu1JFttvY=
github.com/crypto-org-chain/cosmos-sdk v0.50.6-0.20251015030247-d8ed3ff5806b h1:k6iBxHzjy9oTSwyzBa7/9bwtsvvuimvAnzW1QqWS9+8=
github.com/crypto-org-chain/cosmos-sdk v0.50.6-0.20251015030247-d8ed3ff5806b/go.mod h1:8/AdT5lF3ILCCl/sDQXyBgzWGtcmD1tInWyhYeREVPA=
github.com/crypto-org-chain/cosmos-sdk/store v0.0.0-20241217090828-cfbca9fe8254 h1:NEgy0r3otU/O+0OAjMdEhbn4VotQlg+98hHbD7M23wU=
github.com/crypto-org-chain/cosmos-sdk/store v0.0.0-20241217090828-cfbca9fe8254/go.mod h1:8DwVTz83/2PSI366FERGbWSH7hL6sB7HbYp8bqksNwM=
github.com/crypto-org-chain/cosmos-sdk/x/tx v0.0.0-20241217090828-cfbca9fe8254 h1:JzLOFRiKsDtLJt5h0M0jkEIPDKvFFyja7VEp7gG6O9U=
Expand Down
4 changes: 2 additions & 2 deletions gomod2nix.toml
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ schema = 3
version = "v1.0.0-beta.5"
hash = "sha256-Fy/PbsOsd6iq0Njy3DVWK6HqWsogI+MkE8QslHGWyVg="
[mod."github.com/cosmos/cosmos-sdk"]
version = "v0.50.6-0.20250424063720-28ea58ae20d8"
hash = "sha256-UCynFh2IangiNqQsgux4dKCk8wuF1vgoINQGA8N59QY="
version = "v0.50.6-0.20251015030247-d8ed3ff5806b"
hash = "sha256-Z1NUKKaQVZj4joCkF7qfQ/nmhwUJC185JUISgc+9R9E="
replaced = "github.com/crypto-org-chain/cosmos-sdk"
[mod."github.com/cosmos/go-bip39"]
version = "v1.0.0"
Expand Down
Loading