Skip to content

Commit

Permalink
Upgrade cosmos-sdk to v0.50.10
Browse files Browse the repository at this point in the history
  • Loading branch information
avery committed Dec 9, 2024
1 parent 9c68542 commit 6c4f04c
Show file tree
Hide file tree
Showing 13 changed files with 127 additions and 128 deletions.
2 changes: 2 additions & 0 deletions app/keepers/keepers.go
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,8 @@ func New(
bApp.MsgServiceRouter(),
authtypes.NewModuleAddress(icahosttypes.SubModuleName).String(),
)
appKeepers.ICAHostKeeper.WithQueryRouter(bApp.GRPCQueryRouter())

appKeepers.ICAModule = ica.NewAppModule(nil, &appKeepers.ICAHostKeeper)
icaHostIBCModule := icahost.NewIBCModule(appKeepers.ICAHostKeeper)

Expand Down
16 changes: 10 additions & 6 deletions app/modules.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,17 @@ import (
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
"github.com/cosmos/ibc-go/modules/capability"
capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types"
iristypes "github.com/irisnet/irishub/v4/types"
"github.com/spf13/cobra"

ica "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts"
icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types"
"github.com/cosmos/ibc-go/v8/modules/apps/transfer"
ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"
ibc "github.com/cosmos/ibc-go/v8/modules/core"
//ibcclientclient "github.com/cosmos/ibc-go/v8/modules/core/02-client/client"
ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported"
ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint"
iristypes "github.com/irisnet/irishub/v4/types"
"github.com/spf13/cobra"

"mods.irisnet.org/modules/coinswap"
coinswaptypes "mods.irisnet.org/modules/coinswap/types"
Expand Down Expand Up @@ -105,7 +107,9 @@ var (
govclient.NewProposalHandler(func() *cobra.Command {
return upgradeclient.NewCmdSubmitCancelUpgradeProposal(addresscodec.NewBech32Codec(sdk.GetConfig().GetBech32AccountAddrPrefix()))
}),
// todo add proposal handler
// todo
//upgradeclient.LegacyProposalHandler,
//upgradeclient.LegacyCancelProposalHandler,
//ibcclientclient.UpdateClientProposalHandler,
//ibcclientclient.UpgradeProposalHandler,
}
Expand Down Expand Up @@ -215,7 +219,7 @@ func appModules(
app.AccountKeeper,
app.GetSubspace(banktypes.ModuleName),
),
//capability.NewAppModule(appCodec, *app.CapabilityKeeper, false),
capability.NewAppModule(appCodec, *app.CapabilityKeeper, false),
crisis.NewAppModule(
app.CrisisKeeper,
skipGenesisInvariants,
Expand Down Expand Up @@ -535,7 +539,7 @@ func orderEndBlockers() []string {
feemarkettypes.ModuleName,
ibctransfertypes.ModuleName,
ibcexported.ModuleName,
//capabilitytypes.ModuleName,
capabilitytypes.ModuleName,
authtypes.ModuleName,
banktypes.ModuleName,
distrtypes.ModuleName,
Expand Down Expand Up @@ -581,7 +585,7 @@ can do so safely.
*/
func orderInitBlockers() []string {
return []string{
//capabilitytypes.ModuleName,
capabilitytypes.ModuleName,
authtypes.ModuleName,
banktypes.ModuleName,
distrtypes.ModuleName,
Expand Down
16 changes: 15 additions & 1 deletion app/params/proto.go
Original file line number Diff line number Diff line change
@@ -1,15 +1,29 @@
package params

import (
"cosmossdk.io/x/tx/signing"
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/codec/address"
"github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/auth/tx"
"github.com/cosmos/gogoproto/proto"
)

// MakeEncodingConfig creates an EncodingConfig for an amino based test configuration.
func MakeEncodingConfig() EncodingConfig {
amino := codec.NewLegacyAmino()
interfaceRegistry := types.NewInterfaceRegistry()
interfaceRegistry, _ := types.NewInterfaceRegistryWithOptions(types.InterfaceRegistryOptions{
ProtoFiles: proto.HybridResolver,
SigningOptions: signing.Options{
AddressCodec: address.Bech32Codec{
Bech32Prefix: sdk.GetConfig().GetBech32AccountAddrPrefix(),
},
ValidatorAddressCodec: address.Bech32Codec{
Bech32Prefix: sdk.GetConfig().GetBech32ValidatorAddrPrefix(),
},
},
})
marshaler := codec.NewProtoCodec(interfaceRegistry)
txCfg := tx.NewTxConfig(marshaler, tx.DefaultSignModes)

Expand Down
41 changes: 4 additions & 37 deletions app/rpc/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,41 +26,9 @@ import (
var _ authtypes.QueryServer = authQueryServer{}

type authQueryServer struct {
cdc codec.Codec
key storetypes.StoreKey
authkeeper.AccountKeeper
}

func (a authQueryServer) AccountAddressByID(ctx context.Context, request *authtypes.QueryAccountAddressByIDRequest) (*authtypes.QueryAccountAddressByIDResponse, error) {
return &authtypes.QueryAccountAddressByIDResponse{}, status.Error(codes.Unimplemented, "not implemented")
}

func (a authQueryServer) Params(ctx context.Context, request *authtypes.QueryParamsRequest) (*authtypes.QueryParamsResponse, error) {
return &authtypes.QueryParamsResponse{}, status.Error(codes.Unimplemented, "not implemented")
}

func (a authQueryServer) ModuleAccounts(ctx context.Context, request *authtypes.QueryModuleAccountsRequest) (*authtypes.QueryModuleAccountsResponse, error) {
return &authtypes.QueryModuleAccountsResponse{}, status.Error(codes.Unimplemented, "not implemented")
}

func (a authQueryServer) ModuleAccountByName(ctx context.Context, request *authtypes.QueryModuleAccountByNameRequest) (*authtypes.QueryModuleAccountByNameResponse, error) {
return &authtypes.QueryModuleAccountByNameResponse{}, status.Error(codes.Unimplemented, "not implemented")
}

func (a authQueryServer) Bech32Prefix(ctx context.Context, request *authtypes.Bech32PrefixRequest) (*authtypes.Bech32PrefixResponse, error) {
return &authtypes.Bech32PrefixResponse{}, status.Error(codes.Unimplemented, "not implemented")
}

func (a authQueryServer) AddressBytesToString(ctx context.Context, request *authtypes.AddressBytesToStringRequest) (*authtypes.AddressBytesToStringResponse, error) {
return &authtypes.AddressBytesToStringResponse{}, status.Error(codes.Unimplemented, "not implemented")
}

func (a authQueryServer) AddressStringToBytes(ctx context.Context, request *authtypes.AddressStringToBytesRequest) (*authtypes.AddressStringToBytesResponse, error) {
return &authtypes.AddressStringToBytesResponse{}, status.Error(codes.Unimplemented, "not implemented")
}

func (a authQueryServer) AccountInfo(ctx context.Context, request *authtypes.QueryAccountInfoRequest) (*authtypes.QueryAccountInfoResponse, error) {
return &authtypes.QueryAccountInfoResponse{}, status.Error(codes.Unimplemented, "not implemented")
cdc codec.Codec
authtypes.QueryServer
}

// overrideAuthServices overrides auth query service
Expand All @@ -70,7 +38,7 @@ func overrideAuthServices(cdc codec.Codec, cfg module.Configurator, appKeepers k
ss := appKeepers.GetSubspace(authtypes.ModuleName)

types.RegisterMsgServer(cfg.MsgServer(), authkeeper.NewMsgServerImpl(k))
types.RegisterQueryServer(cfg.QueryServer(), authQueryServer{cdc, key, k})
types.RegisterQueryServer(cfg.QueryServer(), authQueryServer{key: key, cdc: cdc, QueryServer: authkeeper.NewQueryServer(k)})

m := authkeeper.NewMigrator(k, cfg.QueryServer(), ss)
if err := cfg.RegisterMigration(types.ModuleName, 3, m.Migrate3to4); err != nil {
Expand Down Expand Up @@ -124,11 +92,10 @@ func (a authQueryServer) Account(c context.Context, req *types.QueryAccountReque
}

func (a authQueryServer) decodeAccount(bz []byte) sdk.AccountI {
var acc types.AccountI
var acc sdk.AccountI
if err := a.cdc.UnmarshalInterface(bz, &acc); err != nil {
panic(err)
}

ethAcc, ok := acc.(*ethermint.EthAccount)
if ok {
return ethAcc.BaseAccount
Expand Down
29 changes: 12 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ require (
github.com/cosmos/gogoproto v1.7.0
github.com/cosmos/iavl v1.2.0 // indirect
github.com/evmos/ethermint v0.22.0
mods.irisnet.org/modules/coinswap v0.0.0-20241202072418-ae2ffd0c842e
mods.irisnet.org/modules/farm v0.0.0-20241202072418-ae2ffd0c842e
mods.irisnet.org/modules/htlc v0.0.0-20241202072418-ae2ffd0c842e
mods.irisnet.org/modules/mt v0.0.0-20241202072418-ae2ffd0c842e
mods.irisnet.org/modules/nft v0.0.0-20241202072418-ae2ffd0c842e
mods.irisnet.org/modules/oracle v0.0.0-20241202072418-ae2ffd0c842e
mods.irisnet.org/modules/random v0.0.0-20241202072418-ae2ffd0c842e
mods.irisnet.org/modules/record v0.0.0-20241202072418-ae2ffd0c842e
mods.irisnet.org/modules/service v0.0.0-20241202072418-ae2ffd0c842e
mods.irisnet.org/modules/token v0.0.0-20241202072418-ae2ffd0c842e
mods.irisnet.org/modules/coinswap v0.0.0-20241209074433-1380d52b7709
mods.irisnet.org/modules/farm v0.0.0-20241209074433-1380d52b7709
mods.irisnet.org/modules/htlc v0.0.0-20241209074433-1380d52b7709
mods.irisnet.org/modules/mt v0.0.0-20241209074433-1380d52b7709
mods.irisnet.org/modules/nft v0.0.0-20241209074433-1380d52b7709
mods.irisnet.org/modules/oracle v0.0.0-20241209074433-1380d52b7709
mods.irisnet.org/modules/random v0.0.0-20241209074433-1380d52b7709
mods.irisnet.org/modules/record v0.0.0-20241209074433-1380d52b7709
mods.irisnet.org/modules/service v0.0.0-20241209074433-1380d52b7709
mods.irisnet.org/modules/token v0.0.0-20241209074433-1380d52b7709
)

require (
Expand Down Expand Up @@ -266,14 +266,10 @@ require (
)

replace (
github.com/bianjieai/nft-transfer => ../nft-transfer

//github.com/cosmos/gogoproto => github.com/cosmos/gogoproto v1.4.10
//github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.50.10-lsm
github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.50.10-lsm
// use bianjieai fork of ethermint
//github.com/evmos/ethermint => github.com/bianjieai/ethermint v0.22.0-irishub-20240512.0.20241118070831-53fd9361fc0d
// todo change real version
github.com/evmos/ethermint => ../ethermint
github.com/evmos/ethermint => github.com/bianjieai/ethermint v0.22.0-irishub-20240512.0.20241209074239-dfcd609c9182

// following versions might cause unexpected behavior
github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
Expand All @@ -282,6 +278,5 @@ replace (
// stick with compatible version or x/exp in v0.47.x line
// x/exp had a breaking change in further commits
golang.org/x/exp => golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0
mods.irisnet.org/modules/coinswap => ../irismod/modules/coinswap

)
46 changes: 26 additions & 20 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,10 @@ github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d/go.mod h1:6QX/PXZ
github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 h1:41iFGWnSlI2gVpmOtVTJZNodLdLQLn/KsJqFvXwnd/s=
github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
github.com/bianjieai/ethermint v0.22.0-irishub-20240512.0.20241209074239-dfcd609c9182 h1:lNpJUFZO8s0govTACS17XO1v1vV8nrl29P+0me1obNE=
github.com/bianjieai/ethermint v0.22.0-irishub-20240512.0.20241209074239-dfcd609c9182/go.mod h1:0PTcYr7hTvVBjcyR7weKrclYL9tmnL/eTttLiQmqM5o=
github.com/bianjieai/nft-transfer v1.1.3-ibc-v7.3.0.0.20241107152113-c88a3ab19870 h1:gQBLPGM92CGDIhzYEjOjpNVCBa0e8Pse5MtFzGk10x0=
github.com/bianjieai/nft-transfer v1.1.3-ibc-v7.3.0.0.20241107152113-c88a3ab19870/go.mod h1:be4fUJhhDupCZJCqwznXgyjfCu8quaabYxfbyT/PxHE=
github.com/bianjieai/tibc-go v0.5.1-0.20241202081401-7f861f1a49ef h1:DqCuGxjPQdhmjKRKlQIXeJ+ceYTkCfG1lJBvIifMjV0=
github.com/bianjieai/tibc-go v0.5.1-0.20241202081401-7f861f1a49ef/go.mod h1:kZ5UjLm7v4mMk6OxgVx36mBGT+wQcGau4h53SEqwjZc=
github.com/bits-and-blooms/bitset v1.8.0 h1:FD+XqgOZDUxxZ8hzoBFuV9+cGWY9CslN6d5MS5JVb4c=
Expand Down Expand Up @@ -432,8 +436,8 @@ github.com/cosmos/cosmos-db v1.0.2 h1:hwMjozuY1OlJs/uh6vddqnk9j7VamLv+0DBlbEXbAK
github.com/cosmos/cosmos-db v1.0.2/go.mod h1:Z8IXcFJ9PqKK6BIsVOB3QXtkKoqUOp1vRvPT39kOXEA=
github.com/cosmos/cosmos-proto v1.0.0-beta.5 h1:eNcayDLpip+zVLRLYafhzLvQlSmyab+RC5W7ZfmxJLA=
github.com/cosmos/cosmos-proto v1.0.0-beta.5/go.mod h1:hQGLpiIUloJBMdQMMWb/4wRApmI9hjHH05nefC0Ojec=
github.com/cosmos/cosmos-sdk v0.50.10 h1:zXfeu/z653tWZARr/jESzAEiCUYjgJwwG4ytnYWMoDM=
github.com/cosmos/cosmos-sdk v0.50.10/go.mod h1:6Eesrx3ZE7vxBZWpK++30H+Uc7Q4ahQWCL7JKU/LEdU=
github.com/cosmos/cosmos-sdk v0.50.10-lsm h1:dG93GkIfZjOyYIDj3jrpFuMjkpiqVqH5CtxSoBqNtvY=
github.com/cosmos/cosmos-sdk v0.50.10-lsm/go.mod h1:EqTlx3pySYLVgM+msOsLPyT0vQ7Q3QMNv+SAc7j/pb4=
github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY=
github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw=
github.com/cosmos/gogogateway v1.2.0 h1:Ae/OivNhp8DqBi/sh2A8a1D0y638GpL3tkmLQAiKxTE=
Expand Down Expand Up @@ -2061,24 +2065,26 @@ honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9
honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las=
mods.irisnet.org/api v0.0.0-20241121030837-903540d1123f h1:tJoTbTqFBZUnCLL+juHEuQLNNdftSXwSlqGoKa8OOxw=
mods.irisnet.org/api v0.0.0-20241121030837-903540d1123f/go.mod h1:TpMaRRYSpqsXdeX4gDVFRj9ggedQ60Zcjs4iE2DIhsc=
mods.irisnet.org/modules/farm v0.0.0-20241202072418-ae2ffd0c842e h1:/oAAhPglJUJ7T2fx71yRMN0J/bCL+FiFntdVMmH7NsE=
mods.irisnet.org/modules/farm v0.0.0-20241202072418-ae2ffd0c842e/go.mod h1:yYrnhmxDCnvI45u1cpeRZ2GPJUmRK+8KFXDtOJGpENE=
mods.irisnet.org/modules/htlc v0.0.0-20241202072418-ae2ffd0c842e h1:zBPmWpAxT+JsAJrNH8WKIyIzuCWDl6SBFcR/xGgjmkc=
mods.irisnet.org/modules/htlc v0.0.0-20241202072418-ae2ffd0c842e/go.mod h1:2pWkSnxVKCzB3WH+q47rKffY4Plma+mRTGSWd4jfbp8=
mods.irisnet.org/modules/mt v0.0.0-20241202072418-ae2ffd0c842e h1:+kL2d61TIA6hvX30ZDOSYaOKl+xbHMmItOtXUFH8igQ=
mods.irisnet.org/modules/mt v0.0.0-20241202072418-ae2ffd0c842e/go.mod h1:Dw1zm350HiRuNjrnwZnV4XGB8PNf1SXmjGJA5Xslg0Q=
mods.irisnet.org/modules/nft v0.0.0-20241202072418-ae2ffd0c842e h1:XjtU54H7iHopFpI2pGqp7ZK1UUCjNgq5Tsyiq0mob6E=
mods.irisnet.org/modules/nft v0.0.0-20241202072418-ae2ffd0c842e/go.mod h1:VjySqJfECBW8cApFB8W66Yk6tMR2oJEc7FTDaHfeg8I=
mods.irisnet.org/modules/oracle v0.0.0-20241202072418-ae2ffd0c842e h1:9V49mK9Z5AB/LCS3JGGk2DvtjKqokFGVGHDZJF3Y40Q=
mods.irisnet.org/modules/oracle v0.0.0-20241202072418-ae2ffd0c842e/go.mod h1:XAGzG55xpV01PwvryVPeaHtARZIqEUJcMv/vxaVcVC0=
mods.irisnet.org/modules/random v0.0.0-20241202072418-ae2ffd0c842e h1:gNx0uo7hKqluPDNzKctY+OiI5nG/Uza25GEC/H2+B4M=
mods.irisnet.org/modules/random v0.0.0-20241202072418-ae2ffd0c842e/go.mod h1:1ele5fpZ/rFMbwu1LTz2MwDg3sJDYcCtDW5SDfYRpTg=
mods.irisnet.org/modules/record v0.0.0-20241202072418-ae2ffd0c842e h1:qsww7s1Srr6n7QR0KEFoFAC5DhcRDUMi0rVM1jd+NfU=
mods.irisnet.org/modules/record v0.0.0-20241202072418-ae2ffd0c842e/go.mod h1:n8gRooDvJ5B44EJRZ+UlDz0GcXQeNwjH2tjpnVx7nd8=
mods.irisnet.org/modules/service v0.0.0-20241202072418-ae2ffd0c842e h1:oc3gHgRlHg8/kFtKUVcfUWODbmKLOwllMEIhj7Ev5h4=
mods.irisnet.org/modules/service v0.0.0-20241202072418-ae2ffd0c842e/go.mod h1:B1nKRNYn1VLqpvNbmbDSYagqL56sj0MIceXJi/DKg6s=
mods.irisnet.org/modules/token v0.0.0-20241202072418-ae2ffd0c842e h1:Qu6V1xg9n7hYhuZnUymBVs2BLCHrCfCwYuU7KbjmEgY=
mods.irisnet.org/modules/token v0.0.0-20241202072418-ae2ffd0c842e/go.mod h1:fHJzeEBPhE9vaa4aye90+WFtHjZyGRvkWRpJeBSc9/k=
mods.irisnet.org/modules/coinswap v0.0.0-20241209074433-1380d52b7709 h1:i5lbpX0nC0O8nubflu99ifh716T6kMCvDhhJHsrooFk=
mods.irisnet.org/modules/coinswap v0.0.0-20241209074433-1380d52b7709/go.mod h1:nv52g5ZDWv/C1ydtxLygP2wSYz6M4OuF6BygKy7RqGA=
mods.irisnet.org/modules/farm v0.0.0-20241209074433-1380d52b7709 h1:5bNfktWvUg3FCm8fNO7QAXasGciPLPntz+iKHLh+bKM=
mods.irisnet.org/modules/farm v0.0.0-20241209074433-1380d52b7709/go.mod h1:yYrnhmxDCnvI45u1cpeRZ2GPJUmRK+8KFXDtOJGpENE=
mods.irisnet.org/modules/htlc v0.0.0-20241209074433-1380d52b7709 h1:RJfiSwR9QgbKNqlsonXCw3Unm5mggvIZ2iYVpn4Bew4=
mods.irisnet.org/modules/htlc v0.0.0-20241209074433-1380d52b7709/go.mod h1:2pWkSnxVKCzB3WH+q47rKffY4Plma+mRTGSWd4jfbp8=
mods.irisnet.org/modules/mt v0.0.0-20241209074433-1380d52b7709 h1:MFlghrXXMChdC1xOF9ulfdDzlwdN7UddvMjwaud7W9o=
mods.irisnet.org/modules/mt v0.0.0-20241209074433-1380d52b7709/go.mod h1:Dw1zm350HiRuNjrnwZnV4XGB8PNf1SXmjGJA5Xslg0Q=
mods.irisnet.org/modules/nft v0.0.0-20241209074433-1380d52b7709 h1:VhhLzJknCMQO7HVSVwSVkYKreYm9bk/8P5E8FEZ6KZ8=
mods.irisnet.org/modules/nft v0.0.0-20241209074433-1380d52b7709/go.mod h1:VjySqJfECBW8cApFB8W66Yk6tMR2oJEc7FTDaHfeg8I=
mods.irisnet.org/modules/oracle v0.0.0-20241209074433-1380d52b7709 h1:nDqnB+kyIUkIfRB2LcfdnqDNEnbXHnBIfnEkMWIlO8w=
mods.irisnet.org/modules/oracle v0.0.0-20241209074433-1380d52b7709/go.mod h1:XAGzG55xpV01PwvryVPeaHtARZIqEUJcMv/vxaVcVC0=
mods.irisnet.org/modules/random v0.0.0-20241209074433-1380d52b7709 h1:DWbsZNjeCYzQ6lD7ogoezrHURjc0s4Kkpkn275TGHfo=
mods.irisnet.org/modules/random v0.0.0-20241209074433-1380d52b7709/go.mod h1:1ele5fpZ/rFMbwu1LTz2MwDg3sJDYcCtDW5SDfYRpTg=
mods.irisnet.org/modules/record v0.0.0-20241209074433-1380d52b7709 h1:rmGVgGMdfR8j9jqNfhwDyf5Tsr8IrdaTqxaiHMKnzRU=
mods.irisnet.org/modules/record v0.0.0-20241209074433-1380d52b7709/go.mod h1:n8gRooDvJ5B44EJRZ+UlDz0GcXQeNwjH2tjpnVx7nd8=
mods.irisnet.org/modules/service v0.0.0-20241209074433-1380d52b7709 h1:luRpAYMuG4YYLuf1tUuUzlkEjh41EHc3j5KSiVD82/o=
mods.irisnet.org/modules/service v0.0.0-20241209074433-1380d52b7709/go.mod h1:B1nKRNYn1VLqpvNbmbDSYagqL56sj0MIceXJi/DKg6s=
mods.irisnet.org/modules/token v0.0.0-20241209074433-1380d52b7709 h1:dGuMYcTXIRgmpJHFrSFOV5g4Xc09WSVhz0n8HkbZQoE=
mods.irisnet.org/modules/token v0.0.0-20241209074433-1380d52b7709/go.mod h1:fHJzeEBPhE9vaa4aye90+WFtHjZyGRvkWRpJeBSc9/k=
mods.irisnet.org/simapp v0.0.0-20241125071105-d76ae25d05d2 h1:9AGZYpMjpk1gItviL31vsehmen119HtcuOKwv8WWpZo=
mods.irisnet.org/simapp v0.0.0-20241125071105-d76ae25d05d2/go.mod h1:t7FSQJkJOgXq1/LdhpBeOu7TS8hLQkAMMx9fL5w53PY=
nhooyr.io/websocket v1.8.6 h1:s+C3xAMLwGmlI31Nyn/eAehUlZPwfYZu2JXM621Q5/k=
Expand Down
Loading

0 comments on commit 6c4f04c

Please sign in to comment.