Skip to content

Commit ba659e1

Browse files
authored
fix: update module naming cosmos -> allinbits (#14)
* fix: update module naming cosmos -> allinbits * chore: update proto gen
1 parent 82085b3 commit ba659e1

File tree

159 files changed

+1040
-1034
lines changed

Some content is hidden

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

159 files changed

+1040
-1034
lines changed

app/consumer-democracy/ante/forbidden_proposals_ante_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
minttypes "github.com/cosmos/cosmos-sdk/x/mint/types"
1414
"github.com/cosmos/cosmos-sdk/x/params/types/proposal"
1515

16-
app "github.com/cosmos/interchain-security/v5/app/consumer-democracy"
17-
"github.com/cosmos/interchain-security/v5/app/consumer-democracy/ante"
16+
app "github.com/allinbits/interchain-security/app/consumer-democracy"
17+
"github.com/allinbits/interchain-security/app/consumer-democracy/ante"
1818
)
1919

2020
// in SDKv47 parameter updates full params object is required

app/consumer-democracy/ante_handler.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
1111
"github.com/cosmos/cosmos-sdk/x/auth/ante"
1212

13-
democracyante "github.com/cosmos/interchain-security/v5/app/consumer-democracy/ante"
14-
consumerante "github.com/cosmos/interchain-security/v5/app/consumer/ante"
15-
ibcconsumerkeeper "github.com/cosmos/interchain-security/v5/x/ccv/consumer/keeper"
13+
democracyante "github.com/allinbits/interchain-security/app/consumer-democracy/ante"
14+
consumerante "github.com/allinbits/interchain-security/app/consumer/ante"
15+
ibcconsumerkeeper "github.com/allinbits/interchain-security/x/ccv/consumer/keeper"
1616
)
1717

1818
// HandlerOptions extend the SDK's AnteHandler options by requiring the IBC

app/consumer-democracy/app.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -106,15 +106,15 @@ import (
106106
tmos "github.com/cometbft/cometbft/libs/os"
107107
dbm "github.com/cosmos/cosmos-db"
108108

109-
appencoding "github.com/cosmos/interchain-security/v5/app/encoding"
110-
testutil "github.com/cosmos/interchain-security/v5/testutil/integration"
111-
consumer "github.com/cosmos/interchain-security/v5/x/ccv/consumer"
112-
consumerkeeper "github.com/cosmos/interchain-security/v5/x/ccv/consumer/keeper"
113-
consumertypes "github.com/cosmos/interchain-security/v5/x/ccv/consumer/types"
114-
ccvdistr "github.com/cosmos/interchain-security/v5/x/ccv/democracy/distribution"
115-
ccvgov "github.com/cosmos/interchain-security/v5/x/ccv/democracy/governance"
116-
ccvstaking "github.com/cosmos/interchain-security/v5/x/ccv/democracy/staking"
117-
ccvtypes "github.com/cosmos/interchain-security/v5/x/ccv/types"
109+
appencoding "github.com/allinbits/interchain-security/app/encoding"
110+
testutil "github.com/allinbits/interchain-security/testutil/integration"
111+
consumer "github.com/allinbits/interchain-security/x/ccv/consumer"
112+
consumerkeeper "github.com/allinbits/interchain-security/x/ccv/consumer/keeper"
113+
consumertypes "github.com/allinbits/interchain-security/x/ccv/consumer/types"
114+
ccvdistr "github.com/allinbits/interchain-security/x/ccv/democracy/distribution"
115+
ccvgov "github.com/allinbits/interchain-security/x/ccv/democracy/governance"
116+
ccvstaking "github.com/allinbits/interchain-security/x/ccv/democracy/staking"
117+
ccvtypes "github.com/allinbits/interchain-security/x/ccv/types"
118118
)
119119

120120
const (

app/consumer/ante/disabled_modules_ante_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
1313
slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types"
1414

15-
"github.com/cosmos/interchain-security/v5/app/consumer/ante"
16-
appencoding "github.com/cosmos/interchain-security/v5/app/encoding"
15+
"github.com/allinbits/interchain-security/app/consumer/ante"
16+
appencoding "github.com/allinbits/interchain-security/app/encoding"
1717
)
1818

1919
func TestDisabledModulesDecorator(t *testing.T) {

app/consumer/ante/msg_filter_ante_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
sdk "github.com/cosmos/cosmos-sdk/types"
1010
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
1111

12-
"github.com/cosmos/interchain-security/v5/app/consumer/ante"
13-
appencoding "github.com/cosmos/interchain-security/v5/app/encoding"
12+
"github.com/allinbits/interchain-security/app/consumer/ante"
13+
appencoding "github.com/allinbits/interchain-security/app/encoding"
1414
)
1515

1616
type consumerKeeper struct {

app/consumer/ante_handler.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
1111
"github.com/cosmos/cosmos-sdk/x/auth/ante"
1212

13-
consumerante "github.com/cosmos/interchain-security/v5/app/consumer/ante"
14-
ibcconsumerkeeper "github.com/cosmos/interchain-security/v5/x/ccv/consumer/keeper"
13+
consumerante "github.com/allinbits/interchain-security/app/consumer/ante"
14+
ibcconsumerkeeper "github.com/allinbits/interchain-security/x/ccv/consumer/keeper"
1515
)
1616

1717
// HandlerOptions extend the SDK's AnteHandler options by requiring the IBC

app/consumer/app.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ import (
4444
"github.com/cosmos/cosmos-sdk/client/grpc/cmtservice"
4545
nodeservice "github.com/cosmos/cosmos-sdk/client/grpc/node"
4646

47+
"github.com/allinbits/interchain-security/app/common"
4748
"github.com/cosmos/cosmos-sdk/codec"
4849
"github.com/cosmos/cosmos-sdk/codec/types"
4950
"github.com/cosmos/cosmos-sdk/runtime"
@@ -81,7 +82,6 @@ import (
8182
"github.com/cosmos/cosmos-sdk/x/slashing"
8283
slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper"
8384
slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types"
84-
"github.com/cosmos/interchain-security/v5/app/common"
8585

8686
// IBC v10: Capability module removed
8787

@@ -91,12 +91,12 @@ import (
9191
tmos "github.com/cometbft/cometbft/libs/os"
9292
dbm "github.com/cosmos/cosmos-db"
9393

94-
appencoding "github.com/cosmos/interchain-security/v5/app/encoding"
95-
testutil "github.com/cosmos/interchain-security/v5/testutil/integration"
96-
ibcconsumer "github.com/cosmos/interchain-security/v5/x/ccv/consumer"
97-
ibcconsumerkeeper "github.com/cosmos/interchain-security/v5/x/ccv/consumer/keeper"
98-
ibcconsumertypes "github.com/cosmos/interchain-security/v5/x/ccv/consumer/types"
99-
ccvtypes "github.com/cosmos/interchain-security/v5/x/ccv/types"
94+
appencoding "github.com/allinbits/interchain-security/app/encoding"
95+
testutil "github.com/allinbits/interchain-security/testutil/integration"
96+
ibcconsumer "github.com/allinbits/interchain-security/x/ccv/consumer"
97+
ibcconsumerkeeper "github.com/allinbits/interchain-security/x/ccv/consumer/keeper"
98+
ibcconsumertypes "github.com/allinbits/interchain-security/x/ccv/consumer/types"
99+
ccvtypes "github.com/allinbits/interchain-security/x/ccv/types"
100100
)
101101

102102
const (

app/consumer/genesis.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ import (
1111
"github.com/spf13/cobra"
1212
"golang.org/x/exp/maps"
1313

14+
consumerTypes "github.com/allinbits/interchain-security/x/ccv/consumer/types"
15+
"github.com/allinbits/interchain-security/x/ccv/types"
1416
"github.com/cosmos/cosmos-sdk/client"
1517
"github.com/cosmos/cosmos-sdk/codec"
1618
sdk "github.com/cosmos/cosmos-sdk/types"
1719
"github.com/cosmos/cosmos-sdk/version"
18-
consumerTypes "github.com/cosmos/interchain-security/v5/x/ccv/consumer/types"
19-
"github.com/cosmos/interchain-security/v5/x/ccv/types"
2020
)
2121

2222
// The genesis state of the blockchain is represented here as a map of raw json

app/consumer/genesis_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ import (
1515
"github.com/cosmos/cosmos-sdk/client"
1616
"github.com/cosmos/cosmos-sdk/x/auth/types"
1717

18-
app "github.com/cosmos/interchain-security/v5/app/consumer"
19-
consumerTypes "github.com/cosmos/interchain-security/v5/x/ccv/consumer/types"
20-
ccvtypes "github.com/cosmos/interchain-security/v5/x/ccv/types"
18+
app "github.com/allinbits/interchain-security/app/consumer"
19+
consumerTypes "github.com/allinbits/interchain-security/x/ccv/consumer/types"
20+
ccvtypes "github.com/allinbits/interchain-security/x/ccv/types"
2121
)
2222

2323
const (

app/provider/app.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,14 @@ import (
105105
tmos "github.com/cometbft/cometbft/libs/os"
106106
dbm "github.com/cosmos/cosmos-db"
107107

108-
"github.com/cosmos/interchain-security/v5/app/common"
109-
appencoding "github.com/cosmos/interchain-security/v5/app/encoding"
110-
testutil "github.com/cosmos/interchain-security/v5/testutil/integration"
111-
ibcprovider "github.com/cosmos/interchain-security/v5/x/ccv/provider"
112-
ibcproviderclient "github.com/cosmos/interchain-security/v5/x/ccv/provider/client"
113-
ibcproviderkeeper "github.com/cosmos/interchain-security/v5/x/ccv/provider/keeper"
114-
providertypes "github.com/cosmos/interchain-security/v5/x/ccv/provider/types"
115-
ccvtypes "github.com/cosmos/interchain-security/v5/x/ccv/types"
108+
"github.com/allinbits/interchain-security/app/common"
109+
appencoding "github.com/allinbits/interchain-security/app/encoding"
110+
testutil "github.com/allinbits/interchain-security/testutil/integration"
111+
ibcprovider "github.com/allinbits/interchain-security/x/ccv/provider"
112+
ibcproviderclient "github.com/allinbits/interchain-security/x/ccv/provider/client"
113+
ibcproviderkeeper "github.com/allinbits/interchain-security/x/ccv/provider/keeper"
114+
providertypes "github.com/allinbits/interchain-security/x/ccv/provider/types"
115+
ccvtypes "github.com/allinbits/interchain-security/x/ccv/types"
116116

117117
"github.com/cosmos/cosmos-sdk/testutil/testdata/testpb"
118118
sigtypes "github.com/cosmos/cosmos-sdk/types/tx/signing"

0 commit comments

Comments
 (0)