Skip to content

Commit 2bb75da

Browse files
authored
chore(module name): updating module name (#30)
1 parent 05c0379 commit 2bb75da

40 files changed

+197
-195
lines changed

Diff for: app/app.go

+8-7
Original file line numberDiff line numberDiff line change
@@ -79,16 +79,17 @@ import (
7979
upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client"
8080
upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper"
8181
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
82-
appparams "github.com/interchainberlin/ica/app/params"
83-
ibcaccount "github.com/interchainberlin/ica/x/ibc-account"
84-
ibcaccountkeeper "github.com/interchainberlin/ica/x/ibc-account/keeper"
85-
ibcaccounttypes "github.com/interchainberlin/ica/x/ibc-account/types"
82+
appparams "github.com/cosmos/interchain-accounts/app/params"
83+
ibcaccount "github.com/cosmos/interchain-accounts/x/ibc-account"
84+
ibcaccountkeeper "github.com/cosmos/interchain-accounts/x/ibc-account/keeper"
85+
ibcaccounttypes "github.com/cosmos/interchain-accounts/x/ibc-account/types"
8686
tmjson "github.com/tendermint/tendermint/libs/json"
8787
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
88+
8889
// this line is used by starport scaffolding # stargate/app/moduleImport
89-
intertx "github.com/interchainberlin/ica/x/inter-tx"
90-
intertxkeeper "github.com/interchainberlin/ica/x/inter-tx/keeper"
91-
intertxtypes "github.com/interchainberlin/ica/x/inter-tx/types"
90+
intertx "github.com/cosmos/interchain-accounts/x/inter-tx"
91+
intertxkeeper "github.com/cosmos/interchain-accounts/x/inter-tx/keeper"
92+
intertxtypes "github.com/cosmos/interchain-accounts/x/inter-tx/types"
9293
)
9394

9495
const Name = "ica"

Diff for: app/encoding.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package app
22

33
import (
44
"github.com/cosmos/cosmos-sdk/std"
5-
"github.com/interchainberlin/ica/app/params"
5+
"github.com/cosmos/interchain-accounts/app/params"
66
)
77

88
// MakeEncodingConfig creates an EncodingConfig for testing

Diff for: cmd/icad/cmd/root.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"path/filepath"
88

99
"github.com/cosmos/cosmos-sdk/snapshots"
10-
"github.com/interchainberlin/ica/app/params"
10+
"github.com/cosmos/interchain-accounts/app/params"
1111

1212
"github.com/spf13/cast"
1313
"github.com/spf13/cobra"
@@ -33,7 +33,7 @@ import (
3333
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
3434
"github.com/cosmos/cosmos-sdk/x/crisis"
3535
genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli"
36-
"github.com/interchainberlin/ica/app"
36+
"github.com/cosmos/interchain-accounts/app"
3737
// this line is used by starport scaffolding # stargate/root/import
3838
)
3939

Diff for: cmd/icad/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"os"
55

66
svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"
7-
"github.com/interchainberlin/ica/app"
8-
"github.com/interchainberlin/ica/cmd/icad/cmd"
7+
"github.com/cosmos/interchain-accounts/app"
8+
"github.com/cosmos/interchain-accounts/cmd/icad/cmd"
99
)
1010

1111
func main() {

Diff for: go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/interchainberlin/ica
1+
module github.com/cosmos/interchain-accounts
22

33
go 1.15
44

Diff for: go.sum

-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym
1818
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d h1:nalkkPQcITbvhmL4+C4cKA87NW0tfm3Kl9VXRoPywFg=
1919
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d/go.mod h1:URdX5+vg25ts3aCh8H5IFZybJYKWhJHYMTnf+ULtoC4=
2020
github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ=
21-
github.com/DataDog/zstd v1.4.1 h1:3oxKN3wbHibqx897utPC2LTQU4J+IHWWJO+glkAkpFM=
2221
github.com/DataDog/zstd v1.4.1/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo=
2322
github.com/DataDog/zstd v1.4.5 h1:EndNeuB0l9syBZhut0wns3gV1hL8zX8LIu6ZiVHWLIQ=
2423
github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo=
@@ -59,13 +58,11 @@ github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQ
5958
github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
6059
github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84=
6160
github.com/btcsuite/btcd v0.0.0-20190115013929-ed77733ec07d/go.mod h1:d3C0AkH6BRcvO8T0UEPu53cnw4IbV63x1bEjildYhO0=
62-
github.com/btcsuite/btcd v0.20.1-beta h1:Ik4hyJqN8Jfyv3S4AGBOmyouMsYE3EdYODkMbQjwPGw=
6361
github.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ=
6462
github.com/btcsuite/btcd v0.21.0-beta h1:At9hIZdJW0s9E/fAz28nrz6AmcNlSVucCH796ZteX1M=
6563
github.com/btcsuite/btcd v0.21.0-beta/go.mod h1:ZSWyehm27aAuS9bvkATT+Xte3hjHZ+MRgMY/8NJ7K94=
6664
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f/go.mod h1:TdznJufoqS23FtqVCzL0ZqgP5MqXbb4fg/WgDys70nA=
6765
github.com/btcsuite/btcutil v0.0.0-20180706230648-ab6388e0c60a/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg=
68-
github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d h1:yJzD/yFppdVCf6ApMkVy8cUxV0XrxdP9rVf6D87/Mng=
6966
github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg=
7067
github.com/btcsuite/btcutil v1.0.2 h1:9iZ1Terx9fMIOtq1VrwdqfsATL9MC2l8ZrUY6YZ2uts=
7168
github.com/btcsuite/btcutil v1.0.2/go.mod h1:j9HUFwoQRsZL3V4n+qG+CUnEGHOarIxfC3Le2Yhbcts=

Diff for: proto/ibc/account/account.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import "gogoproto/gogo.proto";
66

77
import "cosmos/auth/v1beta1/auth.proto";
88

9-
option go_package = "github.com/interchainberlin/ica/x/ibc-account/types";
9+
option go_package = "github.com/cosmos/interchain-accounts/x/ibc-account/types";
1010

1111
// IBCAccount defines an account to which other chains have privileges
1212
message IBCAccount {

Diff for: proto/ibc/account/genesis.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
syntax = "proto3";
22
package ibc.account;
33

4-
option go_package = "github.com/interchainberlin/ica/x/ibc-account/types";
4+
option go_package = "github.com/cosmos/interchain-accounts/x/ibc-account/types";
55

66
import "gogoproto/gogo.proto";
77

Diff for: proto/ibc/account/query.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import "google/api/annotations.proto";
66

77
import "ibc/account/account.proto";
88

9-
option go_package = "github.com/interchainberlin/ica/x/ibc-account/types";
9+
option go_package = "github.com/cosmos/interchain-accounts/x/ibc-account/types";
1010

1111
// Query defines the gRPC querier service.
1212
service Query {

Diff for: proto/ibc/account/types.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package ibc.account;
33

44
import "google/protobuf/any.proto";
55

6-
option go_package = "github.com/interchainberlin/ica/x/ibc-account/types";
6+
option go_package = "github.com/cosmos/interchain-accounts/x/ibc-account/types";
77

88
message IBCTxRaw { bytes body_bytes = 1; }
99

Diff for: proto/intertx/intertx.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
syntax = "proto3";
22
package intertx;
33

4-
option go_package = "github.com/interchainberlin/ica/x/inter-tx/types";
4+
option go_package = "github.com/cosmos/interchain-accounts/x/inter-tx/types";
55

66
import "gogoproto/gogo.proto";
77

Diff for: proto/intertx/query.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
syntax = "proto3";
22
package intertx;
33

4-
option go_package = "github.com/interchainberlin/ica/x/inter-tx/types";
4+
option go_package = "github.com/cosmos/interchain-accounts/x/inter-tx/types";
55

66
import "gogoproto/gogo.proto";
77
import "google/api/annotations.proto";

Diff for: proto/intertx/tx.proto

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package intertx;
33

44
// this line is used by starport scaffolding # proto/tx/import
55

6-
option go_package = "github.com/interchainberlin/ica/x/inter-tx/types";
6+
option go_package = "github.com/cosmos/interchain-accounts/x/inter-tx/types";
77

88
import "gogoproto/gogo.proto";
99

Diff for: scripts/protocgen.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types:. \
2525
$(find "${dir}" -name '*.proto')
2626
done
2727

28-
cp -r github.com/interchainberlin/ica/* ./
28+
cp -r github.com/cosmos/interchain-accounts/* ./
2929
rm -rf github.com

Diff for: x/ibc-account/client/cli/query.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
sdk "github.com/cosmos/cosmos-sdk/types"
99
"github.com/spf13/cobra"
1010

11-
"github.com/interchainberlin/ica/x/ibc-account/types"
11+
"github.com/cosmos/interchain-accounts/x/ibc-account/types"
1212
)
1313

1414
func GetQueryCmd() *cobra.Command {

Diff for: x/ibc-account/genesis.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"fmt"
55

66
sdk "github.com/cosmos/cosmos-sdk/types"
7-
"github.com/interchainberlin/ica/x/ibc-account/keeper"
8-
"github.com/interchainberlin/ica/x/ibc-account/types"
7+
"github.com/cosmos/interchain-accounts/x/ibc-account/keeper"
8+
"github.com/cosmos/interchain-accounts/x/ibc-account/types"
99
)
1010

1111
func InitGenesis(ctx sdk.Context, keeper keeper.Keeper, state types.GenesisState) {

Diff for: x/ibc-account/keeper/account.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
sdk "github.com/cosmos/cosmos-sdk/types"
55
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
66
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
7-
"github.com/interchainberlin/ica/x/ibc-account/types"
7+
"github.com/cosmos/interchain-accounts/x/ibc-account/types"
88
"github.com/tendermint/tendermint/crypto/tmhash"
99
)
1010

Diff for: x/ibc-account/keeper/grpc_query.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"google.golang.org/grpc/codes"
99
"google.golang.org/grpc/status"
1010

11-
"github.com/interchainberlin/ica/x/ibc-account/types"
11+
"github.com/cosmos/interchain-accounts/x/ibc-account/types"
1212
)
1313

1414
var _ types.QueryServer = Keeper{}

Diff for: x/ibc-account/keeper/handshake.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
porttypes "github.com/cosmos/cosmos-sdk/x/ibc/core/05-port/types"
99
host "github.com/cosmos/cosmos-sdk/x/ibc/core/24-host"
1010

11-
"github.com/interchainberlin/ica/x/ibc-account/types"
11+
"github.com/cosmos/interchain-accounts/x/ibc-account/types"
1212
)
1313

1414
func (k Keeper) OnChanOpenInit(

Diff for: x/ibc-account/keeper/keeper.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
"github.com/tendermint/tendermint/libs/log"
1414

15-
"github.com/interchainberlin/ica/x/ibc-account/types"
15+
"github.com/cosmos/interchain-accounts/x/ibc-account/types"
1616
)
1717

1818
func SerializeCosmosTx(cdc codec.BinaryMarshaler, registry codectypes.InterfaceRegistry) func(data interface{}) ([]byte, error) {

Diff for: x/ibc-account/keeper/querier.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"github.com/cosmos/cosmos-sdk/codec"
55
sdk "github.com/cosmos/cosmos-sdk/types"
66
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
7-
"github.com/interchainberlin/ica/x/ibc-account/types"
7+
"github.com/cosmos/interchain-accounts/x/ibc-account/types"
88
abci "github.com/tendermint/tendermint/abci/types"
99
"google.golang.org/grpc/codes"
1010
"google.golang.org/grpc/status"

Diff for: x/ibc-account/keeper/relay.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
clienttypes "github.com/cosmos/cosmos-sdk/x/ibc/core/02-client/types"
99
channeltypes "github.com/cosmos/cosmos-sdk/x/ibc/core/04-channel/types"
1010
host "github.com/cosmos/cosmos-sdk/x/ibc/core/24-host"
11-
"github.com/interchainberlin/ica/x/ibc-account/types"
11+
"github.com/cosmos/interchain-accounts/x/ibc-account/types"
1212
"github.com/tendermint/tendermint/crypto/tmhash"
1313
)
1414

Diff for: x/ibc-account/module.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"encoding/json"
66

7-
"github.com/interchainberlin/ica/x/ibc-account/client/cli"
7+
"github.com/cosmos/interchain-accounts/x/ibc-account/client/cli"
88

99
"github.com/grpc-ecosystem/grpc-gateway/runtime"
1010

@@ -21,9 +21,9 @@ import (
2121
sdk "github.com/cosmos/cosmos-sdk/types"
2222
"github.com/cosmos/cosmos-sdk/types/module"
2323
porttypes "github.com/cosmos/cosmos-sdk/x/ibc/core/05-port/types"
24+
"github.com/cosmos/interchain-accounts/x/ibc-account/keeper"
25+
"github.com/cosmos/interchain-accounts/x/ibc-account/types"
2426
"github.com/gorilla/mux"
25-
"github.com/interchainberlin/ica/x/ibc-account/keeper"
26-
"github.com/interchainberlin/ica/x/ibc-account/types"
2727
"github.com/spf13/cobra"
2828
)
2929

Diff for: x/ibc-account/types/account.pb.go

+21-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: x/ibc-account/types/genesis.pb.go

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)