Skip to content

Commit

Permalink
v5 Import Paths (#588)
Browse files Browse the repository at this point in the history
  • Loading branch information
sampocs authored Jan 19, 2023
1 parent f635c1a commit 50eb2b4
Show file tree
Hide file tree
Showing 376 changed files with 1,453 additions and 1,452 deletions.
54 changes: 27 additions & 27 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

porttypes "github.com/cosmos/ibc-go/v5/modules/core/05-port/types"

"github.com/Stride-Labs/stride/v4/utils"
"github.com/Stride-Labs/stride/v5/utils"

"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/client"
Expand Down Expand Up @@ -54,12 +54,12 @@ import (
govtypesv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1"
govtypesv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"

claimvesting "github.com/Stride-Labs/stride/v4/x/claim/vesting"
claimvestingtypes "github.com/Stride-Labs/stride/v4/x/claim/vesting/types"
claimvesting "github.com/Stride-Labs/stride/v5/x/claim/vesting"
claimvestingtypes "github.com/Stride-Labs/stride/v5/x/claim/vesting/types"

"github.com/Stride-Labs/stride/v4/x/mint"
mintkeeper "github.com/Stride-Labs/stride/v4/x/mint/keeper"
minttypes "github.com/Stride-Labs/stride/v4/x/mint/types"
"github.com/Stride-Labs/stride/v5/x/mint"
mintkeeper "github.com/Stride-Labs/stride/v5/x/mint/keeper"
minttypes "github.com/Stride-Labs/stride/v5/x/mint/types"

"github.com/cosmos/cosmos-sdk/x/params"
paramsclient "github.com/cosmos/cosmos-sdk/x/params/client"
Expand Down Expand Up @@ -106,27 +106,27 @@ import (
// monitoringp "github.com/tendermint/spn/x/monitoringp"
// monitoringpkeeper "github.com/tendermint/spn/x/monitoringp/keeper"

epochsmodule "github.com/Stride-Labs/stride/v4/x/epochs"
epochsmodulekeeper "github.com/Stride-Labs/stride/v4/x/epochs/keeper"
epochsmoduletypes "github.com/Stride-Labs/stride/v4/x/epochs/types"

"github.com/Stride-Labs/stride/v4/x/interchainquery"
interchainquerykeeper "github.com/Stride-Labs/stride/v4/x/interchainquery/keeper"
interchainquerytypes "github.com/Stride-Labs/stride/v4/x/interchainquery/types"

"github.com/Stride-Labs/stride/v4/x/claim"
claimkeeper "github.com/Stride-Labs/stride/v4/x/claim/keeper"
claimtypes "github.com/Stride-Labs/stride/v4/x/claim/types"
icacallbacksmodule "github.com/Stride-Labs/stride/v4/x/icacallbacks"
icacallbacksmodulekeeper "github.com/Stride-Labs/stride/v4/x/icacallbacks/keeper"
icacallbacksmoduletypes "github.com/Stride-Labs/stride/v4/x/icacallbacks/types"
recordsmodule "github.com/Stride-Labs/stride/v4/x/records"
recordsmodulekeeper "github.com/Stride-Labs/stride/v4/x/records/keeper"
recordsmoduletypes "github.com/Stride-Labs/stride/v4/x/records/types"
stakeibcmodule "github.com/Stride-Labs/stride/v4/x/stakeibc"
stakeibcclient "github.com/Stride-Labs/stride/v4/x/stakeibc/client"
stakeibcmodulekeeper "github.com/Stride-Labs/stride/v4/x/stakeibc/keeper"
stakeibcmoduletypes "github.com/Stride-Labs/stride/v4/x/stakeibc/types"
epochsmodule "github.com/Stride-Labs/stride/v5/x/epochs"
epochsmodulekeeper "github.com/Stride-Labs/stride/v5/x/epochs/keeper"
epochsmoduletypes "github.com/Stride-Labs/stride/v5/x/epochs/types"

"github.com/Stride-Labs/stride/v5/x/interchainquery"
interchainquerykeeper "github.com/Stride-Labs/stride/v5/x/interchainquery/keeper"
interchainquerytypes "github.com/Stride-Labs/stride/v5/x/interchainquery/types"

"github.com/Stride-Labs/stride/v5/x/claim"
claimkeeper "github.com/Stride-Labs/stride/v5/x/claim/keeper"
claimtypes "github.com/Stride-Labs/stride/v5/x/claim/types"
icacallbacksmodule "github.com/Stride-Labs/stride/v5/x/icacallbacks"
icacallbacksmodulekeeper "github.com/Stride-Labs/stride/v5/x/icacallbacks/keeper"
icacallbacksmoduletypes "github.com/Stride-Labs/stride/v5/x/icacallbacks/types"
recordsmodule "github.com/Stride-Labs/stride/v5/x/records"
recordsmodulekeeper "github.com/Stride-Labs/stride/v5/x/records/keeper"
recordsmoduletypes "github.com/Stride-Labs/stride/v5/x/records/types"
stakeibcmodule "github.com/Stride-Labs/stride/v5/x/stakeibc"
stakeibcclient "github.com/Stride-Labs/stride/v5/x/stakeibc/client"
stakeibcmodulekeeper "github.com/Stride-Labs/stride/v5/x/stakeibc/keeper"
stakeibcmoduletypes "github.com/Stride-Labs/stride/v5/x/stakeibc/types"

// this line is used by starport scaffolding # stargate/app/moduleImport
storetypes "github.com/cosmos/cosmos-sdk/store/types"
Expand Down
2 changes: 1 addition & 1 deletion app/apptesting/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"github.com/tendermint/tendermint/crypto/ed25519"
tmtypes "github.com/tendermint/tendermint/proto/tendermint/types"

"github.com/Stride-Labs/stride/v4/app"
"github.com/Stride-Labs/stride/v5/app"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion app/test_setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
tmtypes "github.com/tendermint/tendermint/types"
dbm "github.com/tendermint/tm-db"

cmdcfg "github.com/Stride-Labs/stride/v4/cmd/strided/config"
cmdcfg "github.com/Stride-Labs/stride/v5/cmd/strided/config"
)

const Bech32Prefix = "stride"
Expand Down
16 changes: 8 additions & 8 deletions app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ import (

authz "github.com/cosmos/cosmos-sdk/x/authz"

v2 "github.com/Stride-Labs/stride/v4/app/upgrades/v2"
v3 "github.com/Stride-Labs/stride/v4/app/upgrades/v3"
v4 "github.com/Stride-Labs/stride/v4/app/upgrades/v4"
v5 "github.com/Stride-Labs/stride/v4/app/upgrades/v5"
claimtypes "github.com/Stride-Labs/stride/v4/x/claim/types"
icacallbacktypes "github.com/Stride-Labs/stride/v4/x/icacallbacks/types"
recordtypes "github.com/Stride-Labs/stride/v4/x/records/types"
stakeibctypes "github.com/Stride-Labs/stride/v4/x/stakeibc/types"
v2 "github.com/Stride-Labs/stride/v5/app/upgrades/v2"
v3 "github.com/Stride-Labs/stride/v5/app/upgrades/v3"
v4 "github.com/Stride-Labs/stride/v5/app/upgrades/v4"
v5 "github.com/Stride-Labs/stride/v5/app/upgrades/v5"
claimtypes "github.com/Stride-Labs/stride/v5/x/claim/types"
icacallbacktypes "github.com/Stride-Labs/stride/v5/x/icacallbacks/types"
recordtypes "github.com/Stride-Labs/stride/v5/x/records/types"
stakeibctypes "github.com/Stride-Labs/stride/v5/x/stakeibc/types"
)

func (app *StrideApp) setupUpgradeHandlers() {
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func MigrateStore(ctx sdk.Context) error {
// app/upgrades/{upgradeVersion}/upgrades.go

import (
{module}migration "github.com/Stride-Labs/stride/v4/x/{module}/migrations/{new-consensus-version}"
{module}migration "github.com/Stride-Labs/stride/v5/x/{module}/migrations/{new-consensus-version}"
)

// CreateUpgradeHandler creates an SDK upgrade handler for {upgradeVersion}
Expand Down
4 changes: 2 additions & 2 deletions app/upgrades/v3/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/cosmos/cosmos-sdk/types/module"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"

claimkeeper "github.com/Stride-Labs/stride/v4/x/claim/keeper"
claimtypes "github.com/Stride-Labs/stride/v4/x/claim/types"
claimkeeper "github.com/Stride-Labs/stride/v5/x/claim/keeper"
claimtypes "github.com/Stride-Labs/stride/v5/x/claim/types"
)

// Note: ensure these values are properly set before running upgrade
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/v3/upgrades_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/stretchr/testify/suite"

"github.com/Stride-Labs/stride/v4/app/apptesting"
"github.com/Stride-Labs/stride/v5/app/apptesting"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/v4/upgrades_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/stretchr/testify/suite"

"github.com/Stride-Labs/stride/v4/app/apptesting"
"github.com/Stride-Labs/stride/v5/app/apptesting"
)

const dummyUpgradeHeight = 5
Expand Down
20 changes: 10 additions & 10 deletions app/upgrades/v5/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ import (
authz "github.com/cosmos/cosmos-sdk/x/authz"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"

claimmigration "github.com/Stride-Labs/stride/v4/x/claim/migrations/v2"
claimtypes "github.com/Stride-Labs/stride/v4/x/claim/types"
icacallbacksmigration "github.com/Stride-Labs/stride/v4/x/icacallbacks/migrations/v2"
icacallbacktypes "github.com/Stride-Labs/stride/v4/x/icacallbacks/types"
interchainquerykeeper "github.com/Stride-Labs/stride/v4/x/interchainquery/keeper"
recordsmigration "github.com/Stride-Labs/stride/v4/x/records/migrations/v2"
recordtypes "github.com/Stride-Labs/stride/v4/x/records/types"
stakeibckeeper "github.com/Stride-Labs/stride/v4/x/stakeibc/keeper"
stakeibcmigration "github.com/Stride-Labs/stride/v4/x/stakeibc/migrations/v2"
stakeibctypes "github.com/Stride-Labs/stride/v4/x/stakeibc/types"
claimmigration "github.com/Stride-Labs/stride/v5/x/claim/migrations/v2"
claimtypes "github.com/Stride-Labs/stride/v5/x/claim/types"
icacallbacksmigration "github.com/Stride-Labs/stride/v5/x/icacallbacks/migrations/v2"
icacallbacktypes "github.com/Stride-Labs/stride/v5/x/icacallbacks/types"
interchainquerykeeper "github.com/Stride-Labs/stride/v5/x/interchainquery/keeper"
recordsmigration "github.com/Stride-Labs/stride/v5/x/records/migrations/v2"
recordtypes "github.com/Stride-Labs/stride/v5/x/records/types"
stakeibckeeper "github.com/Stride-Labs/stride/v5/x/stakeibc/keeper"
stakeibcmigration "github.com/Stride-Labs/stride/v5/x/stakeibc/migrations/v2"
stakeibctypes "github.com/Stride-Labs/stride/v5/x/stakeibc/types"
)

// Note: ensure these values are properly set before running upgrade
Expand Down
28 changes: 14 additions & 14 deletions app/upgrades/v5/upgrades_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/stretchr/testify/suite"

"github.com/Stride-Labs/stride/v4/app"

"github.com/Stride-Labs/stride/v4/app/apptesting"
upgradev5 "github.com/Stride-Labs/stride/v4/app/upgrades/v5"
oldclaimtypes "github.com/Stride-Labs/stride/v4/x/claim/migrations/v2/types"
claimtypes "github.com/Stride-Labs/stride/v4/x/claim/types"
icacallbacktypes "github.com/Stride-Labs/stride/v4/x/icacallbacks/types"
icqtypes "github.com/Stride-Labs/stride/v4/x/interchainquery/types"
recordkeeper "github.com/Stride-Labs/stride/v4/x/records/keeper"
oldrecordtypes "github.com/Stride-Labs/stride/v4/x/records/migrations/v2/types"
recordtypes "github.com/Stride-Labs/stride/v4/x/records/types"
stakeibckeeper "github.com/Stride-Labs/stride/v4/x/stakeibc/keeper"
oldstakeibctypes "github.com/Stride-Labs/stride/v4/x/stakeibc/migrations/v2/types"
stakeibctypes "github.com/Stride-Labs/stride/v4/x/stakeibc/types"
"github.com/Stride-Labs/stride/v5/app"

"github.com/Stride-Labs/stride/v5/app/apptesting"
upgradev5 "github.com/Stride-Labs/stride/v5/app/upgrades/v5"
oldclaimtypes "github.com/Stride-Labs/stride/v5/x/claim/migrations/v2/types"
claimtypes "github.com/Stride-Labs/stride/v5/x/claim/types"
icacallbacktypes "github.com/Stride-Labs/stride/v5/x/icacallbacks/types"
icqtypes "github.com/Stride-Labs/stride/v5/x/interchainquery/types"
recordkeeper "github.com/Stride-Labs/stride/v5/x/records/keeper"
oldrecordtypes "github.com/Stride-Labs/stride/v5/x/records/migrations/v2/types"
recordtypes "github.com/Stride-Labs/stride/v5/x/records/types"
stakeibckeeper "github.com/Stride-Labs/stride/v5/x/stakeibc/keeper"
oldstakeibctypes "github.com/Stride-Labs/stride/v5/x/stakeibc/migrations/v2/types"
stakeibctypes "github.com/Stride-Labs/stride/v5/x/stakeibc/types"
)

const dummyUpgradeHeight = 5
Expand Down
4 changes: 2 additions & 2 deletions cmd/strided/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (

svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"

"github.com/Stride-Labs/stride/v4/app"
"github.com/Stride-Labs/stride/v5/app"

cmdcfg "github.com/Stride-Labs/stride/v4/cmd/strided/config"
cmdcfg "github.com/Stride-Labs/stride/v5/cmd/strided/config"
)

func main() {
Expand Down
6 changes: 3 additions & 3 deletions cmd/strided/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/cosmos/cosmos-sdk/snapshots"

"github.com/Stride-Labs/stride/v4/utils"
"github.com/Stride-Labs/stride/v5/utils"

tmDb "github.com/tendermint/tm-db"

Expand Down Expand Up @@ -40,8 +40,8 @@ import (
genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
tmcfg "github.com/tendermint/tendermint/config"

"github.com/Stride-Labs/stride/v4/app"
// "github.com/Stride-Labs/stride/v4/app/params"
"github.com/Stride-Labs/stride/v5/app"
// "github.com/Stride-Labs/stride/v5/app/params"
// this line is used by starport scaffolding # stargate/root/import
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/Stride-Labs/stride/v4
module github.com/Stride-Labs/stride/v5

go 1.19

Expand Down
2 changes: 1 addition & 1 deletion proto/stride/claim/claim.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package stride.claim;

import "gogoproto/gogo.proto";

option go_package = "github.com/Stride-Labs/stride/v4/x/claim/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/claim/types";

enum Action {
option (gogoproto.goproto_enum_prefix) = false;
Expand Down
2 changes: 1 addition & 1 deletion proto/stride/claim/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto";
import "stride/claim/claim.proto";
import "stride/claim/params.proto";

option go_package = "github.com/Stride-Labs/stride/v4/x/claim/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/claim/types";

// GenesisState defines the claim module's genesis state.
message GenesisState {
Expand Down
2 changes: 1 addition & 1 deletion proto/stride/claim/params.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto";
import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto";

option go_package = "github.com/Stride-Labs/stride/v4/x/claim/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/claim/types";

// Params defines the claim module's parameters.
message Params { repeated Airdrop airdrops = 1; }
Expand Down
2 changes: 1 addition & 1 deletion proto/stride/claim/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import "stride/claim/claim.proto";
import "stride/claim/params.proto";
import "stride/vesting/vesting.proto";

option go_package = "github.com/Stride-Labs/stride/v4/x/claim/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/claim/types";

// Query defines the gRPC querier service.
service Query {
Expand Down
2 changes: 1 addition & 1 deletion proto/stride/claim/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package stride.claim;
import "gogoproto/gogo.proto";
import "cosmos/base/v1beta1/coin.proto";

option go_package = "github.com/Stride-Labs/stride/v4/x/claim/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/claim/types";

// Msg defines the Msg service.
service Msg {
Expand Down
2 changes: 1 addition & 1 deletion proto/stride/epochs/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto";
import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto";

option go_package = "github.com/Stride-Labs/stride/v4/x/epochs/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/epochs/types";

message EpochInfo {
string identifier = 1;
Expand Down
4 changes: 2 additions & 2 deletions proto/stride/epochs/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "google/api/annotations.proto";
import "cosmos/base/query/v1beta1/pagination.proto";
import "stride/epochs/genesis.proto";

option go_package = "github.com/Stride-Labs/stride/v4/x/epochs/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/epochs/types";

// Query defines the gRPC querier service.
service Query {
Expand Down Expand Up @@ -51,7 +51,7 @@ message QueryEpochInfoResponse {
// import "epochs/params.proto";
// // this line is used by starport scaffolding # 1

// option go_package = "github.com/Stride-Labs/stride/v4/x/epochs/types";
// option go_package = "github.com/Stride-Labs/stride/v5/x/epochs/types";

// // Query defines the gRPC querier service.
// service Query {
Expand Down
2 changes: 1 addition & 1 deletion proto/stride/icacallbacks/callback_data.proto
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
syntax = "proto3";
package stride.icacallbacks;

option go_package = "github.com/Stride-Labs/stride/v4/x/icacallbacks/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/icacallbacks/types";

message CallbackData {
string callback_key = 1;
Expand Down
2 changes: 1 addition & 1 deletion proto/stride/icacallbacks/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "stride/icacallbacks/params.proto";
import "stride/icacallbacks/callback_data.proto";
// this line is used by starport scaffolding # genesis/proto/import

option go_package = "github.com/Stride-Labs/stride/v4/x/icacallbacks/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/icacallbacks/types";

// GenesisState defines the icacallbacks module's genesis state.
message GenesisState {
Expand Down
2 changes: 1 addition & 1 deletion proto/stride/icacallbacks/packet.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package stride.icacallbacks;

// this line is used by starport scaffolding # proto/packet/import

option go_package = "github.com/Stride-Labs/stride/v4/x/icacallbacks/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/icacallbacks/types";

message IcacallbacksPacketData {
oneof packet {
Expand Down
2 changes: 1 addition & 1 deletion proto/stride/icacallbacks/params.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package stride.icacallbacks;

import "gogoproto/gogo.proto";

option go_package = "github.com/Stride-Labs/stride/v4/x/icacallbacks/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/icacallbacks/types";

// Params defines the parameters for the module.
message Params { option (gogoproto.goproto_stringer) = false; }
2 changes: 1 addition & 1 deletion proto/stride/icacallbacks/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import "stride/icacallbacks/params.proto";
import "stride/icacallbacks/callback_data.proto";
// this line is used by starport scaffolding # 1

option go_package = "github.com/Stride-Labs/stride/v4/x/icacallbacks/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/icacallbacks/types";

// Query defines the gRPC querier service.
service Query {
Expand Down
2 changes: 1 addition & 1 deletion proto/stride/icacallbacks/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package stride.icacallbacks;

// this line is used by starport scaffolding # proto/tx/import

option go_package = "github.com/Stride-Labs/stride/v4/x/icacallbacks/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/icacallbacks/types";

// Msg defines the Msg service.
service Msg {
Expand Down
2 changes: 1 addition & 1 deletion proto/stride/interchainquery/v1/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package stride.interchainquery.v1;
import "gogoproto/gogo.proto";
import "cosmos_proto/cosmos.proto";

option go_package = "github.com/Stride-Labs/stride/v4/x/interchainquery/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/interchainquery/types";

message Query {
string id = 1;
Expand Down
2 changes: 1 addition & 1 deletion proto/stride/interchainquery/v1/messages.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "cosmos_proto/cosmos.proto";
import "google/api/annotations.proto";
import "tendermint/crypto/proof.proto";

option go_package = "github.com/Stride-Labs/stride/v4/x/interchainquery/types";
option go_package = "github.com/Stride-Labs/stride/v5/x/interchainquery/types";

// Msg defines the interchainquery Msg service.
service Msg {
Expand Down
Loading

0 comments on commit 50eb2b4

Please sign in to comment.