Skip to content

Commit

Permalink
Merge pull request #868 from public-awesome/bump-v12
Browse files Browse the repository at this point in the history
bump to v12
  • Loading branch information
jhernandezb authored Aug 21, 2023
2 parents 080e610 + 66801b5 commit b288b51
Show file tree
Hide file tree
Showing 185 changed files with 630 additions and 629 deletions.
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

0 comments on commit b288b51

Please sign in to comment.