Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: bump up irismod #2950

Merged
merged 2 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
10 changes: 5 additions & 5 deletions app/ante/decorators.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import (
govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1"
ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types"

coinswaptypes "github.com/irisnet/irismod/modules/coinswap/types"
servicetypes "github.com/irisnet/irismod/modules/service/types"
tokenkeeper "github.com/irisnet/irismod/modules/token/keeper"
tokentypesv1 "github.com/irisnet/irismod/modules/token/types/v1"
tokentypesv1beta1 "github.com/irisnet/irismod/modules/token/types/v1beta1"
coinswaptypes "mods.irisnet.org/modules/coinswap/types"
servicetypes "mods.irisnet.org/modules/service/types"
tokenkeeper "mods.irisnet.org/modules/token/keeper"
tokentypesv1 "mods.irisnet.org/modules/token/types/v1"
tokentypesv1beta1 "mods.irisnet.org/modules/token/types/v1beta1"
)

// ValidateTokenDecorator is responsible for restricting the token participation of the swap prefix
Expand Down
4 changes: 2 additions & 2 deletions app/ante/handler_options.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (

ethante "github.com/evmos/ethermint/app/ante"

oraclekeeper "github.com/irisnet/irismod/modules/oracle/keeper"
tokenkeeper "github.com/irisnet/irismod/modules/token/keeper"
oraclekeeper "mods.irisnet.org/modules/oracle/keeper"
tokenkeeper "mods.irisnet.org/modules/token/keeper"

guardiankeeper "github.com/irisnet/irishub/v3/modules/guardian/keeper"
)
Expand Down
8 changes: 4 additions & 4 deletions app/export.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ import (
"github.com/cosmos/cosmos-sdk/x/staking"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"

"github.com/irisnet/irismod/modules/htlc"
"github.com/irisnet/irismod/modules/oracle"
"github.com/irisnet/irismod/modules/random"
"github.com/irisnet/irismod/modules/service"
"mods.irisnet.org/modules/htlc"
"mods.irisnet.org/modules/oracle"
"mods.irisnet.org/modules/random"
"mods.irisnet.org/modules/service"
)

// ExportAppStateAndValidators exports the state of the application for a genesis file.
Expand Down
46 changes: 23 additions & 23 deletions app/keepers/keepers.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,28 +82,28 @@ import (
tibccli "github.com/bianjieai/tibc-go/modules/tibc/core/client/cli"
tibckeeper "github.com/bianjieai/tibc-go/modules/tibc/core/keeper"

coinswapkeeper "github.com/irisnet/irismod/modules/coinswap/keeper"
coinswaptypes "github.com/irisnet/irismod/modules/coinswap/types"
"github.com/irisnet/irismod/modules/farm"
farmkeeper "github.com/irisnet/irismod/modules/farm/keeper"
farmtypes "github.com/irisnet/irismod/modules/farm/types"
htlckeeper "github.com/irisnet/irismod/modules/htlc/keeper"
htlctypes "github.com/irisnet/irismod/modules/htlc/types"
mtkeeper "github.com/irisnet/irismod/modules/mt/keeper"
mttypes "github.com/irisnet/irismod/modules/mt/types"
nftkeeper "github.com/irisnet/irismod/modules/nft/keeper"
nfttypes "github.com/irisnet/irismod/modules/nft/types"
oraclekeeper "github.com/irisnet/irismod/modules/oracle/keeper"
oracletypes "github.com/irisnet/irismod/modules/oracle/types"
randomkeeper "github.com/irisnet/irismod/modules/random/keeper"
randomtypes "github.com/irisnet/irismod/modules/random/types"
recordkeeper "github.com/irisnet/irismod/modules/record/keeper"
recordtypes "github.com/irisnet/irismod/modules/record/types"
servicekeeper "github.com/irisnet/irismod/modules/service/keeper"
servicetypes "github.com/irisnet/irismod/modules/service/types"
tokenkeeper "github.com/irisnet/irismod/modules/token/keeper"
tokentypes "github.com/irisnet/irismod/modules/token/types"
tokenv1 "github.com/irisnet/irismod/modules/token/types/v1"
coinswapkeeper "mods.irisnet.org/modules/coinswap/keeper"
coinswaptypes "mods.irisnet.org/modules/coinswap/types"
"mods.irisnet.org/modules/farm"
farmkeeper "mods.irisnet.org/modules/farm/keeper"
farmtypes "mods.irisnet.org/modules/farm/types"
htlckeeper "mods.irisnet.org/modules/htlc/keeper"
htlctypes "mods.irisnet.org/modules/htlc/types"
mtkeeper "mods.irisnet.org/modules/mt/keeper"
mttypes "mods.irisnet.org/modules/mt/types"
nftkeeper "mods.irisnet.org/modules/nft/keeper"
nfttypes "mods.irisnet.org/modules/nft/types"
oraclekeeper "mods.irisnet.org/modules/oracle/keeper"
oracletypes "mods.irisnet.org/modules/oracle/types"
randomkeeper "mods.irisnet.org/modules/random/keeper"
randomtypes "mods.irisnet.org/modules/random/types"
recordkeeper "mods.irisnet.org/modules/record/keeper"
recordtypes "mods.irisnet.org/modules/record/types"
servicekeeper "mods.irisnet.org/modules/service/keeper"
servicetypes "mods.irisnet.org/modules/service/types"
tokenkeeper "mods.irisnet.org/modules/token/keeper"
tokentypes "mods.irisnet.org/modules/token/types"
tokenv1 "mods.irisnet.org/modules/token/types/v1"

guardiankeeper "github.com/irisnet/irishub/v3/modules/guardian/keeper"
guardiantypes "github.com/irisnet/irishub/v3/modules/guardian/types"
Expand Down Expand Up @@ -515,7 +515,7 @@ func New(
AddRoute(upgradetypes.RouterKey, upgrade.NewSoftwareUpgradeProposalHandler(appKeepers.UpgradeKeeper)).
AddRoute(ibcclienttypes.RouterKey, ibcclient.NewClientProposalHandler(appKeepers.IBCKeeper.ClientKeeper)).
AddRoute(tibchost.RouterKey, tibccli.NewProposalHandler(appKeepers.TIBCKeeper)).
AddRoute(farmtypes.RouterKey, farm.NewCommunityPoolCreateFarmProposalHandler(appKeepers.FarmKeeper))
AddRoute(farmtypes.RouterKey, farm.NewProposalHandler(appKeepers.FarmKeeper))

appKeepers.GovKeeper.SetHooks(govtypes.NewMultiGovHooks(
wrapper.NewFarmGovHook(farmkeeper.NewGovHook(appKeepers.FarmKeeper)),
Expand Down
20 changes: 10 additions & 10 deletions app/keepers/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ import (
evmtypes "github.com/evmos/ethermint/x/evm/types"
feemarkettypes "github.com/evmos/ethermint/x/feemarket/types"

coinswaptypes "github.com/irisnet/irismod/modules/coinswap/types"
farmtypes "github.com/irisnet/irismod/modules/farm/types"
htlctypes "github.com/irisnet/irismod/modules/htlc/types"
mttypes "github.com/irisnet/irismod/modules/mt/types"
nfttypes "github.com/irisnet/irismod/modules/nft/types"
oracletypes "github.com/irisnet/irismod/modules/oracle/types"
randomtypes "github.com/irisnet/irismod/modules/random/types"
recordtypes "github.com/irisnet/irismod/modules/record/types"
servicetypes "github.com/irisnet/irismod/modules/service/types"
tokentypes "github.com/irisnet/irismod/modules/token/types"
coinswaptypes "mods.irisnet.org/modules/coinswap/types"
farmtypes "mods.irisnet.org/modules/farm/types"
htlctypes "mods.irisnet.org/modules/htlc/types"
mttypes "mods.irisnet.org/modules/mt/types"
nfttypes "mods.irisnet.org/modules/nft/types"
oracletypes "mods.irisnet.org/modules/oracle/types"
randomtypes "mods.irisnet.org/modules/random/types"
recordtypes "mods.irisnet.org/modules/record/types"
servicetypes "mods.irisnet.org/modules/service/types"
tokentypes "mods.irisnet.org/modules/token/types"

ibcnfttransfertypes "github.com/bianjieai/nft-transfer/types"
tibcmttypes "github.com/bianjieai/tibc-go/modules/tibc/apps/mt_transfer/types"
Expand Down
46 changes: 23 additions & 23 deletions app/modules.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,26 +48,26 @@ import (
ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported"
ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint"

"github.com/irisnet/irismod/modules/coinswap"
coinswaptypes "github.com/irisnet/irismod/modules/coinswap/types"
"github.com/irisnet/irismod/modules/farm"
farmtypes "github.com/irisnet/irismod/modules/farm/types"
"github.com/irisnet/irismod/modules/htlc"
htlctypes "github.com/irisnet/irismod/modules/htlc/types"
"github.com/irisnet/irismod/modules/mt"
mttypes "github.com/irisnet/irismod/modules/mt/types"
nftmodule "github.com/irisnet/irismod/modules/nft/module"
nfttypes "github.com/irisnet/irismod/modules/nft/types"
"github.com/irisnet/irismod/modules/oracle"
oracletypes "github.com/irisnet/irismod/modules/oracle/types"
"github.com/irisnet/irismod/modules/random"
randomtypes "github.com/irisnet/irismod/modules/random/types"
"github.com/irisnet/irismod/modules/record"
recordtypes "github.com/irisnet/irismod/modules/record/types"
"github.com/irisnet/irismod/modules/service"
servicetypes "github.com/irisnet/irismod/modules/service/types"
"github.com/irisnet/irismod/modules/token"
tokentypes "github.com/irisnet/irismod/modules/token/types"
"mods.irisnet.org/modules/coinswap"
coinswaptypes "mods.irisnet.org/modules/coinswap/types"
"mods.irisnet.org/modules/farm"
farmtypes "mods.irisnet.org/modules/farm/types"
"mods.irisnet.org/modules/htlc"
htlctypes "mods.irisnet.org/modules/htlc/types"
"mods.irisnet.org/modules/mt"
mttypes "mods.irisnet.org/modules/mt/types"
"mods.irisnet.org/modules/nft"
nfttypes "mods.irisnet.org/modules/nft/types"
"mods.irisnet.org/modules/oracle"
oracletypes "mods.irisnet.org/modules/oracle/types"
"mods.irisnet.org/modules/random"
randomtypes "mods.irisnet.org/modules/random/types"
"mods.irisnet.org/modules/record"
recordtypes "mods.irisnet.org/modules/record/types"
"mods.irisnet.org/modules/service"
servicetypes "mods.irisnet.org/modules/service/types"
"mods.irisnet.org/modules/token"
tokentypes "mods.irisnet.org/modules/token/types"

tibcmttransfer "github.com/bianjieai/tibc-go/modules/tibc/apps/mt_transfer"
tibcmttypes "github.com/bianjieai/tibc-go/modules/tibc/apps/mt_transfer/types"
Expand Down Expand Up @@ -137,7 +137,7 @@ var (
guardian.AppModuleBasic{},
token.AppModuleBasic{},
record.AppModuleBasic{},
nftmodule.AppModuleBasic{},
nft.AppModuleBasic{},
htlc.AppModuleBasic{},
coinswap.AppModuleBasic{},
service.AppModuleBasic{},
Expand Down Expand Up @@ -282,7 +282,7 @@ func appModules(
app.GetSubspace(tokentypes.ModuleName),
),
record.NewAppModule(appCodec, app.RecordKeeper, app.AccountKeeper, app.BankKeeper),
nftmodule.NewAppModule(appCodec, app.NFTKeeper, app.AccountKeeper, app.BankKeeper),
nft.NewAppModule(appCodec, app.NFTKeeper, app.AccountKeeper, app.BankKeeper),
mt.NewAppModule(appCodec, app.MTKeeper, app.AccountKeeper, app.BankKeeper),
htlc.NewAppModule(
appCodec,
Expand Down Expand Up @@ -408,7 +408,7 @@ func simulationModules(
app.GetSubspace(tokentypes.ModuleName),
),
record.NewAppModule(appCodec, app.RecordKeeper, app.AccountKeeper, app.BankKeeper),
nftmodule.NewAppModule(appCodec, app.NFTKeeper, app.AccountKeeper, app.BankKeeper),
nft.NewAppModule(appCodec, app.NFTKeeper, app.AccountKeeper, app.BankKeeper),
htlc.NewAppModule(
appCodec,
app.HTLCKeeper,
Expand Down
16 changes: 8 additions & 8 deletions app/sim_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ import (
"strings"
"testing"

coinswaptypes "github.com/irisnet/irismod/modules/coinswap/types"
htlctypes "github.com/irisnet/irismod/modules/htlc/types"
mttypes "github.com/irisnet/irismod/modules/mt/types"
nfttypes "github.com/irisnet/irismod/modules/nft/types"
oracletypes "github.com/irisnet/irismod/modules/oracle/types"
randomtypes "github.com/irisnet/irismod/modules/random/types"
servicetypes "github.com/irisnet/irismod/modules/service/types"
tokentypes "github.com/irisnet/irismod/modules/token/types"
coinswaptypes "mods.irisnet.org/modules/coinswap/types"
htlctypes "mods.irisnet.org/modules/htlc/types"
mttypes "mods.irisnet.org/modules/mt/types"
nfttypes "mods.irisnet.org/modules/nft/types"
oracletypes "mods.irisnet.org/modules/oracle/types"
randomtypes "mods.irisnet.org/modules/random/types"
servicetypes "mods.irisnet.org/modules/service/types"
tokentypes "mods.irisnet.org/modules/token/types"
"github.com/stretchr/testify/require"

"github.com/irisnet/irishub/v3/app/params"
Expand Down
9 changes: 4 additions & 5 deletions cmd/iris/cmd/testnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"path/filepath"

evmtypes "github.com/evmos/ethermint/x/evm/types"
tokentypes "github.com/irisnet/irismod/modules/token/types"
tokentypes "mods.irisnet.org/modules/token/types"

"github.com/spf13/cobra"

Expand Down Expand Up @@ -41,9 +41,8 @@ import (

servercfg "github.com/evmos/ethermint/server/config"

randomtypes "github.com/irisnet/irismod/modules/random/types"
servicetypes "github.com/irisnet/irismod/modules/service/types"
tokentypesv1 "github.com/irisnet/irismod/modules/token/types/v1"
servicetypes "mods.irisnet.org/modules/service/types"
tokentypesv1 "mods.irisnet.org/modules/token/types/v1"

guardiantypes "github.com/irisnet/irishub/v3/modules/guardian/types"
iristypes "github.com/irisnet/irishub/v3/types"
Expand Down Expand Up @@ -381,7 +380,7 @@ func initGenFiles(
)
serviceGenState.Definitions = append(
serviceGenState.Definitions,
randomtypes.GetSvcDefinition(),
servicetypes.GetRandomSvcDefinition(),
)
appGenState[servicetypes.ModuleName] = clientCtx.Codec.MustMarshalJSON(&serviceGenState)

Expand Down
4 changes: 2 additions & 2 deletions cmd/iris/cmd/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import (
"github.com/cosmos/cosmos-sdk/client/flags"
sdk "github.com/cosmos/cosmos-sdk/types"

tokentypes "github.com/irisnet/irismod/modules/token/types"
tokenv1 "github.com/irisnet/irismod/modules/token/types/v1"
tokentypes "mods.irisnet.org/modules/token/types"
tokenv1 "mods.irisnet.org/modules/token/types/v1"
)

const (
Expand Down
16 changes: 13 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,24 @@ go 1.21

require (
github.com/bianjieai/nft-transfer v1.1.3-ibc-v7.3.0
github.com/bianjieai/tibc-go v0.5.0
github.com/bianjieai/tibc-go v0.5.1-0.20240703054905-6368161b801f
github.com/cometbft/cometbft v0.37.5
github.com/cometbft/cometbft-db v0.8.0
github.com/cosmos/cosmos-sdk v0.47.15-ics-lsm
github.com/cosmos/gogoproto v1.4.10
github.com/cosmos/iavl v0.20.1 // indirect
github.com/cosmos/ibc-go/v7 v7.3.0
github.com/evmos/ethermint v0.22.0
github.com/irisnet/irismod v1.9.0
mods.irisnet.org/modules/coinswap v0.0.0-20240705013837-55f906fb239e
mods.irisnet.org/modules/farm v0.0.0-20240705013837-55f906fb239e
mods.irisnet.org/modules/htlc v0.0.0-20240705013837-55f906fb239e
mods.irisnet.org/modules/mt v0.0.0-20240705013837-55f906fb239e
mods.irisnet.org/modules/nft v0.0.0-20240705013837-55f906fb239e
mods.irisnet.org/modules/oracle v0.0.0-20240705013837-55f906fb239e
mods.irisnet.org/modules/random v0.0.0-20240705013837-55f906fb239e
mods.irisnet.org/modules/record v0.0.0-20240705013837-55f906fb239e
mods.irisnet.org/modules/service v0.0.0-20240705013837-55f906fb239e
mods.irisnet.org/modules/token v0.0.0-20240705013837-55f906fb239e
)

require (
Expand Down Expand Up @@ -90,6 +99,8 @@ require (
go.uber.org/multierr v1.9.0 // indirect
golang.org/x/time v0.5.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect
mods.irisnet.org/api v0.0.0-20240628054110-4cb043e0238a // indirect
mods.irisnet.org/simapp v0.0.0-20240628054110-4cb043e0238a // indirect
pgregory.net/rapid v1.1.0 // indirect
)

Expand Down Expand Up @@ -237,7 +248,6 @@ require (
)

replace (

// use bianjieai fork of ethermint
github.com/evmos/ethermint => github.com/bianjieai/ethermint v0.22.0-irishub-20240512

Expand Down
30 changes: 26 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,8 @@ github.com/bianjieai/ethermint v0.22.0-irishub-20240512 h1:s7xvTNh4GlUlTjYfeGNvM
github.com/bianjieai/ethermint v0.22.0-irishub-20240512/go.mod h1:x9BFez6AUL9Yksv4zZd3QLmSazwOkyNd3h2zFV2B4RU=
github.com/bianjieai/nft-transfer v1.1.3-ibc-v7.3.0 h1:399lErsTpI+faTerw5Q4OuVlXAmAQSuibVvxHR3C6OY=
github.com/bianjieai/nft-transfer v1.1.3-ibc-v7.3.0/go.mod h1:u2PNH4v8CD4AWU4Rf7yt8/qqQtrrwwHiw03qQSKERhg=
github.com/bianjieai/tibc-go v0.5.0 h1:/J1OQe4gwUUkS3Q6+nm0EsTY7MNAOPNzfnpvgIWlvKM=
github.com/bianjieai/tibc-go v0.5.0/go.mod h1:fvAqEqZV+V+TxCpSJlteZAXobgLd03H8tJN28FaubL8=
github.com/bianjieai/tibc-go v0.5.1-0.20240703054905-6368161b801f h1:i47L6/TuYkT9zVv9knk0VESrpj4Bgk/vSvo9Vgd4c0w=
github.com/bianjieai/tibc-go v0.5.1-0.20240703054905-6368161b801f/go.mod h1:pAl6C6Fu4Rq4eWLkkMELMvPE8gJplv2ksvbYr6mPmt4=
github.com/bmizerany/pat v0.0.0-20170815010413-6226ea591a40/go.mod h1:8rLXio+WjiTceGBHIoTvn60HIbs7Hm7bcHjyrSqYB9c=
github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps=
github.com/btcsuite/btcd v0.0.0-20190315201642-aa6e0f35703c/go.mod h1:DrZx5ec/dmnfpw9KyYoQyYo7d0KEvTkk/5M/vbZjAr8=
Expand Down Expand Up @@ -841,8 +841,6 @@ github.com/influxdata/promql/v2 v2.12.0/go.mod h1:fxOPu+DY0bqCTCECchSRtWfc+0X19y
github.com/influxdata/roaring v0.4.13-0.20180809181101-fc520f41fab6/go.mod h1:bSgUQ7q5ZLSO+bKBGqJiCBGAl+9DxyW63zLTujjUlOE=
github.com/influxdata/tdigest v0.0.0-20181121200506-bf2b5ad3c0a9/go.mod h1:Js0mqiSBE6Ffsg94weZZ2c+v/ciT8QRHFOap7EKDrR0=
github.com/influxdata/usage-client v0.0.0-20160829180054-6d3895376368/go.mod h1:Wbbw6tYNvwa5dlB6304Sd+82Z3f7PmVZHVKU637d4po=
github.com/irisnet/irismod v1.9.0 h1:ZZtcY7575gmSkp08TOm/bhJjH2P7qAX7AWspP5lsAGY=
github.com/irisnet/irismod v1.9.0/go.mod h1:TQDhEmxqCIzo7OjyNy//UI0xKDuMtONjoy5LzUeRhVo=
github.com/jackpal/go-nat-pmp v1.0.2 h1:KzKSgb7qkJvOUTqYl9/Hg/me3pWgBmERKrTGD7BdWus=
github.com/jackpal/go-nat-pmp v1.0.2/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc=
github.com/jedisct1/go-minisign v0.0.0-20190909160543-45766022959e/go.mod h1:G1CVv03EnqU1wYL2dFwXxW2An0az9JTl/ZsqXQeBlkU=
Expand Down Expand Up @@ -1989,6 +1987,30 @@ honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt
honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las=
mods.irisnet.org/api v0.0.0-20240628054110-4cb043e0238a h1:/MLyi/CV2TrCVtGREoSpeLpXZvCgIUfbe3vqy8Lo/k4=
mods.irisnet.org/api v0.0.0-20240628054110-4cb043e0238a/go.mod h1:TpMaRRYSpqsXdeX4gDVFRj9ggedQ60Zcjs4iE2DIhsc=
mods.irisnet.org/modules/coinswap v0.0.0-20240705013837-55f906fb239e h1:gpjbJ09SSK5q24qFka3+a0ZwmLkOi8k6P6RFIqBfrlE=
mods.irisnet.org/modules/coinswap v0.0.0-20240705013837-55f906fb239e/go.mod h1:VvXv4ETY2t7+1Ij3l4aiJ+Vr1/eyYTjlDLMy3Mnlm/I=
mods.irisnet.org/modules/farm v0.0.0-20240705013837-55f906fb239e h1:oVGLzM01d61bW9qtvLNiJSrZk6VQCSmkdkf/L+cFQ/s=
mods.irisnet.org/modules/farm v0.0.0-20240705013837-55f906fb239e/go.mod h1:V3lNfWnpdeOz9iKXAUcSICX7SIdwyWSRkbmAjZX7WcQ=
mods.irisnet.org/modules/htlc v0.0.0-20240705013837-55f906fb239e h1:CuqXrAEBlnUYiQg4Q8CJ5mAji5zT2ActPFaLycQYGFk=
mods.irisnet.org/modules/htlc v0.0.0-20240705013837-55f906fb239e/go.mod h1:E3uofF4gCMLGzJOwbvwYtNHl3KgtN0t27eErplNb+rk=
mods.irisnet.org/modules/mt v0.0.0-20240705013837-55f906fb239e h1:uzpByQgeFwUdhB+pg1sZVFsKNNxiDNOpK9chNlKl7Tc=
mods.irisnet.org/modules/mt v0.0.0-20240705013837-55f906fb239e/go.mod h1:5x3w5k27g0Y9vIeh8DzcRVJMngnENelt2p/mKv4l0vg=
mods.irisnet.org/modules/nft v0.0.0-20240705013837-55f906fb239e h1:DoC8udV+478pLfIKKvmVHO2lP28JhlU7xLyaFDNKqXk=
mods.irisnet.org/modules/nft v0.0.0-20240705013837-55f906fb239e/go.mod h1:XfSo9X+EHlYLsW1S3OW2hn4XagVbWcRwxH3W6yIPyoI=
mods.irisnet.org/modules/oracle v0.0.0-20240705013837-55f906fb239e h1:m+ZesHMSZTlDziBUJKUVPlRA4B+9JVLIeNIrP2fhzfI=
mods.irisnet.org/modules/oracle v0.0.0-20240705013837-55f906fb239e/go.mod h1:7h9vocgp3Kit85qb1vA+RP3SqIrVf0ii+kzgPy/R7BI=
mods.irisnet.org/modules/random v0.0.0-20240705013837-55f906fb239e h1:ihOcgVis+MKjWOV0Zv7eOdZVwdB/C1Ol69uohJOT9/0=
mods.irisnet.org/modules/random v0.0.0-20240705013837-55f906fb239e/go.mod h1:IX6BnkjB4bnj9dpbEvwVG+UehfiWHd6M8b7+HwYCFGM=
mods.irisnet.org/modules/record v0.0.0-20240705013837-55f906fb239e h1:CkCI55qPV+H5AGYAw4BcaInVsB7VcIn3TScYAJVjusE=
mods.irisnet.org/modules/record v0.0.0-20240705013837-55f906fb239e/go.mod h1:kb5BJV+VYldVl2OWcqQRm5Gzg3Vp9OqXCmZUwKWNZRA=
mods.irisnet.org/modules/service v0.0.0-20240705013837-55f906fb239e h1:jpM8OYADVk4HmMit49tEACL//sSyWrl6UZbpyzJ0fJM=
mods.irisnet.org/modules/service v0.0.0-20240705013837-55f906fb239e/go.mod h1:7e7jjJlVP0PLVq+HPI6Ah3722WuCKbJvFAC5/NHDJwg=
mods.irisnet.org/modules/token v0.0.0-20240705013837-55f906fb239e h1:03R3w8CUN4fbjy3BXZushlv/cs6HuoCCpeT41tJaZJI=
mods.irisnet.org/modules/token v0.0.0-20240705013837-55f906fb239e/go.mod h1:8NkHydwUrpfpi9fDqANtsFcV9xCDD59vCaLZx3tiOvE=
mods.irisnet.org/simapp v0.0.0-20240628054110-4cb043e0238a h1:zjb4v3bQSgSXZtW0+Xh8vOqBcgEjfxJrTh4l5AsaX/8=
mods.irisnet.org/simapp v0.0.0-20240628054110-4cb043e0238a/go.mod h1:qO8Hh5WPHJ/CjQazBOlor4t3IhZfFITxLVOGojG4ft4=
nhooyr.io/websocket v1.8.6 h1:s+C3xAMLwGmlI31Nyn/eAehUlZPwfYZu2JXM621Q5/k=
nhooyr.io/websocket v1.8.6/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0=
pgregory.net/rapid v1.1.0 h1:CMa0sjHSru3puNx+J0MIAuiiEV4N0qj8/cMWGBBCsjw=
Expand Down
2 changes: 1 addition & 1 deletion modules/internft/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"

nftkeeper "github.com/cosmos/cosmos-sdk/x/nft/keeper"
nfttypes "github.com/irisnet/irismod/modules/nft/types"
nfttypes "mods.irisnet.org/modules/nft/types"
)

type (
Expand Down
Loading
Loading