You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, install `create-cosmos-app` globally using npm:
27
+
First, install `create-interchain-app` globally using npm:
28
28
29
29
```sh
30
-
npm install -g create-cosmos-app
30
+
npm install -g create-interchain-app
31
31
```
32
32
33
33
Then, create your new Cosmos app by running the following command:
34
34
35
35
```sh
36
-
# you can also use `cca` instead of `create-cosmos-app` for shortcut ;)
37
-
create-cosmos-app
36
+
# you can also use `cia` instead of `create-interchain-app` for shortcut ;)
37
+
create-interchain-app
38
38
```
39
39
40
40
During the setup process, you'll be prompted to enter the name of your app. For example:
@@ -58,17 +58,17 @@ You don’t need to install or configure cosmjs, keplr, nextjs, webpack or Babel
58
58
59
59
Everything is preconfigured, ready-to-go, so you can focus on your code!
60
60
61
-
- ⚡️ Connect easily to 20+ wallets via [Cosmos Kit](https://github.com/cosmology-tech/cosmos-kit) — including Ledger, Keplr, Cosmostation, Leap, Trust Wallet, OKX, XDEFI, Exodus, Wallet Connect and more!
61
+
- ⚡️ Connect easily to 20+ wallets via [Interchain Kit](https://github.com/cosmology-tech/interchain-kit) — including Ledger, Keplr, Cosmostation, Leap, Trust Wallet, OKX, XDEFI, Exodus, Wallet Connect and more!
62
62
- ⚛️ Sign and broadcast with [cosmjs](https://github.com/cosmos/cosmjs) stargate + cosmwasm signers
63
63
- 🎨 Build awesome UI with [Interchain UI](https://cosmology.zone/products/interchain-ui) and [Explore Components](https://cosmology.zone/components)
64
64
- 🛠 Render pages with [next.js](https://nextjs.org/) hybrid static & server rendering
65
65
- 📝 Leverage [chain-registry](https://github.com/cosmology-tech/chain-registry) for Chain and Asset info for all Cosmos chains
66
66
67
67
## Education & Resources
68
68
69
-
🎥 [Checkout our videos](https://cosmology.zone/learn) to learn to learn more about `create-cosmos-app` and tooling for building frontends in the Cosmos!
69
+
🎥 [Checkout our videos](https://cosmology.zone/learn) to learn to learn more about `create-interchain-app` and tooling for building frontends in the Cosmos!
70
70
71
-
Checkout [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit) for more docs as well as [cosmos-kit/react](https://github.com/cosmology-tech/cosmos-kit/tree/main/packages/react#signing-clients) for getting cosmjs stargate and cosmjs signers.
71
+
Checkout [interchain-kit](https://github.com/cosmology-tech/interchain-kit) for more docs as well as [interchain-kit/react](https://github.com/cosmology-tech/interchain-kit/tree/main/packages/react#signing-clients) for getting cosmjs stargate and cosmjs signers.
72
72
73
73
## Creating an App
74
74
@@ -77,25 +77,25 @@ To create a new app, you may choose one of the following methods:
77
77
### global install
78
78
79
79
```sh
80
-
npm install -g create-cosmos-app
80
+
npm install -g create-interchain-app
81
81
```
82
82
83
83
Then run the command:
84
84
85
85
```sh
86
-
create-cosmos-app
86
+
create-interchain-app
87
87
```
88
88
89
-
we also made an alias `cca` if you don't want to type `create-cosmos-app`:
89
+
we also made an alias `cia` if you don't want to type `create-interchain-app`:
90
90
91
91
```sh
92
-
cca
92
+
cia
93
93
```
94
94
95
95
### npx
96
96
97
97
```sh
98
-
npx create-cosmos-app
98
+
npx create-interchain-app
99
99
```
100
100
101
101
### npm
@@ -112,22 +112,22 @@ yarn create cosmos-app
112
112
113
113
## Examples
114
114
115
-
The `create-cosmos-app` tool provides a range of examples to help you understand and test various features and integrations. By executing the examples, you can quickly see how to implement specific functionalities in your Cosmos app.
115
+
The `create-interchain-app` tool provides a range of examples to help you understand and test various features and integrations. By executing the examples, you can quickly see how to implement specific functionalities in your Cosmos app.
116
116
117
117
```
118
-
cca --example
118
+
cia --example
119
119
```
120
120
121
121
If you know the example name, you can do
122
122
123
123
```
124
-
cca --example <example-name>
124
+
cia --example <example-name>
125
125
```
126
126
127
127
Alternatively, you can use the shorthand `-e` flag to achieve the same:
128
128
129
129
```
130
-
cca -e <example-name>
130
+
cia -e <example-name>
131
131
```
132
132
133
133
This command will generate a new project configured with the selected example, allowing you to dive into the code and functionality right away.
@@ -142,7 +142,7 @@ Initiate and manage staking operations directly within your application, allowin
142
142
143
143
144
144
```
145
-
cca --name stake-example --example stake-tokens
145
+
cia --name stake-example --example stake-tokens
146
146
```
147
147
148
148
### Vote Proposal
@@ -154,7 +154,7 @@ cca --name stake-example --example stake-tokens
154
154
Facilitate on-chain governance by enabling users to vote on proposals, enhancing community engagement and decision-making.
155
155
156
156
```
157
-
cca --name vote-example --example vote-proposal
157
+
cia --name vote-example --example vote-proposal
158
158
```
159
159
160
160
### Authz
@@ -166,7 +166,7 @@ cca --name vote-example --example vote-proposal
166
166
Leverage the Authz module to grant and manage authorizations, allowing users to perform actions on behalf of others.
167
167
168
168
```
169
-
cca --name authz-example --example authz
169
+
cia --name authz-example --example authz
170
170
```
171
171
172
172
### grpc-web and grpc-gateway
@@ -178,7 +178,7 @@ cca --name authz-example --example authz
178
178
Integrate gRPC-web and gRPC-gateway in your app for robust and efficient communication between your Cosmos SDK blockchain and web clients.
179
179
180
180
```
181
-
cca --name grpc-example --example grpc-web-grpc-gateway
181
+
cia --name grpc-example --example grpc-web-grpc-gateway
182
182
```
183
183
184
184
### Swap Tokens
@@ -190,7 +190,7 @@ cca --name grpc-example --example grpc-web-grpc-gateway
190
190
Utilize [osmojs](https://github.com/osmosis-labs/osmojs) for streamlined token swapping capabilities within your Osmosis app.
191
191
192
192
```
193
-
cca --name swap-example --example swap-tokens
193
+
cia --name swap-example --example swap-tokens
194
194
```
195
195
196
196
### Provide Liquidity
@@ -202,7 +202,7 @@ cca --name swap-example --example swap-tokens
202
202
Use [osmojs](https://github.com/osmosis-labs/osmojs) to enable liquidity provision features, enhancing the DeFi experience in your app.
203
203
204
204
```
205
-
cca --name liquidity-example --example provide-liquidity
205
+
cia --name liquidity-example --example provide-liquidity
206
206
```
207
207
208
208
### Asset List
@@ -214,7 +214,7 @@ cca --name liquidity-example --example provide-liquidity
214
214
Create and manage an asset list, offering comprehensive insights into the available assets, and empower your application with Inter-Blockchain Communication (IBC) capabilities for transferring tokens across different chains.
215
215
216
216
```
217
-
cca --name asset-list-example --example asset-list
217
+
cia --name asset-list-example --example asset-list
218
218
```
219
219
220
220
### NFT
@@ -226,14 +226,14 @@ cca --name asset-list-example --example asset-list
226
226
Incorporate NFT functionalities into your Stargaze app using [stargazejs](https://github.com/cosmology-tech/stargazejs), enabling seamless NFT minting, transfer, and management.
|`--printCmd`| Print the command to run after setup |`true`|
239
239
|`-n`, `--name`| Provide a project name | None |
@@ -266,8 +266,8 @@ Checkout these related projects:
266
266
-[@cosmology/telescope](https://github.com/cosmology-tech/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
267
267
-[@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) Convert your CosmWasm smart contracts into dev-friendly TypeScript classes.
268
268
-[chain-registry](https://github.com/cosmology-tech/chain-registry) Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application.
269
-
-[cosmos-kit](https://github.com/cosmology-tech/cosmos-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
270
-
-[create-cosmos-app](https://github.com/cosmology-tech/create-cosmos-app) Set up a modern Cosmos app by running one command.
269
+
-[interchain-kit](https://github.com/cosmology-tech/interchain-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
270
+
-[create-interchain-app](https://github.com/cosmology-tech/create-interchain-app) Set up a modern Cosmos app by running one command.
271
271
-[interchain-ui](https://github.com/cosmology-tech/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
272
272
-[starship](https://github.com/cosmology-tech/starship) Unified Testing and Development for the Interchain.
Copy file name to clipboardExpand all lines: boilerplates/lerna-module/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,8 +43,8 @@ Checkout these related projects:
43
43
*[@cosmology/telescope](https://github.com/cosmology-tech/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
44
44
*[@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) Convert your CosmWasm smart contracts into dev-friendly TypeScript classes.
45
45
*[chain-registry](https://github.com/cosmology-tech/chain-registry) Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application.
46
-
*[cosmos-kit](https://github.com/cosmology-tech/cosmos-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
47
-
*[create-cosmos-app](https://github.com/cosmology-tech/create-cosmos-app) Set up a modern Cosmos app by running one command.
46
+
*[interchain-kit](https://github.com/cosmology-tech/interchain-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
47
+
*[create-interchain-app](https://github.com/cosmology-tech/create-interchain-app) Set up a modern Cosmos app by running one command.
48
48
*[interchain-ui](https://github.com/cosmology-tech/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
49
49
*[starship](https://github.com/cosmology-tech/starship) Unified Testing and Development for the Interchain.
Copy file name to clipboardExpand all lines: boilerplates/lerna-tsx-module/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,8 +34,8 @@ Checkout these related projects:
34
34
*[@cosmology/telescope](https://github.com/cosmology-tech/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
35
35
*[@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) Convert your CosmWasm smart contracts into dev-friendly TypeScript classes.
36
36
*[chain-registry](https://github.com/cosmology-tech/chain-registry) Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application.
37
-
*[cosmos-kit](https://github.com/cosmology-tech/cosmos-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
38
-
*[create-cosmos-app](https://github.com/cosmology-tech/create-cosmos-app) Set up a modern Cosmos app by running one command.
37
+
*[interchain-kit](https://github.com/cosmology-tech/interchain-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
38
+
*[create-interchain-app](https://github.com/cosmology-tech/create-interchain-app) Set up a modern Cosmos app by running one command.
39
39
*[interchain-ui](https://github.com/cosmology-tech/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
40
40
*[starship](https://github.com/cosmology-tech/starship) Unified Testing and Development for the Interchain.
Copy file name to clipboardExpand all lines: boilerplates/lerna-workspace/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,8 +43,8 @@ Checkout these related projects:
43
43
*[@cosmology/telescope](https://github.com/cosmology-tech/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
44
44
*[@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) Convert your CosmWasm smart contracts into dev-friendly TypeScript classes.
45
45
*[chain-registry](https://github.com/cosmology-tech/chain-registry) Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application.
46
-
*[cosmos-kit](https://github.com/cosmology-tech/cosmos-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
47
-
*[create-cosmos-app](https://github.com/cosmology-tech/create-cosmos-app) Set up a modern Cosmos app by running one command.
46
+
*[interchain-kit](https://github.com/cosmology-tech/interchain-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
47
+
*[create-interchain-app](https://github.com/cosmology-tech/create-interchain-app) Set up a modern Cosmos app by running one command.
48
48
*[interchain-ui](https://github.com/cosmology-tech/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
49
49
*[starship](https://github.com/cosmology-tech/starship) Unified Testing and Development for the Interchain.
Copy file name to clipboardExpand all lines: boilerplates/telescope/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -133,9 +133,9 @@ const {
133
133
134
134
## Connecting with Wallets and Signing Messages
135
135
136
-
⚡️ For web interfaces, we recommend using [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit). Continue below to see how to manually construct signers and clients.
136
+
⚡️ For web interfaces, we recommend using [interchain-kit](https://github.com/cosmology-tech/interchain-kit). Continue below to see how to manually construct signers and clients.
137
137
138
-
Here are the docs on [creating signers](https://docs.cosmology.zone/cosmos-kit) in cosmos-kit that can be used with Keplr and other wallets.
138
+
Here are the docs on [creating signers](https://docs.cosmology.zone/interchain-kit) in interchain-kit that can be used with Keplr and other wallets.
@@ -306,8 +306,8 @@ Checkout these related projects:
306
306
*[@cosmology/telescope](https://github.com/cosmology-tech/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
307
307
*[@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) Convert your CosmWasm smart contracts into dev-friendly TypeScript classes.
308
308
*[chain-registry](https://github.com/cosmology-tech/chain-registry) Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application.
309
-
*[cosmos-kit](https://github.com/cosmology-tech/cosmos-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
310
-
*[create-cosmos-app](https://github.com/cosmology-tech/create-cosmos-app) Set up a modern Cosmos app by running one command.
309
+
*[interchain-kit](https://github.com/cosmology-tech/interchain-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
310
+
*[create-interchain-app](https://github.com/cosmology-tech/create-interchain-app) Set up a modern Cosmos app by running one command.
311
311
*[interchain-ui](https://github.com/cosmology-tech/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
312
312
*[starship](https://github.com/cosmology-tech/starship) Unified Testing and Development for the Interchain.
0 commit comments