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 SDK version and Juno v7 -> v8 #229

Merged
merged 1 commit into from
Jul 7, 2022
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/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ import (
tmos "github.com/tendermint/tendermint/libs/os"
dbm "github.com/tendermint/tm-db"

"github.com/CosmosContracts/juno/v7/docs"
"github.com/CosmosContracts/juno/v7/x/mint"
mintkeeper "github.com/CosmosContracts/juno/v7/x/mint/keeper"
minttypes "github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/docs"
"github.com/CosmosContracts/juno/v8/x/mint"
mintkeeper "github.com/CosmosContracts/juno/v8/x/mint/keeper"
minttypes "github.com/CosmosContracts/juno/v8/x/mint/types"
"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/client/grpc/tmservice"
"github.com/cosmos/cosmos-sdk/client/rpc"
Expand Down
2 changes: 1 addition & 1 deletion app/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
dbm "github.com/tendermint/tm-db"

// junoapp "github.com/CosmosContracts/juno/v7/app"
// junoapp "github.com/CosmosContracts/juno/v8/app"
"github.com/cosmos/cosmos-sdk/simapp"

sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down
2 changes: 1 addition & 1 deletion cmd/junod/genwasm.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/CosmosContracts/juno/v7/app"
"github.com/CosmosContracts/juno/v8/app"
"github.com/cosmos/cosmos-sdk/client"
"github.com/spf13/cobra"
"github.com/ignite-hq/cli/ignite/pkg/cosmoscmd"
Expand Down
2 changes: 1 addition & 1 deletion cmd/junod/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"os"

"github.com/CosmosContracts/juno/v7/app"
"github.com/CosmosContracts/juno/v8/app"
svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"
"github.com/ignite-hq/cli/ignite/pkg/cosmoscmd"
)
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module github.com/CosmosContracts/juno/v7
module github.com/CosmosContracts/juno/v8

go 1.18

require (
github.com/CosmWasm/wasmd v0.27.0
github.com/cosmos/cosmos-sdk v0.45.4
github.com/cosmos/cosmos-sdk v0.45.6
github.com/cosmos/ibc-go/v3 v3.0.0
github.com/gogo/protobuf v1.3.3
github.com/golang/protobuf v1.5.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -384,8 +384,8 @@ github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfc
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA=
github.com/cosmos/btcutil v1.0.4 h1:n7C2ngKXo7UC9gNyMNLbzqz7Asuf+7Qv4gnX/rOdQ44=
github.com/cosmos/btcutil v1.0.4/go.mod h1:Ffqc8Hn6TJUdDgHBwIZLtrLQC1KdJ9jGJl/TvgUaxbU=
github.com/cosmos/cosmos-sdk v0.45.4 h1:eStDAhJdMY8n5arbBRe+OwpNeBSunxSBHp1g55ulfdA=
github.com/cosmos/cosmos-sdk v0.45.4/go.mod h1:WOqtDxN3eCCmnYLVla10xG7lEXkFjpTaqm2a2WasgCc=
github.com/cosmos/cosmos-sdk v0.45.6 h1:bnYLOcDp0cKWMLeUTTJIttq6xxRep52ulPxXC3BCfuQ=
github.com/cosmos/cosmos-sdk v0.45.6/go.mod h1:bPeeVMEtVvH3y3xAGHVbK+/CZlpaazzh77hG8ZrcJpI=
github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y=
github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY=
github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw=
Expand Down
2 changes: 1 addition & 1 deletion testutil/network/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
tmrand "github.com/tendermint/tendermint/libs/rand"
tmdb "github.com/tendermint/tm-db"

"github.com/CosmosContracts/juno/v7/app"
"github.com/CosmosContracts/juno/v8/app"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion testutil/simapp/simapp.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
tmtypes "github.com/tendermint/tendermint/types"
tmdb "github.com/tendermint/tm-db"

"github.com/CosmosContracts/juno/v7/app"
"github.com/CosmosContracts/juno/v8/app"
)

// New creates application instance with in-memory database and disabled logging.
Expand Down
4 changes: 2 additions & 2 deletions x/mint/abci.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package mint
import (
"time"

"github.com/CosmosContracts/juno/v7/x/mint/keeper"
"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/x/mint/keeper"
"github.com/CosmosContracts/juno/v8/x/mint/types"
"github.com/cosmos/cosmos-sdk/telemetry"
sdk "github.com/cosmos/cosmos-sdk/types"
)
Expand Down
2 changes: 1 addition & 1 deletion x/mint/client/cli/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/spf13/cobra"

"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/x/mint/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"
)
Expand Down
4 changes: 2 additions & 2 deletions x/mint/client/rest/grpc_query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"github.com/gogo/protobuf/proto"
"github.com/stretchr/testify/suite"

"github.com/CosmosContracts/juno/v7/testutil/network"
minttypes "github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/testutil/network"
minttypes "github.com/CosmosContracts/juno/v8/x/mint/types"
)

type IntegrationTestSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion x/mint/client/rest/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/gorilla/mux"

"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/x/mint/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/types/rest"
)
Expand Down
2 changes: 1 addition & 1 deletion x/mint/client/testutil/cli_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package testutil
import (
"testing"

"github.com/CosmosContracts/juno/v7/testutil/network"
"github.com/CosmosContracts/juno/v8/testutil/network"

"github.com/stretchr/testify/suite"
)
Expand Down
6 changes: 3 additions & 3 deletions x/mint/client/testutil/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"github.com/stretchr/testify/suite"
tmcli "github.com/tendermint/tendermint/libs/cli"

"github.com/CosmosContracts/juno/v7/testutil/network"
"github.com/CosmosContracts/juno/v7/x/mint/client/cli"
minttypes "github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/testutil/network"
"github.com/CosmosContracts/juno/v8/x/mint/client/cli"
minttypes "github.com/CosmosContracts/juno/v8/x/mint/types"
"github.com/cosmos/cosmos-sdk/client/flags"
clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli"
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down
4 changes: 2 additions & 2 deletions x/mint/genesis.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package mint

import (
"github.com/CosmosContracts/juno/v7/x/mint/keeper"
"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/x/mint/keeper"
"github.com/CosmosContracts/juno/v8/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
)

Expand Down
2 changes: 1 addition & 1 deletion x/mint/keeper/grpc_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package keeper
import (
"context"

"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
)

Expand Down
4 changes: 2 additions & 2 deletions x/mint/keeper/grpc_query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/stretchr/testify/suite"
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"

"github.com/CosmosContracts/juno/v7/app"
"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/app"
"github.com/CosmosContracts/juno/v8/x/mint/types"
"github.com/cosmos/cosmos-sdk/baseapp"
sdk "github.com/cosmos/cosmos-sdk/types"
)
Expand Down
4 changes: 2 additions & 2 deletions x/mint/keeper/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
dbm "github.com/tendermint/tm-db"

junoapp "github.com/CosmosContracts/juno/v7/app"
junoapp "github.com/CosmosContracts/juno/v8/app"
"github.com/cosmos/cosmos-sdk/simapp"

"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
)

Expand Down
2 changes: 1 addition & 1 deletion x/mint/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package keeper
import (
"github.com/tendermint/tendermint/libs/log"

"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/x/mint/types"
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
Expand Down
2 changes: 1 addition & 1 deletion x/mint/keeper/querier.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package keeper
import (
abci "github.com/tendermint/tendermint/abci/types"

"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/x/mint/types"
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
Expand Down
4 changes: 2 additions & 2 deletions x/mint/keeper/querier_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/stretchr/testify/require"

keep "github.com/CosmosContracts/juno/v7/x/mint/keeper"
"github.com/CosmosContracts/juno/v7/x/mint/types"
keep "github.com/CosmosContracts/juno/v8/x/mint/keeper"
"github.com/CosmosContracts/juno/v8/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"

abci "github.com/tendermint/tendermint/abci/types"
Expand Down
10 changes: 5 additions & 5 deletions x/mint/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ import (
"github.com/spf13/cobra"
abci "github.com/tendermint/tendermint/abci/types"

"github.com/CosmosContracts/juno/v7/x/mint/client/cli"
"github.com/CosmosContracts/juno/v7/x/mint/client/rest"
"github.com/CosmosContracts/juno/v7/x/mint/keeper"
"github.com/CosmosContracts/juno/v7/x/mint/simulation"
"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/x/mint/client/cli"
"github.com/CosmosContracts/juno/v8/x/mint/client/rest"
"github.com/CosmosContracts/juno/v8/x/mint/keeper"
"github.com/CosmosContracts/juno/v8/x/mint/simulation"
"github.com/CosmosContracts/juno/v8/x/mint/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
Expand Down
2 changes: 1 addition & 1 deletion x/mint/module_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
abcitypes "github.com/tendermint/tendermint/abci/types"
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"

"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/x/mint/types"
"github.com/cosmos/cosmos-sdk/simapp"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
)
Expand Down
2 changes: 1 addition & 1 deletion x/mint/simulation/decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"fmt"

"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/x/mint/types"
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/types/kv"
)
Expand Down
6 changes: 3 additions & 3 deletions x/mint/simulation/decoder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"github.com/stretchr/testify/require"
"github.com/ignite-hq/cli/ignite/pkg/cosmoscmd"

"github.com/CosmosContracts/juno/v7/app"
"github.com/CosmosContracts/juno/v7/x/mint/simulation"
"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/app"
"github.com/CosmosContracts/juno/v8/x/mint/simulation"
"github.com/CosmosContracts/juno/v8/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/kv"
)
Expand Down
2 changes: 1 addition & 1 deletion x/mint/simulation/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"fmt"
"math/rand"

"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
)
Expand Down
4 changes: 2 additions & 2 deletions x/mint/simulation/genesis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/stretchr/testify/require"

"github.com/CosmosContracts/juno/v7/x/mint/simulation"
"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/x/mint/simulation"
"github.com/CosmosContracts/juno/v8/x/mint/types"
"github.com/cosmos/cosmos-sdk/codec"
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down
2 changes: 1 addition & 1 deletion x/mint/simulation/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

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

"github.com/CosmosContracts/juno/v7/x/mint/types"
"github.com/CosmosContracts/juno/v8/x/mint/types"
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
)

Expand Down
2 changes: 1 addition & 1 deletion x/mint/simulation/params_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/stretchr/testify/require"

"github.com/CosmosContracts/juno/v7/x/mint/simulation"
"github.com/CosmosContracts/juno/v8/x/mint/simulation"
)

func TestParamChangest(t *testing.T) {
Expand Down