Skip to content

Commit 6f87200

Browse files
committed
Rename remaining files
1 parent 6294252 commit 6f87200

30 files changed

+47
-47
lines changed

app/app.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ import (
1414
tmos "github.com/tendermint/tendermint/libs/os"
1515
dbm "github.com/tendermint/tm-db"
1616

17-
appparams "github.com/cheqd-id/cheqd-node/app/params"
18-
"github.com/cheqd-id/cheqd-node/x/cheqd"
19-
cheqdkeeper "github.com/cheqd-id/cheqd-node/x/cheqd/keeper"
20-
cheqdtypes "github.com/cheqd-id/cheqd-node/x/cheqd/types"
17+
appparams "github.com/cheqd/cheqd-node/app/params"
18+
"github.com/cheqd/cheqd-node/x/cheqd"
19+
cheqdkeeper "github.com/cheqd/cheqd-node/x/cheqd/keeper"
20+
cheqdtypes "github.com/cheqd/cheqd-node/x/cheqd/types"
2121
"github.com/cosmos/cosmos-sdk/baseapp"
2222
"github.com/cosmos/cosmos-sdk/client/grpc/tmservice"
2323
"github.com/cosmos/cosmos-sdk/client/rpc"

app/encoding.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package app
22

33
import (
4-
"github.com/cheqd-id/cheqd-node/app/params"
4+
"github.com/cheqd/cheqd-node/app/params"
55
"github.com/cosmos/cosmos-sdk/std"
66
)
77

cmd/verim-noded/cmd/root.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"path/filepath"
88

9-
"github.com/cheqd-id/cheqd-node/app/params"
9+
"github.com/cheqd/cheqd-node/app/params"
1010
"github.com/cosmos/cosmos-sdk/snapshots"
1111

1212
"github.com/spf13/cast"
@@ -16,7 +16,7 @@ import (
1616
"github.com/tendermint/tendermint/libs/log"
1717
dbm "github.com/tendermint/tm-db"
1818

19-
"github.com/cheqd-id/cheqd-node/app"
19+
"github.com/cheqd/cheqd-node/app"
2020
"github.com/cosmos/cosmos-sdk/baseapp"
2121
"github.com/cosmos/cosmos-sdk/client"
2222
"github.com/cosmos/cosmos-sdk/client/debug"

cmd/verim-noded/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package main
33
import (
44
"os"
55

6-
"github.com/cheqd-id/cheqd-node/app"
7-
"github.com/cheqd-id/cheqd-node/cmd/cheqd-noded/cmd"
6+
"github.com/cheqd/cheqd-node/app"
7+
"github.com/cheqd/cheqd-node/cmd/cheqd-noded/cmd"
88
svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"
99
)
1010

docs/how-to-setup-a-new-validator.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ Current delivery is compiled and tested for `Ubuntu 20.04 LTS` so we recommend u
2525
There are several ways to get binary:
2626

2727
- Compile from source code - [instruction](../README.md);
28-
- Get `tar` archive with the binary compiled for Ubuntu 20.04 in [releases](https://github.com/cheqd-id/cheqd-node/releases); <-- Recommended
29-
- Get `deb` for Ubuntu 20.04 in [releases](https://github.com/cheqd-id/cheqd-node/releases);
30-
- Get docker image form [packages](https://github.com/cheqd-id/cheqd-node/pkgs/container/cheqd-node).
28+
- Get `tar` archive with the binary compiled for Ubuntu 20.04 in [releases](https://github.com/cheqd/cheqd-node/releases); <-- Recommended
29+
- Get `deb` for Ubuntu 20.04 in [releases](https://github.com/cheqd/cheqd-node/releases);
30+
- Get docker image form [packages](https://github.com/cheqd/cheqd-node/pkgs/container/cheqd-node).
3131

3232
## Node deployment
3333

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/cheqd-id/cheqd-node
1+
module github.com/cheqd/cheqd-node
22

33
go 1.15
44

proto/cheqd/genesis.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package cheqdid.cheqdnode.cheqd;
44
// this line is used by starport scaffolding # genesis/proto/import
55
import "cheqd/nym.proto";
66

7-
option go_package = "github.com/cheqd-id/cheqd-node/x/cheqd/types";
7+
option go_package = "github.com/cheqd/cheqd-node/x/cheqd/types";
88

99
// GenesisState defines the capability module's genesis state.
1010
message GenesisState {

proto/cheqd/nym.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
syntax = "proto3";
22
package cheqdid.cheqdnode.cheqd;
33

4-
option go_package = "github.com/cheqd-id/cheqd-node/x/cheqd/types";
4+
option go_package = "github.com/cheqd/cheqd-node/x/cheqd/types";
55

66
import "gogoproto/gogo.proto";
77

proto/cheqd/query.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ import "cosmos/base/query/v1beta1/pagination.proto";
66
// this line is used by starport scaffolding # 1
77
import "cheqd/nym.proto";
88

9-
option go_package = "github.com/cheqd-id/cheqd-node/x/cheqd/types";
9+
option go_package = "github.com/cheqd/cheqd-node/x/cheqd/types";
1010

1111
// Query defines the gRPC querier service.
1212
service Query {
1313
// this line is used by starport scaffolding # 2
1414
rpc Nym(QueryGetNymRequest) returns (QueryGetNymResponse) {
15-
option (google.api.http).get = "/cheqd-id/cheqd/cheqd/nym/{id}";
15+
option (google.api.http).get = "/cheqd/cheqd/cheqd/nym/{id}";
1616
}
1717
rpc NymAll(QueryAllNymRequest) returns (QueryAllNymResponse) {
18-
option (google.api.http).get = "/cheqd-id/cheqd/cheqd/nym";
18+
option (google.api.http).get = "/cheqd/cheqd/cheqd/nym";
1919
}
2020

2121
}

proto/cheqd/tx.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cheqdid.cheqdnode.cheqd;
33

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

6-
option go_package = "github.com/cheqd-id/cheqd-node/x/cheqd/types";
6+
option go_package = "github.com/cheqd/cheqd-node/x/cheqd/types";
77

88
// Msg defines the Msg service.
99
service Msg {

0 commit comments

Comments
 (0)