diff --git a/client/chain/context.go b/client/chain/context.go index 52bbed43..90b60076 100644 --- a/client/chain/context.go +++ b/client/chain/context.go @@ -43,6 +43,7 @@ import ( distributiontypes "github.com/cosmos/cosmos-sdk/x/distribution/types" govv1types "github.com/cosmos/cosmos-sdk/x/gov/types/v1" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" + minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" paramproposaltypes "github.com/cosmos/cosmos-sdk/x/params/types/proposal" slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" @@ -107,6 +108,7 @@ func NewTxConfig(signModes []signingtypes.SignMode) client.TxConfig { stakingtypes.RegisterInterfaces(interfaceRegistry) upgradetypes.RegisterInterfaces(interfaceRegistry) consensustypes.RegisterInterfaces(interfaceRegistry) + minttypes.RegisterInterfaces(interfaceRegistry) feegranttypes.RegisterInterfaces(interfaceRegistry) wasmtypes.RegisterInterfaces(interfaceRegistry) icatypes.RegisterInterfaces(interfaceRegistry) @@ -155,6 +157,7 @@ func NewClientContext( stakingtypes.RegisterInterfaces(interfaceRegistry) upgradetypes.RegisterInterfaces(interfaceRegistry) consensustypes.RegisterInterfaces(interfaceRegistry) + minttypes.RegisterInterfaces(interfaceRegistry) feegranttypes.RegisterInterfaces(interfaceRegistry) wasmtypes.RegisterInterfaces(interfaceRegistry) icatypes.RegisterInterfaces(interfaceRegistry)