Skip to content

Commit b517af1

Browse files
committed
version bumps & upgrade handler
1 parent 65ca932 commit b517af1

File tree

225 files changed

+564
-469
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

225 files changed

+564
-469
lines changed

app/ante.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ import (
2020
govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper"
2121
stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"
2222

23-
decorators "github.com/CosmosContracts/juno/v26/app/decorators"
24-
feepayante "github.com/CosmosContracts/juno/v26/x/feepay/ante"
25-
feepaykeeper "github.com/CosmosContracts/juno/v26/x/feepay/keeper"
26-
feeshareante "github.com/CosmosContracts/juno/v26/x/feeshare/ante"
27-
feesharekeeper "github.com/CosmosContracts/juno/v26/x/feeshare/keeper"
28-
globalfeeante "github.com/CosmosContracts/juno/v26/x/globalfee/ante"
29-
globalfeekeeper "github.com/CosmosContracts/juno/v26/x/globalfee/keeper"
23+
decorators "github.com/CosmosContracts/juno/v27/app/decorators"
24+
feepayante "github.com/CosmosContracts/juno/v27/x/feepay/ante"
25+
feepaykeeper "github.com/CosmosContracts/juno/v27/x/feepay/keeper"
26+
feeshareante "github.com/CosmosContracts/juno/v27/x/feeshare/ante"
27+
feesharekeeper "github.com/CosmosContracts/juno/v27/x/feeshare/keeper"
28+
globalfeeante "github.com/CosmosContracts/juno/v27/x/globalfee/ante"
29+
globalfeekeeper "github.com/CosmosContracts/juno/v27/x/globalfee/keeper"
3030
)
3131

3232
// Lower back to 1 mil after https://github.com/cosmos/relayer/issues/1255

app/app.go

Lines changed: 29 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -64,33 +64,34 @@ import (
6464
upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client"
6565
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
6666

67-
"github.com/CosmosContracts/juno/v26/app/keepers"
68-
"github.com/CosmosContracts/juno/v26/app/openapiconsole"
69-
upgrades "github.com/CosmosContracts/juno/v26/app/upgrades"
70-
testnetV18alpha2 "github.com/CosmosContracts/juno/v26/app/upgrades/testnet/v18.0.0-alpha.2"
71-
testnetV18alpha3 "github.com/CosmosContracts/juno/v26/app/upgrades/testnet/v18.0.0-alpha.3"
72-
testnetV18alpha4 "github.com/CosmosContracts/juno/v26/app/upgrades/testnet/v18.0.0-alpha.4"
73-
testnetV19alpha3 "github.com/CosmosContracts/juno/v26/app/upgrades/testnet/v19.0.0-alpha.3"
74-
testnetV21alpha1 "github.com/CosmosContracts/juno/v26/app/upgrades/testnet/v21.0.0-alpha.1"
75-
testnetV22alpha1 "github.com/CosmosContracts/juno/v26/app/upgrades/testnet/v22.0.0-alpha.1"
76-
testnetV23alpha1 "github.com/CosmosContracts/juno/v26/app/upgrades/testnet/v23.0.0-alpha.1"
77-
v10 "github.com/CosmosContracts/juno/v26/app/upgrades/v10"
78-
v11 "github.com/CosmosContracts/juno/v26/app/upgrades/v11"
79-
v12 "github.com/CosmosContracts/juno/v26/app/upgrades/v12"
80-
v13 "github.com/CosmosContracts/juno/v26/app/upgrades/v13"
81-
v14 "github.com/CosmosContracts/juno/v26/app/upgrades/v14"
82-
v15 "github.com/CosmosContracts/juno/v26/app/upgrades/v15"
83-
v16 "github.com/CosmosContracts/juno/v26/app/upgrades/v16"
84-
v17 "github.com/CosmosContracts/juno/v26/app/upgrades/v17"
85-
v18 "github.com/CosmosContracts/juno/v26/app/upgrades/v18"
86-
v19 "github.com/CosmosContracts/juno/v26/app/upgrades/v19"
87-
v21 "github.com/CosmosContracts/juno/v26/app/upgrades/v21"
88-
v22 "github.com/CosmosContracts/juno/v26/app/upgrades/v22"
89-
v23 "github.com/CosmosContracts/juno/v26/app/upgrades/v23"
90-
v24 "github.com/CosmosContracts/juno/v26/app/upgrades/v24"
91-
v25 "github.com/CosmosContracts/juno/v26/app/upgrades/v25"
92-
v26 "github.com/CosmosContracts/juno/v26/app/upgrades/v26"
93-
"github.com/CosmosContracts/juno/v26/docs"
67+
"github.com/CosmosContracts/juno/v27/app/keepers"
68+
"github.com/CosmosContracts/juno/v27/app/openapiconsole"
69+
upgrades "github.com/CosmosContracts/juno/v27/app/upgrades"
70+
testnetV18alpha2 "github.com/CosmosContracts/juno/v27/app/upgrades/testnet/v18.0.0-alpha.2"
71+
testnetV18alpha3 "github.com/CosmosContracts/juno/v27/app/upgrades/testnet/v18.0.0-alpha.3"
72+
testnetV18alpha4 "github.com/CosmosContracts/juno/v27/app/upgrades/testnet/v18.0.0-alpha.4"
73+
testnetV19alpha3 "github.com/CosmosContracts/juno/v27/app/upgrades/testnet/v19.0.0-alpha.3"
74+
testnetV21alpha1 "github.com/CosmosContracts/juno/v27/app/upgrades/testnet/v21.0.0-alpha.1"
75+
testnetV22alpha1 "github.com/CosmosContracts/juno/v27/app/upgrades/testnet/v22.0.0-alpha.1"
76+
testnetV23alpha1 "github.com/CosmosContracts/juno/v27/app/upgrades/testnet/v23.0.0-alpha.1"
77+
v10 "github.com/CosmosContracts/juno/v27/app/upgrades/v10"
78+
v11 "github.com/CosmosContracts/juno/v27/app/upgrades/v11"
79+
v12 "github.com/CosmosContracts/juno/v27/app/upgrades/v12"
80+
v13 "github.com/CosmosContracts/juno/v27/app/upgrades/v13"
81+
v14 "github.com/CosmosContracts/juno/v27/app/upgrades/v14"
82+
v15 "github.com/CosmosContracts/juno/v27/app/upgrades/v15"
83+
v16 "github.com/CosmosContracts/juno/v27/app/upgrades/v16"
84+
v17 "github.com/CosmosContracts/juno/v27/app/upgrades/v17"
85+
v18 "github.com/CosmosContracts/juno/v27/app/upgrades/v18"
86+
v19 "github.com/CosmosContracts/juno/v27/app/upgrades/v19"
87+
v21 "github.com/CosmosContracts/juno/v27/app/upgrades/v21"
88+
v22 "github.com/CosmosContracts/juno/v27/app/upgrades/v22"
89+
v23 "github.com/CosmosContracts/juno/v27/app/upgrades/v23"
90+
v24 "github.com/CosmosContracts/juno/v27/app/upgrades/v24"
91+
v25 "github.com/CosmosContracts/juno/v27/app/upgrades/v25"
92+
v26 "github.com/CosmosContracts/juno/v27/app/upgrades/v26"
93+
v27 "github.com/CosmosContracts/juno/v27/app/upgrades/v27"
94+
"github.com/CosmosContracts/juno/v27/docs"
9495
)
9596

9697
const (
@@ -137,6 +138,7 @@ var (
137138
v24.Upgrade,
138139
v25.Upgrade,
139140
v26.Upgrade,
141+
v27.Upgrade,
140142
}
141143
)
142144

app/apptesting/test_suite.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ import (
3535
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
3636
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
3737

38-
"github.com/CosmosContracts/juno/v26/app"
39-
appparams "github.com/CosmosContracts/juno/v26/app/params"
38+
"github.com/CosmosContracts/juno/v27/app"
39+
appparams "github.com/CosmosContracts/juno/v27/app/params"
4040
)
4141

4242
type KeeperTestHelper struct {

app/decorators/change_rate_decorator_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ import (
1919
stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"
2020
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
2121

22-
"github.com/CosmosContracts/juno/v26/app"
23-
decorators "github.com/CosmosContracts/juno/v26/app/decorators"
24-
appparams "github.com/CosmosContracts/juno/v26/app/params"
22+
"github.com/CosmosContracts/juno/v27/app"
23+
decorators "github.com/CosmosContracts/juno/v27/app/decorators"
24+
appparams "github.com/CosmosContracts/juno/v27/app/params"
2525
)
2626

2727
// Define an empty ante handle

app/encoding.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package app
33
import (
44
"github.com/cosmos/cosmos-sdk/std"
55

6-
"github.com/CosmosContracts/juno/v26/app/params"
6+
"github.com/CosmosContracts/juno/v27/app/params"
77
)
88

99
// MakeEncodingConfig creates an EncodingConfig for testing

app/keepers/keepers.go

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -89,25 +89,25 @@ import (
8989
upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper"
9090
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
9191

92-
junoburn "github.com/CosmosContracts/juno/v26/x/burn"
93-
clockkeeper "github.com/CosmosContracts/juno/v26/x/clock/keeper"
94-
clocktypes "github.com/CosmosContracts/juno/v26/x/clock/types"
95-
cwhookskeeper "github.com/CosmosContracts/juno/v26/x/cw-hooks/keeper"
96-
cwhookstypes "github.com/CosmosContracts/juno/v26/x/cw-hooks/types"
97-
dripkeeper "github.com/CosmosContracts/juno/v26/x/drip/keeper"
98-
driptypes "github.com/CosmosContracts/juno/v26/x/drip/types"
99-
feepaykeeper "github.com/CosmosContracts/juno/v26/x/feepay/keeper"
100-
feepaytypes "github.com/CosmosContracts/juno/v26/x/feepay/types"
101-
feesharekeeper "github.com/CosmosContracts/juno/v26/x/feeshare/keeper"
102-
feesharetypes "github.com/CosmosContracts/juno/v26/x/feeshare/types"
103-
"github.com/CosmosContracts/juno/v26/x/globalfee"
104-
globalfeekeeper "github.com/CosmosContracts/juno/v26/x/globalfee/keeper"
105-
globalfeetypes "github.com/CosmosContracts/juno/v26/x/globalfee/types"
106-
mintkeeper "github.com/CosmosContracts/juno/v26/x/mint/keeper"
107-
minttypes "github.com/CosmosContracts/juno/v26/x/mint/types"
108-
"github.com/CosmosContracts/juno/v26/x/tokenfactory/bindings"
109-
tokenfactorykeeper "github.com/CosmosContracts/juno/v26/x/tokenfactory/keeper"
110-
tokenfactorytypes "github.com/CosmosContracts/juno/v26/x/tokenfactory/types"
92+
junoburn "github.com/CosmosContracts/juno/v27/x/burn"
93+
clockkeeper "github.com/CosmosContracts/juno/v27/x/clock/keeper"
94+
clocktypes "github.com/CosmosContracts/juno/v27/x/clock/types"
95+
cwhookskeeper "github.com/CosmosContracts/juno/v27/x/cw-hooks/keeper"
96+
cwhookstypes "github.com/CosmosContracts/juno/v27/x/cw-hooks/types"
97+
dripkeeper "github.com/CosmosContracts/juno/v27/x/drip/keeper"
98+
driptypes "github.com/CosmosContracts/juno/v27/x/drip/types"
99+
feepaykeeper "github.com/CosmosContracts/juno/v27/x/feepay/keeper"
100+
feepaytypes "github.com/CosmosContracts/juno/v27/x/feepay/types"
101+
feesharekeeper "github.com/CosmosContracts/juno/v27/x/feeshare/keeper"
102+
feesharetypes "github.com/CosmosContracts/juno/v27/x/feeshare/types"
103+
"github.com/CosmosContracts/juno/v27/x/globalfee"
104+
globalfeekeeper "github.com/CosmosContracts/juno/v27/x/globalfee/keeper"
105+
globalfeetypes "github.com/CosmosContracts/juno/v27/x/globalfee/types"
106+
mintkeeper "github.com/CosmosContracts/juno/v27/x/mint/keeper"
107+
minttypes "github.com/CosmosContracts/juno/v27/x/mint/types"
108+
"github.com/CosmosContracts/juno/v27/x/tokenfactory/bindings"
109+
tokenfactorykeeper "github.com/CosmosContracts/juno/v27/x/tokenfactory/keeper"
110+
tokenfactorytypes "github.com/CosmosContracts/juno/v27/x/tokenfactory/types"
111111
)
112112

113113
var (

app/keepers/keys.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ import (
3232
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
3333
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
3434

35-
clocktypes "github.com/CosmosContracts/juno/v26/x/clock/types"
36-
cwhookstypes "github.com/CosmosContracts/juno/v26/x/cw-hooks/types"
37-
driptypes "github.com/CosmosContracts/juno/v26/x/drip/types"
38-
feepaytypes "github.com/CosmosContracts/juno/v26/x/feepay/types"
39-
feesharetypes "github.com/CosmosContracts/juno/v26/x/feeshare/types"
40-
globalfeetypes "github.com/CosmosContracts/juno/v26/x/globalfee/types"
41-
minttypes "github.com/CosmosContracts/juno/v26/x/mint/types"
42-
tokenfactorytypes "github.com/CosmosContracts/juno/v26/x/tokenfactory/types"
35+
clocktypes "github.com/CosmosContracts/juno/v27/x/clock/types"
36+
cwhookstypes "github.com/CosmosContracts/juno/v27/x/cw-hooks/types"
37+
driptypes "github.com/CosmosContracts/juno/v27/x/drip/types"
38+
feepaytypes "github.com/CosmosContracts/juno/v27/x/feepay/types"
39+
feesharetypes "github.com/CosmosContracts/juno/v27/x/feeshare/types"
40+
globalfeetypes "github.com/CosmosContracts/juno/v27/x/globalfee/types"
41+
minttypes "github.com/CosmosContracts/juno/v27/x/mint/types"
42+
tokenfactorytypes "github.com/CosmosContracts/juno/v27/x/tokenfactory/types"
4343
)
4444

4545
func (appKeepers *AppKeepers) GenerateKeys() {

app/modules.go

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -61,21 +61,21 @@ import (
6161
"github.com/cosmos/cosmos-sdk/x/upgrade"
6262
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
6363

64-
encparams "github.com/CosmosContracts/juno/v26/app/params"
65-
"github.com/CosmosContracts/juno/v26/x/clock"
66-
clocktypes "github.com/CosmosContracts/juno/v26/x/clock/types"
67-
cwhooks "github.com/CosmosContracts/juno/v26/x/cw-hooks"
68-
"github.com/CosmosContracts/juno/v26/x/drip"
69-
driptypes "github.com/CosmosContracts/juno/v26/x/drip/types"
70-
feepay "github.com/CosmosContracts/juno/v26/x/feepay"
71-
feepaytypes "github.com/CosmosContracts/juno/v26/x/feepay/types"
72-
feeshare "github.com/CosmosContracts/juno/v26/x/feeshare"
73-
feesharetypes "github.com/CosmosContracts/juno/v26/x/feeshare/types"
74-
"github.com/CosmosContracts/juno/v26/x/globalfee"
75-
"github.com/CosmosContracts/juno/v26/x/mint"
76-
minttypes "github.com/CosmosContracts/juno/v26/x/mint/types"
77-
"github.com/CosmosContracts/juno/v26/x/tokenfactory"
78-
tokenfactorytypes "github.com/CosmosContracts/juno/v26/x/tokenfactory/types"
64+
encparams "github.com/CosmosContracts/juno/v27/app/params"
65+
"github.com/CosmosContracts/juno/v27/x/clock"
66+
clocktypes "github.com/CosmosContracts/juno/v27/x/clock/types"
67+
cwhooks "github.com/CosmosContracts/juno/v27/x/cw-hooks"
68+
"github.com/CosmosContracts/juno/v27/x/drip"
69+
driptypes "github.com/CosmosContracts/juno/v27/x/drip/types"
70+
feepay "github.com/CosmosContracts/juno/v27/x/feepay"
71+
feepaytypes "github.com/CosmosContracts/juno/v27/x/feepay/types"
72+
feeshare "github.com/CosmosContracts/juno/v27/x/feeshare"
73+
feesharetypes "github.com/CosmosContracts/juno/v27/x/feeshare/types"
74+
"github.com/CosmosContracts/juno/v27/x/globalfee"
75+
"github.com/CosmosContracts/juno/v27/x/mint"
76+
minttypes "github.com/CosmosContracts/juno/v27/x/mint/types"
77+
"github.com/CosmosContracts/juno/v27/x/tokenfactory"
78+
tokenfactorytypes "github.com/CosmosContracts/juno/v27/x/tokenfactory/types"
7979
)
8080

8181
// ModuleBasics defines the module BasicManager is in charge of setting up basic,

app/test_helpers.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ import (
3232
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
3333
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
3434

35-
apphelpers "github.com/CosmosContracts/juno/v26/app/helpers"
36-
appparams "github.com/CosmosContracts/juno/v26/app/params"
35+
apphelpers "github.com/CosmosContracts/juno/v27/app/helpers"
36+
appparams "github.com/CosmosContracts/juno/v27/app/params"
3737
)
3838

3939
// SimAppChainID hardcoded chainID for simulation

app/upgrades/testnet/v18.0.0-alpha.2/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package v18
33
import (
44
store "github.com/cosmos/cosmos-sdk/store/types"
55

6-
"github.com/CosmosContracts/juno/v26/app/upgrades"
6+
"github.com/CosmosContracts/juno/v27/app/upgrades"
77
)
88

99
// UpgradeName defines the on-chain upgrade name for the upgrade.

0 commit comments

Comments
 (0)