Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## UNRELEASED

*Jan 13, 2026*

## v1.7.0

### Improvements

* [#1895](https://github.com/crypto-org-chain/cronos/pull/1895) feat: use cronos store.
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ replace (
github.com/dgrijalva/jwt-go => github.com/golang-jwt/jwt/v4 v4.4.2
// release/v1.15
github.com/ethereum/go-ethereum => github.com/crypto-org-chain/go-ethereum v1.10.20-0.20250815065500-a4fbafcae0dd
// develop
github.com/evmos/ethermint => github.com/crypto-org-chain/ethermint v0.22.1-0.20260107054325-46538c97abf2
// release/v0.23.x
github.com/evmos/ethermint => github.com/crypto-org-chain/ethermint v0.23.0
// Fix upstream GHSA-h395-qcrw-5vmq and GHSA-3vp4-m3rf-835h vulnerabilities.
// TODO Remove it: https://github.com/cosmos/cosmos-sdk/issues/10409
github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.9.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -917,8 +917,8 @@ github.com/crypto-org-chain/cronos-store/store v0.0.0-20251203075505-0670ff683f0
github.com/crypto-org-chain/cronos-store/store v0.0.0-20251203075505-0670ff683f07/go.mod h1:QtmMmgHYQqioX/U2OfucmqDgXMmrL3N8/QXom4UWeKg=
github.com/crypto-org-chain/cronos-store/versiondb v0.0.0-20251203075505-0670ff683f07 h1:eMuGwzyL4ond46wHHIybHT9fBoFxfWzkeX87IannqG4=
github.com/crypto-org-chain/cronos-store/versiondb v0.0.0-20251203075505-0670ff683f07/go.mod h1:6sg+tT7xMKDS8HL9Rxq1QsLJHApMuh+vnr2HVl3utl0=
github.com/crypto-org-chain/ethermint v0.22.1-0.20260107054325-46538c97abf2 h1:USHYWu6SnyORFyfX7Ub5eiEx+y+nMcbKhzXl1PKfTKc=
github.com/crypto-org-chain/ethermint v0.22.1-0.20260107054325-46538c97abf2/go.mod h1:1IAeOWTwFz9prufLltBg8p1i6YSEehPVVmXJrHUYTGU=
github.com/crypto-org-chain/ethermint v0.23.0 h1:HzIG4iOGdUzHtRO6c4guteA0uoctE4wiLNc9Qjh+uE4=
github.com/crypto-org-chain/ethermint v0.23.0/go.mod h1:1IAeOWTwFz9prufLltBg8p1i6YSEehPVVmXJrHUYTGU=
github.com/crypto-org-chain/go-block-stm v0.0.0-20241213061541-7afe924fb4a6 h1:6KPEi8dWkDSBddQb4NAvEXmNnTXymF3yVeTaT4Hz1iU=
github.com/crypto-org-chain/go-block-stm v0.0.0-20241213061541-7afe924fb4a6/go.mod h1:iwQTX9xMX8NV9k3o2BiWXA0SswpsZrDk5q3gA7nWYiE=
github.com/crypto-org-chain/go-ethereum v1.10.20-0.20250815065500-a4fbafcae0dd h1:ebSnzvM9yKVGFjvoGly7LFQQCS2HuOWMCvQyByJ52Gs=
Expand Down
4 changes: 2 additions & 2 deletions gomod2nix.toml
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,8 @@ schema = 3
version = "v0.2.2"
hash = "sha256-0MLfSJKdeK3Z7tWAXTdzwB4091dmyxIX38S5SKH5QAw="
[mod."github.com/evmos/ethermint"]
version = "v0.22.1-0.20260107054325-46538c97abf2"
hash = "sha256-MrURu10pIZp3bsnYTLvFa3AoR5EeG9ted7qh4fugp+k="
version = "v0.23.0"
hash = "sha256-ggiywK7qo9GCvU8dCojmERfneNacoC7AUqL73lmMtiE="
replaced = "github.com/crypto-org-chain/ethermint"
[mod."github.com/fatih/color"]
version = "v1.17.0"
Expand Down
7 changes: 7 additions & 0 deletions scripts/run-integration-tests
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ HUSKY_SKIP_INSTALL=1 npm ci
npm run typechain
cd ../..
TESTS_TO_RUN="${TESTS_TO_RUN:-all}"

# Pre-build upgrade test packages outside of pytest timeout
if [[ "$TESTS_TO_RUN" == "upgrade" || "$TESTS_TO_RUN" == "all" ]]; then
echo "pre-building upgrade test packages (this may take a while if not cached)..."
nix-build ./integration_tests/configs/upgrade-test-package.nix
fi

if [[ "$TESTS_TO_RUN" == "all" ]]; then
echo "run all tests"
cmd="pytest -vv -s --session-timeout=6000 --timeout=6000"
Expand Down
2 changes: 1 addition & 1 deletion x/cronos/keeper/evm.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
const DefaultGasCap uint64 = 25000000

// CallEVM execute an evm message from native module
func (k Keeper) CallEVM(ctx sdk.Context, to *common.Address, data []byte, value *big.Int, gasLimit uint64) (*core.Message, *evmtypes.MsgEthereumTxResponse, error) {
func (k Keeper) CallEVM(ctx sdk.Context, to *common.Address, data []byte, value *big.Int, gasLimit uint64) (*core.Message, *evmtypes.EVMResult, error) {
nonce := k.evmKeeper.GetNonce(ctx, types.EVMModuleAddress)
msg := &core.Message{
From: types.EVMModuleAddress,
Expand Down
2 changes: 1 addition & 1 deletion x/cronos/types/interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ type EvmLogHandler interface {
// EvmKeeper defines the interface for evm keeper
type EvmKeeper interface {
GetNonce(ctx sdk.Context, addr common.Address) uint64
ApplyMessage(ctx sdk.Context, msg *core.Message, tracer *tracing.Hooks, commit bool) (*evmtypes.MsgEthereumTxResponse, error)
ApplyMessage(ctx sdk.Context, msg *core.Message, tracer *tracing.Hooks, commit bool) (*evmtypes.EVMResult, error)
GetParams(ctx sdk.Context) evmtypes.Params

// to replay the messages
Expand Down
Loading