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 app to v2 #707

Merged
merged 1 commit into from
Feb 22, 2024
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
8 changes: 4 additions & 4 deletions app/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ import (
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"

ctypes "github.com/cybercongress/go-cyber/types"
ctypes "github.com/cybercongress/go-cyber/v2/types"

authsigning "github.com/cosmos/cosmos-sdk/x/auth/signing"
ibcante "github.com/cosmos/ibc-go/v3/modules/core/ante"
"github.com/cosmos/ibc-go/v3/modules/core/keeper"

bandwidthkeeper "github.com/cybercongress/go-cyber/x/bandwidth/keeper"
bandwidthtypes "github.com/cybercongress/go-cyber/x/bandwidth/types"
graphtypes "github.com/cybercongress/go-cyber/x/graph/types"
bandwidthkeeper "github.com/cybercongress/go-cyber/v2/x/bandwidth/keeper"
bandwidthtypes "github.com/cybercongress/go-cyber/v2/x/bandwidth/types"
graphtypes "github.com/cybercongress/go-cyber/v2/x/graph/types"
)

// HandlerOptions are the options required for constructing a default SDK AnteHandler.
Expand Down
68 changes: 34 additions & 34 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"time"

liquidityplugin "github.com/cybercongress/go-cyber/plugins/liquidity"
liquidityplugin "github.com/cybercongress/go-cyber/v2/plugins/liquidity"

vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"
"github.com/cosmos/cosmos-sdk/x/authz"
Expand All @@ -36,11 +36,11 @@ import (
liquiditykeeper "github.com/tendermint/liquidity/x/liquidity/keeper"
liquiditytypes "github.com/tendermint/liquidity/x/liquidity/types"

ctypes "github.com/cybercongress/go-cyber/types"
ctypes "github.com/cybercongress/go-cyber/v2/types"

wasmplugins "github.com/cybercongress/go-cyber/plugins"
"github.com/cybercongress/go-cyber/x/dmn"
"github.com/cybercongress/go-cyber/x/resources"
wasmplugins "github.com/cybercongress/go-cyber/v2/plugins"
"github.com/cybercongress/go-cyber/v2/x/dmn"
"github.com/cybercongress/go-cyber/v2/x/resources"

"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec/types"
Expand Down Expand Up @@ -108,46 +108,46 @@ import (

tmproto "github.com/tendermint/tendermint/proto/tendermint/types"

"github.com/cybercongress/go-cyber/utils"
"github.com/cybercongress/go-cyber/x/bandwidth"
"github.com/cybercongress/go-cyber/x/cyberbank"
cyberbankkeeper "github.com/cybercongress/go-cyber/x/cyberbank/keeper"
cyberbanktypes "github.com/cybercongress/go-cyber/x/cyberbank/types"
"github.com/cybercongress/go-cyber/x/graph"

bandwidthkeeper "github.com/cybercongress/go-cyber/x/bandwidth/keeper"
bandwidthtypes "github.com/cybercongress/go-cyber/x/bandwidth/types"
graphkeeper "github.com/cybercongress/go-cyber/x/graph/keeper"
graphtypes "github.com/cybercongress/go-cyber/x/graph/types"
"github.com/cybercongress/go-cyber/x/rank"
rankkeeper "github.com/cybercongress/go-cyber/x/rank/keeper"
ranktypes "github.com/cybercongress/go-cyber/x/rank/types"
"github.com/cybercongress/go-cyber/v2/utils"
"github.com/cybercongress/go-cyber/v2/x/bandwidth"
"github.com/cybercongress/go-cyber/v2/x/cyberbank"
cyberbankkeeper "github.com/cybercongress/go-cyber/v2/x/cyberbank/keeper"
cyberbanktypes "github.com/cybercongress/go-cyber/v2/x/cyberbank/types"
"github.com/cybercongress/go-cyber/v2/x/graph"

bandwidthkeeper "github.com/cybercongress/go-cyber/v2/x/bandwidth/keeper"
bandwidthtypes "github.com/cybercongress/go-cyber/v2/x/bandwidth/types"
graphkeeper "github.com/cybercongress/go-cyber/v2/x/graph/keeper"
graphtypes "github.com/cybercongress/go-cyber/v2/x/graph/types"
"github.com/cybercongress/go-cyber/v2/x/rank"
rankkeeper "github.com/cybercongress/go-cyber/v2/x/rank/keeper"
ranktypes "github.com/cybercongress/go-cyber/v2/x/rank/types"

"github.com/CosmWasm/wasmd/x/wasm"
wasmclient "github.com/CosmWasm/wasmd/x/wasm/client"
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"

bandwidthwasm "github.com/cybercongress/go-cyber/x/bandwidth/wasm"
dmnwasm "github.com/cybercongress/go-cyber/x/dmn/wasm"
graphwasm "github.com/cybercongress/go-cyber/x/graph/wasm"
gridwasm "github.com/cybercongress/go-cyber/x/grid/wasm"
rankwasm "github.com/cybercongress/go-cyber/x/rank/wasm"
resourceswasm "github.com/cybercongress/go-cyber/x/resources/wasm"
bandwidthwasm "github.com/cybercongress/go-cyber/v2/x/bandwidth/wasm"
dmnwasm "github.com/cybercongress/go-cyber/v2/x/dmn/wasm"
graphwasm "github.com/cybercongress/go-cyber/v2/x/graph/wasm"
gridwasm "github.com/cybercongress/go-cyber/v2/x/grid/wasm"
rankwasm "github.com/cybercongress/go-cyber/v2/x/rank/wasm"
resourceswasm "github.com/cybercongress/go-cyber/v2/x/resources/wasm"

grid "github.com/cybercongress/go-cyber/x/grid"
gridkeeper "github.com/cybercongress/go-cyber/x/grid/keeper"
gridtypes "github.com/cybercongress/go-cyber/x/grid/types"
grid "github.com/cybercongress/go-cyber/v2/x/grid"
gridkeeper "github.com/cybercongress/go-cyber/v2/x/grid/keeper"
gridtypes "github.com/cybercongress/go-cyber/v2/x/grid/types"

dmnkeeper "github.com/cybercongress/go-cyber/x/dmn/keeper"
dmntypes "github.com/cybercongress/go-cyber/x/dmn/types"
dmnkeeper "github.com/cybercongress/go-cyber/v2/x/dmn/keeper"
dmntypes "github.com/cybercongress/go-cyber/v2/x/dmn/types"

resourceskeeper "github.com/cybercongress/go-cyber/x/resources/keeper"
resourcestypes "github.com/cybercongress/go-cyber/x/resources/types"
stakingwrap "github.com/cybercongress/go-cyber/x/staking"
resourceskeeper "github.com/cybercongress/go-cyber/v2/x/resources/keeper"
resourcestypes "github.com/cybercongress/go-cyber/v2/x/resources/types"
stakingwrap "github.com/cybercongress/go-cyber/v2/x/staking"

tmjson "github.com/tendermint/tendermint/libs/json"

"github.com/cybercongress/go-cyber/app/params"
"github.com/cybercongress/go-cyber/v2/app/params"

store "github.com/cosmos/cosmos-sdk/store/types"
)
Expand Down
2 changes: 1 addition & 1 deletion app/encoding.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
simappparams "github.com/cosmos/cosmos-sdk/simapp/params"
"github.com/cosmos/cosmos-sdk/std"

"github.com/cybercongress/go-cyber/app/params"
"github.com/cybercongress/go-cyber/v2/app/params"
)

func MakeEncodingConfig() params.EncodingConfig {
Expand Down
6 changes: 3 additions & 3 deletions cmd/cyber/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ import (
"github.com/cosmos/cosmos-sdk/client/config"
"github.com/prometheus/client_golang/prometheus"

"github.com/cybercongress/go-cyber/app"
"github.com/cybercongress/go-cyber/v2/app"

"github.com/CosmWasm/wasmd/x/wasm"
"github.com/cosmos/cosmos-sdk/snapshots"
"github.com/cosmos/cosmos-sdk/x/crisis"

"github.com/cybercongress/go-cyber/x/rank"
"github.com/cybercongress/go-cyber/v2/x/rank"

"github.com/spf13/cast"
"github.com/spf13/cobra"
Expand All @@ -41,7 +41,7 @@ import (

serverconfig "github.com/cosmos/cosmos-sdk/server/config"

"github.com/cybercongress/go-cyber/app/params"
"github.com/cybercongress/go-cyber/v2/app/params"
)

// NewRootCmd creates a new root command for simd. It is called once in the
Expand Down
4 changes: 2 additions & 2 deletions cmd/cyber/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"github.com/cosmos/cosmos-sdk/server"
svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"

"github.com/cybercongress/go-cyber/app"
"github.com/cybercongress/go-cyber/cmd/cyber/cmd"
"github.com/cybercongress/go-cyber/v2/app"
"github.com/cybercongress/go-cyber/v2/cmd/cyber/cmd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/iavltool/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/cybercongress/go-cyber/cmd/iavltool/cmd"
"github.com/cybercongress/go-cyber/v2/cmd/iavltool/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/cybercongress/go-cyber
module github.com/cybercongress/go-cyber/v2

go 1.17

Expand Down
2 changes: 1 addition & 1 deletion plugins/liquidity/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
wasmvmtypes "github.com/CosmWasm/wasmvm/types"
liquiditytypes "github.com/tendermint/liquidity/x/liquidity/types"

"github.com/cybercongress/go-cyber/plugins"
"github.com/cybercongress/go-cyber/v2/plugins"

"github.com/CosmWasm/wasmd/x/wasm"
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down
8 changes: 4 additions & 4 deletions plugins/msg_binding.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"

dmntypes "github.com/cybercongress/go-cyber/x/dmn/types"
graphtypes "github.com/cybercongress/go-cyber/x/graph/types"
gridtypes "github.com/cybercongress/go-cyber/x/grid/types"
resourcestypes "github.com/cybercongress/go-cyber/x/resources/types"
dmntypes "github.com/cybercongress/go-cyber/v2/x/dmn/types"
graphtypes "github.com/cybercongress/go-cyber/v2/x/graph/types"
gridtypes "github.com/cybercongress/go-cyber/v2/x/grid/types"
resourcestypes "github.com/cybercongress/go-cyber/v2/x/resources/types"
)

type WasmMsgParserInterface interface {
Expand Down
10 changes: 5 additions & 5 deletions plugins/query_binding.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"

bandwidthtypes "github.com/cybercongress/go-cyber/x/bandwidth/types"
dmntypes "github.com/cybercongress/go-cyber/x/dmn/types"
graphtypes "github.com/cybercongress/go-cyber/x/graph/types"
gridtypes "github.com/cybercongress/go-cyber/x/grid/types"
ranktypes "github.com/cybercongress/go-cyber/x/rank/types"
bandwidthtypes "github.com/cybercongress/go-cyber/v2/x/bandwidth/types"
dmntypes "github.com/cybercongress/go-cyber/v2/x/dmn/types"
graphtypes "github.com/cybercongress/go-cyber/v2/x/graph/types"
gridtypes "github.com/cybercongress/go-cyber/v2/x/grid/types"
ranktypes "github.com/cybercongress/go-cyber/v2/x/rank/types"
)

type WasmQuerierInterface interface {
Expand Down
4 changes: 2 additions & 2 deletions x/bandwidth/abci.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"github.com/cosmos/cosmos-sdk/telemetry"
sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/cybercongress/go-cyber/x/bandwidth/keeper"
"github.com/cybercongress/go-cyber/x/bandwidth/types"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/keeper"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/types"
)

var accountsToUpdate = make([]sdk.AccAddress, 0)
Expand Down
2 changes: 1 addition & 1 deletion x/bandwidth/client/cli/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
// sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/spf13/cobra"

"github.com/cybercongress/go-cyber/x/bandwidth/types"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/types"
)

func GetQueryCmd() *cobra.Command {
Expand Down
2 changes: 1 addition & 1 deletion x/bandwidth/client/rest/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"github.com/cosmos/cosmos-sdk/types/rest"

"github.com/cybercongress/go-cyber/x/bandwidth/types"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/types"
)

func registerQueryRoutes(cliCtx client.Context, r *mux.Router) {
Expand Down
2 changes: 1 addition & 1 deletion x/bandwidth/keeper/accounts.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package keeper
import (
sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/cybercongress/go-cyber/x/bandwidth/types"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/types"
)

func (bm BandwidthMeter) SetAccountBandwidth(ctx sdk.Context, ab types.NeuronBandwidth) {
Expand Down
2 changes: 1 addition & 1 deletion x/bandwidth/keeper/blocks.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package keeper
import (
sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/cybercongress/go-cyber/x/bandwidth/types"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/types"
)

func (bm BandwidthMeter) SetBlockBandwidth(ctx sdk.Context, blockNumber uint64, value uint64) {
Expand Down
2 changes: 1 addition & 1 deletion x/bandwidth/keeper/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper"

"github.com/cybercongress/go-cyber/x/bandwidth/types"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/types"
)

func InitGenesis(ctx sdk.Context, bm *BandwidthMeter, ak authkeeper.AccountKeeper, data types.GenesisState) {
Expand Down
2 changes: 1 addition & 1 deletion x/bandwidth/keeper/grpc_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"

"github.com/cybercongress/go-cyber/x/bandwidth/types"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/types"
)

var _ types.QueryServer = &BandwidthMeter{}
Expand Down
4 changes: 2 additions & 2 deletions x/bandwidth/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"
"github.com/tendermint/tendermint/libs/log"

"github.com/cybercongress/go-cyber/x/bandwidth/types"
gtypes "github.com/cybercongress/go-cyber/x/graph/types"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/types"
gtypes "github.com/cybercongress/go-cyber/v2/x/graph/types"
)

type BandwidthMeter struct {
Expand Down
2 changes: 1 addition & 1 deletion x/bandwidth/keeper/querier.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
abci "github.com/tendermint/tendermint/abci/types"

"github.com/cybercongress/go-cyber/x/bandwidth/types"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/types"
)

func NewQuerier(bm *BandwidthMeter, legacyQuerierCdc *codec.LegacyAmino) sdk.Querier {
Expand Down
8 changes: 4 additions & 4 deletions x/bandwidth/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ import (
"github.com/grpc-ecosystem/grpc-gateway/runtime"
"github.com/spf13/cobra"

"github.com/cybercongress/go-cyber/x/bandwidth/client/cli"
"github.com/cybercongress/go-cyber/x/bandwidth/client/rest"
"github.com/cybercongress/go-cyber/x/bandwidth/keeper"
"github.com/cybercongress/go-cyber/x/bandwidth/types"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/client/cli"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/client/rest"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/keeper"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/types"

sdk "github.com/cosmos/cosmos-sdk/types"
abci "github.com/tendermint/tendermint/abci/types"
Expand Down
2 changes: 1 addition & 1 deletion x/bandwidth/wasm/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

wasmvmtypes "github.com/CosmWasm/wasmvm/types"

"github.com/cybercongress/go-cyber/x/bandwidth/keeper"
"github.com/cybercongress/go-cyber/v2/x/bandwidth/keeper"
)

var _ QuerierInterface = Querier{}
Expand Down
4 changes: 2 additions & 2 deletions x/cyberbank/abci.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"github.com/cosmos/cosmos-sdk/telemetry"
sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/cybercongress/go-cyber/x/cyberbank/keeper"
"github.com/cybercongress/go-cyber/x/cyberbank/types"
"github.com/cybercongress/go-cyber/v2/x/cyberbank/keeper"
"github.com/cybercongress/go-cyber/v2/x/cyberbank/types"
)

func EndBlocker(ctx sdk.Context, k *keeper.IndexedKeeper) {
Expand Down
2 changes: 1 addition & 1 deletion x/cyberbank/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
"github.com/tendermint/tendermint/libs/log"

"github.com/cybercongress/go-cyber/x/cyberbank/types"
"github.com/cybercongress/go-cyber/v2/x/cyberbank/types"
)

type IndexedKeeper struct {
Expand Down
4 changes: 2 additions & 2 deletions x/cyberbank/keeper/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
bank "github.com/cosmos/cosmos-sdk/x/bank/keeper"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"

ctypes "github.com/cybercongress/go-cyber/types"
"github.com/cybercongress/go-cyber/x/cyberbank/types"
ctypes "github.com/cybercongress/go-cyber/v2/types"
"github.com/cybercongress/go-cyber/v2/x/cyberbank/types"
)

var _ bank.Keeper = (*Proxy)(nil)
Expand Down
4 changes: 2 additions & 2 deletions x/cyberbank/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"

"github.com/cybercongress/go-cyber/x/cyberbank/keeper"
"github.com/cybercongress/go-cyber/x/cyberbank/types"
"github.com/cybercongress/go-cyber/v2/x/cyberbank/keeper"
"github.com/cybercongress/go-cyber/v2/x/cyberbank/types"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions x/dmn/abci.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"github.com/cosmos/cosmos-sdk/telemetry"
sdk "github.com/cosmos/cosmos-sdk/types"

"github.com/cybercongress/go-cyber/x/dmn/keeper"
"github.com/cybercongress/go-cyber/x/dmn/types"
"github.com/cybercongress/go-cyber/v2/x/dmn/keeper"
"github.com/cybercongress/go-cyber/v2/x/dmn/types"
)

func BeginBlock(ctx sdk.Context, k keeper.Keeper) {
Expand Down
2 changes: 1 addition & 1 deletion x/dmn/client/cli/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

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

"github.com/cybercongress/go-cyber/x/dmn/types"
"github.com/cybercongress/go-cyber/v2/x/dmn/types"
)

func GetQueryCmd() *cobra.Command {
Expand Down
Loading