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
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-interchain-app` for shortcut ;)
36
+
# you can also use `cia` instead of `create-interchain-app` for shortcut ;)
37
37
create-interchain-app
38
38
```
39
39
@@ -86,10 +86,10 @@ Then run the command:
86
86
create-interchain-app
87
87
```
88
88
89
-
we also made an alias `cca` if you don't want to type `create-interchain-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
@@ -115,19 +115,19 @@ yarn create cosmos-app
115
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.
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-interchain-app` for shortcut ;)
36
+
# you can also use `cia` instead of `create-interchain-app` for shortcut ;)
37
37
create-interchain-app
38
38
```
39
39
@@ -86,10 +86,10 @@ Then run the command:
86
86
create-interchain-app
87
87
```
88
88
89
-
we also made an alias `cca` if you don't want to type `create-interchain-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
@@ -115,19 +115,19 @@ yarn create cosmos-app
115
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.
console.warn(c.yellow(`⚠️ You are using create-interchain-app version ${c.red(rootPkg.version)}, but version ${c.green(version)} is available. Run "${c.cyan('cca upgrade')}" or "${c.cyan('npm install -g create-interchain-app@latest')}" to upgrade.`));
74
+
console.warn(c.yellow(`⚠️ You are using create-interchain-app version ${c.red(rootPkg.version)}, but version ${c.green(version)} is available. Run "${c.cyan('cia upgrade')}" or "${c.cyan('npm install -g create-interchain-app@latest')}" to upgrade.`));
0 commit comments