32 lines
1.1 KiB
Modula-2
32 lines
1.1 KiB
Modula-2
module github.com/certusone/wormhole-chain
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
github.com/certusone/wormhole/node v0.0.0-20211115153408-0a93202f6e5d
|
|
github.com/cosmos/cosmos-sdk v0.45.7
|
|
github.com/cosmos/ibc-go v1.2.2
|
|
github.com/ethereum/go-ethereum v1.10.6
|
|
github.com/gogo/protobuf v1.3.3
|
|
github.com/golang/glog v1.0.0 // indirect
|
|
github.com/golang/protobuf v1.5.2
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/grpc-ecosystem/grpc-gateway v1.16.0
|
|
github.com/holiman/uint256 v1.2.0
|
|
github.com/spf13/cast v1.5.0
|
|
github.com/spf13/cobra v1.5.0
|
|
github.com/stretchr/testify v1.8.0
|
|
github.com/tendermint/spm v0.1.9
|
|
github.com/tendermint/tendermint v0.34.20
|
|
github.com/tendermint/tm-db v0.6.7
|
|
google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd
|
|
google.golang.org/grpc v1.48.0
|
|
)
|
|
|
|
replace (
|
|
github.com/99designs/keyring => github.com/cosmos/keyring v1.1.7-0.20210622111912-ef00f8ac3d76
|
|
github.com/cosmos/cosmos-sdk v0.45.7 => github.com/wormhole-foundation/cosmos-sdk v0.45.7-wormhole
|
|
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
|
|
google.golang.org/grpc => google.golang.org/grpc v1.33.2
|
|
)
|