41 lines
1.3 KiB
Modula-2
41 lines
1.3 KiB
Modula-2
module github.com/genex/genex-chain
|
|
|
|
go 1.23.8
|
|
|
|
require (
|
|
cosmossdk.io/api v0.9.2
|
|
cosmossdk.io/client/v2 v2.0.0-beta.7
|
|
cosmossdk.io/core v0.11.3
|
|
cosmossdk.io/errors v1.0.2
|
|
cosmossdk.io/log v1.6.1
|
|
cosmossdk.io/math v1.5.3
|
|
cosmossdk.io/store v1.1.2
|
|
cosmossdk.io/tools/confix v0.1.2
|
|
cosmossdk.io/x/evidence v0.2.0
|
|
cosmossdk.io/x/feegrant v0.2.0
|
|
cosmossdk.io/x/upgrade v0.2.0
|
|
github.com/cometbft/cometbft v0.38.19
|
|
github.com/cosmos/cosmos-db v1.1.3
|
|
github.com/cosmos/cosmos-sdk v0.53.5-0.20251030204916-768cb210885c
|
|
github.com/cosmos/evm v0.5.1
|
|
github.com/cosmos/gogoproto v1.7.2
|
|
github.com/cosmos/ibc-go/v10 v10.3.1-0.20250909102629-ed3b125c7b6f
|
|
github.com/ethereum/go-ethereum v1.15.11
|
|
github.com/spf13/cast v1.10.0
|
|
github.com/spf13/cobra v1.10.1
|
|
github.com/spf13/pflag v1.0.10
|
|
github.com/spf13/viper v1.20.1
|
|
google.golang.org/grpc v1.75.0
|
|
)
|
|
|
|
replace (
|
|
// Use cosmos fork of keyring
|
|
github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0
|
|
// Use Cosmos geth fork (branch: release/1.16)
|
|
github.com/ethereum/go-ethereum => github.com/cosmos/go-ethereum v1.16.2-cosmos-1
|
|
// Security Advisory https://github.com/advisories/GHSA-h395-qcrw-5vmq
|
|
github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.9.1
|
|
// Replace broken goleveldb
|
|
github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
|
|
)
|