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

bump to v12 #868

Merged
merged 2 commits into from
Aug 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -416,5 +416,6 @@ volumes:

---
kind: signature
hmac: 02da8ca441f7bd076cdb9d309b9bbaedf0aa0f37d164254bcc15b72bcb9e904c
hmac: 080a970b32e1116f813eb85afec92aa95a77ec11f20da1baafc48d40a9a99c6f

...
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ docker-test: build-linux


test:
go test -v -race github.com/public-awesome/stargaze/v11/x/...
go test -v -race github.com/public-awesome/stargaze/v12/x/...

test-pfm:
cd e2e && go test -v -race -run TestPacketForwardMiddleware .
Expand Down
6 changes: 3 additions & 3 deletions app/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"
ibcante "github.com/cosmos/ibc-go/v4/modules/core/ante"
ibckeeper "github.com/cosmos/ibc-go/v4/modules/core/keeper"
stargazeante "github.com/public-awesome/stargaze/v11/internal/ante"
globalfeeante "github.com/public-awesome/stargaze/v11/x/globalfee/ante"
globalfeekeeper "github.com/public-awesome/stargaze/v11/x/globalfee/keeper"
stargazeante "github.com/public-awesome/stargaze/v12/internal/ante"
globalfeeante "github.com/public-awesome/stargaze/v12/x/globalfee/ante"
globalfeekeeper "github.com/public-awesome/stargaze/v12/x/globalfee/keeper"
)

// HandlerOptions extend the SDK's AnteHandler options by requiring the IBC
Expand Down
68 changes: 34 additions & 34 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ import (
ibcporttypes "github.com/cosmos/ibc-go/v4/modules/core/05-port/types"
ibchost "github.com/cosmos/ibc-go/v4/modules/core/24-host"
ibckeeper "github.com/cosmos/ibc-go/v4/modules/core/keeper"
"github.com/public-awesome/stargaze/v11/x/mint"
mintkeeper "github.com/public-awesome/stargaze/v11/x/mint/keeper"
minttypes "github.com/public-awesome/stargaze/v11/x/mint/types"
"github.com/public-awesome/stargaze/v11/x/tokenfactory"
tokenfactorykeeper "github.com/public-awesome/stargaze/v11/x/tokenfactory/keeper"
tokenfactorytypes "github.com/public-awesome/stargaze/v11/x/tokenfactory/types"
"github.com/public-awesome/stargaze/v12/x/mint"
mintkeeper "github.com/public-awesome/stargaze/v12/x/mint/keeper"
minttypes "github.com/public-awesome/stargaze/v12/x/mint/types"
"github.com/public-awesome/stargaze/v12/x/tokenfactory"
tokenfactorykeeper "github.com/public-awesome/stargaze/v12/x/tokenfactory/keeper"
tokenfactorytypes "github.com/public-awesome/stargaze/v12/x/tokenfactory/types"
"github.com/spf13/cast"
abci "github.com/tendermint/tendermint/abci/types"
tmjson "github.com/tendermint/tendermint/libs/json"
Expand All @@ -96,37 +96,37 @@ import (
authzkeeper "github.com/cosmos/cosmos-sdk/x/authz/keeper"
authzmodule "github.com/cosmos/cosmos-sdk/x/authz/module"

"github.com/public-awesome/stargaze/v11/app/openapiconsole"
"github.com/public-awesome/stargaze/v12/app/openapiconsole"

"github.com/CosmWasm/wasmd/x/wasm"
wasmclient "github.com/CosmWasm/wasmd/x/wasm/client"
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"
"github.com/public-awesome/stargaze/v11/docs"
sgstatesync "github.com/public-awesome/stargaze/v11/internal/statesync"
sgwasm "github.com/public-awesome/stargaze/v11/internal/wasm"
allocmodule "github.com/public-awesome/stargaze/v11/x/alloc"
allocmodulekeeper "github.com/public-awesome/stargaze/v11/x/alloc/keeper"
allocmoduletypes "github.com/public-awesome/stargaze/v11/x/alloc/types"
allocwasm "github.com/public-awesome/stargaze/v11/x/alloc/wasm"
claimmodule "github.com/public-awesome/stargaze/v11/x/claim"
claimmodulekeeper "github.com/public-awesome/stargaze/v11/x/claim/keeper"
claimmoduletypes "github.com/public-awesome/stargaze/v11/x/claim/types"
claimwasm "github.com/public-awesome/stargaze/v11/x/claim/wasm"

cronmodule "github.com/public-awesome/stargaze/v11/x/cron"
cronclient "github.com/public-awesome/stargaze/v11/x/cron/client"
cronmodulekeeper "github.com/public-awesome/stargaze/v11/x/cron/keeper"
cronmoduletypes "github.com/public-awesome/stargaze/v11/x/cron/types"

globalfeemodule "github.com/public-awesome/stargaze/v11/x/globalfee"
globalfeeclient "github.com/public-awesome/stargaze/v11/x/globalfee/client"
globalfeemodulekeeper "github.com/public-awesome/stargaze/v11/x/globalfee/keeper"
globalfeemoduletypes "github.com/public-awesome/stargaze/v11/x/globalfee/types"

"github.com/public-awesome/stargaze/v11/x/ibchooks"
ibchookskeeper "github.com/public-awesome/stargaze/v11/x/ibchooks/keeper"
ibchookstypes "github.com/public-awesome/stargaze/v11/x/ibchooks/types"
"github.com/public-awesome/stargaze/v12/docs"
sgstatesync "github.com/public-awesome/stargaze/v12/internal/statesync"
sgwasm "github.com/public-awesome/stargaze/v12/internal/wasm"
allocmodule "github.com/public-awesome/stargaze/v12/x/alloc"
allocmodulekeeper "github.com/public-awesome/stargaze/v12/x/alloc/keeper"
allocmoduletypes "github.com/public-awesome/stargaze/v12/x/alloc/types"
allocwasm "github.com/public-awesome/stargaze/v12/x/alloc/wasm"
claimmodule "github.com/public-awesome/stargaze/v12/x/claim"
claimmodulekeeper "github.com/public-awesome/stargaze/v12/x/claim/keeper"
claimmoduletypes "github.com/public-awesome/stargaze/v12/x/claim/types"
claimwasm "github.com/public-awesome/stargaze/v12/x/claim/wasm"

cronmodule "github.com/public-awesome/stargaze/v12/x/cron"
cronclient "github.com/public-awesome/stargaze/v12/x/cron/client"
cronmodulekeeper "github.com/public-awesome/stargaze/v12/x/cron/keeper"
cronmoduletypes "github.com/public-awesome/stargaze/v12/x/cron/types"

globalfeemodule "github.com/public-awesome/stargaze/v12/x/globalfee"
globalfeeclient "github.com/public-awesome/stargaze/v12/x/globalfee/client"
globalfeemodulekeeper "github.com/public-awesome/stargaze/v12/x/globalfee/keeper"
globalfeemoduletypes "github.com/public-awesome/stargaze/v12/x/globalfee/types"

"github.com/public-awesome/stargaze/v12/x/ibchooks"
ibchookskeeper "github.com/public-awesome/stargaze/v12/x/ibchooks/keeper"
ibchookstypes "github.com/public-awesome/stargaze/v12/x/ibchooks/types"

packetforward "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v4/router"
packetforwardkeeper "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v4/router/keeper"
Expand All @@ -137,9 +137,9 @@ import (
icahostkeeper "github.com/cosmos/ibc-go/v4/modules/apps/27-interchain-accounts/host/keeper"
icahosttypes "github.com/cosmos/ibc-go/v4/modules/apps/27-interchain-accounts/host/types"
icatypes "github.com/cosmos/ibc-go/v4/modules/apps/27-interchain-accounts/types"
stargazerest "github.com/public-awesome/stargaze/v11/internal/rest"
stargazerest "github.com/public-awesome/stargaze/v12/internal/rest"

sgappparams "github.com/public-awesome/stargaze/v11/app/params"
sgappparams "github.com/public-awesome/stargaze/v12/app/params"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion app/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package app_test
import (
"testing"

"github.com/public-awesome/stargaze/v11/testutil/simapp"
"github.com/public-awesome/stargaze/v12/testutil/simapp"
)

func TestAnteHandler(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion app/encoding.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package app

import (
"github.com/cosmos/cosmos-sdk/std"
"github.com/public-awesome/stargaze/v11/app/params"
"github.com/public-awesome/stargaze/v12/app/params"
)

// MakeEncodingConfig creates a new EncodingConfig with all modules registered
Expand Down
6 changes: 3 additions & 3 deletions app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"github.com/cosmos/cosmos-sdk/types/module"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
allocmoduletypes "github.com/public-awesome/stargaze/v11/x/alloc/types"
ibchooks "github.com/public-awesome/stargaze/v11/x/ibchooks/types"
tokenfactorytypes "github.com/public-awesome/stargaze/v11/x/tokenfactory/types"
allocmoduletypes "github.com/public-awesome/stargaze/v12/x/alloc/types"
ibchooks "github.com/public-awesome/stargaze/v12/x/ibchooks/types"
tokenfactorytypes "github.com/public-awesome/stargaze/v12/x/tokenfactory/types"
)

// next upgrade name
Expand Down
2 changes: 1 addition & 1 deletion app/wasm.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strings"

wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
tokenfactorytypes "github.com/public-awesome/stargaze/v11/x/tokenfactory/types"
tokenfactorytypes "github.com/public-awesome/stargaze/v12/x/tokenfactory/types"
)

var wasmCapabilities = []string{
Expand Down
8 changes: 4 additions & 4 deletions cmd/starsd/cmd/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ import (
slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
ibctransfertypes "github.com/cosmos/ibc-go/v4/modules/apps/transfer/types"
minttypes "github.com/public-awesome/stargaze/v11/x/mint/types"
minttypes "github.com/public-awesome/stargaze/v12/x/mint/types"

// appParams "github.com/public-awesome/stargaze/app/params"
"github.com/CosmWasm/wasmd/x/wasm"
wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"
alloctypes "github.com/public-awesome/stargaze/v11/x/alloc/types"
claimtypes "github.com/public-awesome/stargaze/v11/x/claim/types"
globalfeetypes "github.com/public-awesome/stargaze/v11/x/globalfee/types"
alloctypes "github.com/public-awesome/stargaze/v12/x/alloc/types"
claimtypes "github.com/public-awesome/stargaze/v12/x/claim/types"
globalfeetypes "github.com/public-awesome/stargaze/v12/x/globalfee/types"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions cmd/starsd/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ import (
"github.com/CosmWasm/wasmd/x/wasm"
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"
"github.com/public-awesome/stargaze/v11/app"
"github.com/public-awesome/stargaze/v11/app/params"
"github.com/public-awesome/stargaze/v12/app"
"github.com/public-awesome/stargaze/v12/app/params"
)

// NewRootCmd creates a new root command for wasmd. It is called once in the
Expand Down
4 changes: 2 additions & 2 deletions cmd/starsd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (

"github.com/cosmos/cosmos-sdk/server"
svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"
"github.com/public-awesome/stargaze/v11/app"
"github.com/public-awesome/stargaze/v11/cmd/starsd/cmd"
"github.com/public-awesome/stargaze/v12/app"
"github.com/public-awesome/stargaze/v12/cmd/starsd/cmd"
)

// func main() {
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/public-awesome/stargaze/v11
module github.com/public-awesome/stargaze/v12

go 1.20

Expand Down
4 changes: 2 additions & 2 deletions internal/ante/min_commission_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"github.com/cosmos/cosmos-sdk/x/authz"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
"github.com/cosmos/cosmos-sdk/x/staking/types"
stargazeapp "github.com/public-awesome/stargaze/v11/app"
"github.com/public-awesome/stargaze/v11/testutil/simapp"
stargazeapp "github.com/public-awesome/stargaze/v12/app"
"github.com/public-awesome/stargaze/v12/testutil/simapp"
"github.com/stretchr/testify/require"

tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
Expand Down
4 changes: 2 additions & 2 deletions internal/ante/min_deposit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
stargazeapp "github.com/public-awesome/stargaze/v11/app"
"github.com/public-awesome/stargaze/v11/testutil/simapp"
stargazeapp "github.com/public-awesome/stargaze/v12/app"
"github.com/public-awesome/stargaze/v12/testutil/simapp"
"github.com/stretchr/testify/require"

tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
Expand Down
2 changes: 1 addition & 1 deletion proto/osmosis/tokenfactory/v1beta1/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package osmosis.tokenfactory.v1beta1;
import "gogoproto/gogo.proto";
import "osmosis/tokenfactory/v1beta1/tokenfactory.proto";

option go_package = "github.com/public-awesome/stargaze/v11/x/tokenfactory/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/tokenfactory/types";

// GenesisState defines the tokenfactory module's genesis state.
message GenesisState {
Expand Down
2 changes: 1 addition & 1 deletion proto/osmosis/tokenfactory/v1beta1/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 "osmosis/tokenfactory/v1beta1/tokenfactory.proto";

option go_package = "github.com/public-awesome/stargaze/v11/x/tokenfactory/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/tokenfactory/types";

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

option go_package = "github.com/public-awesome/stargaze/v11/x/tokenfactory/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/tokenfactory/types";

// DenomAuthorityMetadata specifies metadata for addresses that have specific
// capabilities over a token factory denom. Right now there is only one Admin
Expand Down
2 changes: 1 addition & 1 deletion proto/osmosis/tokenfactory/v1beta1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto";
import "cosmos/base/v1beta1/coin.proto";
import "cosmos/bank/v1beta1/bank.proto";

option go_package = "github.com/public-awesome/stargaze/v11/x/tokenfactory/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/tokenfactory/types";

// Msg defines the tokefactory module's gRPC message service.
service Msg {
Expand Down
2 changes: 1 addition & 1 deletion proto/stargaze/alloc/v1beta1/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto";
import "stargaze/alloc/v1beta1/params.proto";
// this line is used by starport scaffolding # genesis/proto/import

option go_package = "github.com/public-awesome/stargaze/v11/x/alloc/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/alloc/types";

// GenesisState defines the alloc module's genesis state.
message GenesisState {
Expand Down
2 changes: 1 addition & 1 deletion proto/stargaze/alloc/v1beta1/params.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ syntax = "proto3";

package publicawesome.stargaze.alloc.v1beta1;

option go_package = "github.com/public-awesome/stargaze/v11/x/alloc/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/alloc/types";

import "gogoproto/gogo.proto";
import "cosmos/base/v1beta1/coin.proto";
Expand Down
2 changes: 1 addition & 1 deletion proto/stargaze/alloc/v1beta1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "google/api/annotations.proto";
import "stargaze/alloc/v1beta1/params.proto";
// this line is used by starport scaffolding # 1

option go_package = "github.com/public-awesome/stargaze/v11/x/alloc/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/alloc/types";

// QueryParamsRequest is the request type for the Query/Params RPC method.
message QueryParamsRequest {}
Expand Down
2 changes: 1 addition & 1 deletion proto/stargaze/alloc/v1beta1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "cosmos/base/v1beta1/coin.proto";

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

option go_package = "github.com/public-awesome/stargaze/v11/x/alloc/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/alloc/types";

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

option go_package = "github.com/public-awesome/stargaze/v11/x/claim/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/claim/types";

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

option go_package = "github.com/public-awesome/stargaze/v11/x/claim/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/claim/types";

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

option go_package = "github.com/public-awesome/stargaze/v11/x/claim/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/claim/types";

message ClaimAuthorization {
string contract_address = 1
Expand Down
2 changes: 1 addition & 1 deletion proto/stargaze/claim/v1beta1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import "stargaze/claim/v1beta1/claim_record.proto";
import "stargaze/claim/v1beta1/params.proto";
// this line is used by starport scaffolding # 1

option go_package = "github.com/public-awesome/stargaze/v11/x/claim/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/claim/types";

// Query defines the gRPC querier service.
service Query {
Expand Down
2 changes: 1 addition & 1 deletion proto/stargaze/claim/v1beta1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "stargaze/claim/v1beta1/claim_record.proto";

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

option go_package = "github.com/public-awesome/stargaze/v11/x/claim/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/claim/types";

// Msg defines the Msg service.
service Msg {
Expand Down
2 changes: 1 addition & 1 deletion proto/stargaze/cron/v1/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package publicawesome.stargaze.cron.v1;

import "gogoproto/gogo.proto";

option go_package = "github.com/public-awesome/stargaze/v11/x/cron/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/cron/types";

// GenesisState defines the cron module's genesis state.
message GenesisState {
Expand Down
2 changes: 1 addition & 1 deletion proto/stargaze/cron/v1/proposal.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package publicawesome.stargaze.cron.v1;
import "gogoproto/gogo.proto";
import "cosmos_proto/cosmos.proto";

option go_package = "github.com/public-awesome/stargaze/v11/x/cron/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/cron/types";

// PromoteToPrivilegedContractProposal gov proposal content type to add
// "privileges" to a contract
Expand Down
2 changes: 1 addition & 1 deletion proto/stargaze/cron/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package publicawesome.stargaze.cron.v1;
import "gogoproto/gogo.proto";
import "google/api/annotations.proto";

option go_package = "github.com/public-awesome/stargaze/v11/x/cron/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/cron/types";

// Query defines the gRPC querier service.
service Query {
Expand Down
2 changes: 1 addition & 1 deletion proto/stargaze/globalfee/v1/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package publicawesome.stargaze.globalfee.v1;
import "stargaze/globalfee/v1/globalfee.proto";
import "gogoproto/gogo.proto";

option go_package = "github.com/public-awesome/stargaze/v11/x/globalfee/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/globalfee/types";

// GenesisState defines the globalfee module's genesis state.
message GenesisState {
Expand Down
2 changes: 1 addition & 1 deletion proto/stargaze/globalfee/v1/globalfee.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package publicawesome.stargaze.globalfee.v1;
import "gogoproto/gogo.proto";
import "cosmos/base/v1beta1/coin.proto";

option go_package = "github.com/public-awesome/stargaze/v11/x/globalfee/types";
option go_package = "github.com/public-awesome/stargaze/v12/x/globalfee/types";

// Params holds parameters for the globalfee module.
message Params {
Expand Down
Loading
Loading