Skip to content

Commit

Permalink
bump to v13
Browse files Browse the repository at this point in the history
  • Loading branch information
jhernandezb committed Oct 17, 2023
1 parent 9ed68ec commit 692e5d1
Show file tree
Hide file tree
Showing 147 changed files with 577 additions and 678 deletions.
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/v12/x/...
go test -v -race github.com/public-awesome/stargaze/v13/x/...

test-pfm:
cd e2e && go test -v -race -run TestPacketForwardMiddleware .
Expand Down
4 changes: 2 additions & 2 deletions app/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"
ibcante "github.com/cosmos/ibc-go/v7/modules/core/ante"
ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper"
globalfeeante "github.com/public-awesome/stargaze/v12/x/globalfee/ante"
globalfeekeeper "github.com/public-awesome/stargaze/v12/x/globalfee/keeper"
globalfeeante "github.com/public-awesome/stargaze/v13/x/globalfee/ante"
globalfeekeeper "github.com/public-awesome/stargaze/v13/x/globalfee/keeper"
)

// HandlerOptions extend the SDK's AnteHandler options by requiring the IBC
Expand Down
44 changes: 22 additions & 22 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,38 +93,38 @@ import (
ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported"
ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper"
ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint"
"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/public-awesome/stargaze/v13/x/mint"
mintkeeper "github.com/public-awesome/stargaze/v13/x/mint/keeper"
minttypes "github.com/public-awesome/stargaze/v13/x/mint/types"
"github.com/public-awesome/stargaze/v13/x/tokenfactory"
tokenfactorykeeper "github.com/public-awesome/stargaze/v13/x/tokenfactory/keeper"
tokenfactorytypes "github.com/public-awesome/stargaze/v13/x/tokenfactory/types"
"github.com/spf13/cast"

"github.com/cosmos/cosmos-sdk/x/authz"
authzkeeper "github.com/cosmos/cosmos-sdk/x/authz/keeper"
authzmodule "github.com/cosmos/cosmos-sdk/x/authz/module"

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

"github.com/CosmWasm/wasmd/x/wasm"
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"
vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"
"github.com/public-awesome/stargaze/v12/docs"
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"
"github.com/public-awesome/stargaze/v13/docs"
sgwasm "github.com/public-awesome/stargaze/v13/internal/wasm"
allocmodule "github.com/public-awesome/stargaze/v13/x/alloc"
allocmodulekeeper "github.com/public-awesome/stargaze/v13/x/alloc/keeper"
allocmoduletypes "github.com/public-awesome/stargaze/v13/x/alloc/types"
allocwasm "github.com/public-awesome/stargaze/v13/x/alloc/wasm"

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

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

ibchooks "github.com/cosmos/ibc-apps/modules/ibc-hooks/v7"
ibchookskeeper "github.com/cosmos/ibc-apps/modules/ibc-hooks/v7/keeper"
Expand All @@ -140,10 +140,10 @@ import (
icahostkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/keeper"
icahosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types"
icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types"
stargazerest "github.com/public-awesome/stargaze/v12/internal/rest"
stargazerest "github.com/public-awesome/stargaze/v13/internal/rest"

sgappparams "github.com/public-awesome/stargaze/v12/app/params"
sgstatesync "github.com/public-awesome/stargaze/v12/internal/statesync"
sgappparams "github.com/public-awesome/stargaze/v13/app/params"
sgstatesync "github.com/public-awesome/stargaze/v13/internal/statesync"
)

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/v12/testutil/simapp"
"github.com/public-awesome/stargaze/v13/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/v12/app/params"
"github.com/public-awesome/stargaze/v13/app/params"
)

// MakeEncodingConfig creates a new EncodingConfig with all modules registered
Expand Down
8 changes: 4 additions & 4 deletions app/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ import (

ibctmmigrations "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint/migrations"

alloctypes "github.com/public-awesome/stargaze/v12/x/alloc/types"
globalfeetypes "github.com/public-awesome/stargaze/v12/x/globalfee/types"
minttypes "github.com/public-awesome/stargaze/v12/x/mint/types"
tokenfactorytypes "github.com/public-awesome/stargaze/v12/x/tokenfactory/types"
alloctypes "github.com/public-awesome/stargaze/v13/x/alloc/types"
globalfeetypes "github.com/public-awesome/stargaze/v13/x/globalfee/types"
minttypes "github.com/public-awesome/stargaze/v13/x/mint/types"
tokenfactorytypes "github.com/public-awesome/stargaze/v13/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/v12/x/tokenfactory/types"
tokenfactorytypes "github.com/public-awesome/stargaze/v13/x/tokenfactory/types"
)

var wasmCapabilities = []string{
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 @@ -37,8 +37,8 @@ import (
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"
tmtypes "github.com/cometbft/cometbft/types"
"github.com/public-awesome/stargaze/v12/app"
"github.com/public-awesome/stargaze/v12/app/params"
"github.com/public-awesome/stargaze/v13/app"
"github.com/public-awesome/stargaze/v13/app/params"
)

const EnvironmentPrefix = "STARGAZE"
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/v12/app"
"github.com/public-awesome/stargaze/v12/cmd/starsd/cmd"
"github.com/public-awesome/stargaze/v13/app"
"github.com/public-awesome/stargaze/v13/cmd/starsd/cmd"
)

func main() {
Expand Down
Loading

0 comments on commit 692e5d1

Please sign in to comment.