Skip to content

Commit 07b70ec

Browse files
authored
Merge pull request #5 from hyperweb-io/examples
examples ibc-asset-list, stake-tokens, vote-proposal
2 parents 8963961 + b0e6449 commit 07b70ec

File tree

151 files changed

+42478
-11
lines changed

Some content is hidden

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

151 files changed

+42478
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
<p align="center" width="100%">
88
<a href="https://www.npmjs.com/package/create-interchain-app"><img height="20" src="https://img.shields.io/npm/dt/create-interchain-app"></a>
9-
<a href="https://github.com/cosmology-tech/create-interchain-app/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
10-
<a href="https://www.npmjs.com/package/create-interchain-app"><img height="20" src="https://img.shields.io/github/package-json/v/cosmology-tech/create-interchain-app?filename=packages%2Fcreate-interchain-app%2Fpackage.json"></a>
9+
<a href="https://github.com/hyperweb-io/create-interchain-app/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
10+
<a href="https://www.npmjs.com/package/create-interchain-app"><img height="20" src="https://img.shields.io/github/package-json/v/hyperweb-io/create-interchain-app?filename=packages%2Fcreate-interchain-app%2Fpackage.json"></a>
1111
</p>
1212

1313
Set up a modern Cosmos app by running one command ⚛️
@@ -68,9 +68,9 @@ Everything is preconfigured, ready-to-go, so you can focus on your code!
6868

6969
## Education & Resources
7070

71-
🎥 [Checkout our videos](https://cosmology.zone/learn) to learn to learn more about `create-interchain-app` and tooling for building frontends in the Cosmos!
71+
🎥 [Checkout our videos](https://hyperweb.io/learn) to learn to learn more about `create-interchain-app` and tooling for building frontends in the Cosmos!
7272

73-
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.
73+
Checkout [interchain-kit](https://github.com/hyperweb-io/interchain-kit) for more docs as well as [interchain-kit/react](https://github.com/hyperweb-io/interchain-kit/tree/main/packages/react#signing-clients) for getting cosmjs stargate and cosmjs signers.
7474

7575
## Creating an App
7676

@@ -216,7 +216,7 @@ cia --name liquidity-example --example provide-liquidity
216216
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.
217217

218218
```
219-
cia --name asset-list-example --example asset-list
219+
cia --name ibc-asset-list-example --example ibc-asset-list
220220
```
221221

222222
### NFT
@@ -225,7 +225,7 @@ cia --name asset-list-example --example asset-list
225225
<img height="48" src="https://user-images.githubusercontent.com/545047/184694732-f4a3d397-14fb-415a-9562-a532f510f812.png" />
226226
</p>
227227

228-
Incorporate NFT functionalities into your Stargaze app using [stargazejs](https://github.com/cosmology-tech/stargazejs), enabling seamless NFT minting, transfer, and management.
228+
Incorporate NFT functionalities into your Stargaze app using [stargazejs](https://github.com/hyperweb-io/stargazejs), enabling seamless NFT minting, transfer, and management.
229229

230230
```
231231
cia --name nft-example --example nft
@@ -267,11 +267,11 @@ Checkout these related projects:
267267

268268
- [telescope](https://github.com/cosmology-tech/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
269269
- [@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) Convert your CosmWasm smart contracts into dev-friendly TypeScript classes.
270-
- [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.
271-
- [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.
272-
- [create-interchain-app](https://github.com/cosmology-tech/create-interchain-app) Set up a modern Cosmos app by running one command.
273-
- [interchain-ui](https://github.com/cosmology-tech/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
274-
- [starship](https://github.com/cosmology-tech/starship) Unified Testing and Development for the Interchain.
270+
- [chain-registry](https://github.com/hyperweb-io/chain-registry) Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application.
271+
- [interchain-kit](https://github.com/hyperweb-io/interchain-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
272+
- [create-interchain-app](https://github.com/hyperweb-io/create-interchain-app) Set up a modern Cosmos app by running one command.
273+
- [interchain-ui](https://github.com/hyperweb-io/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
274+
- [starship](https://github.com/hyperweb-io/starship) Unified Testing and Development for the Interchain.
275275

276276
## Credits
277277

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "next/core-web-vitals"
3+
}

examples/ibc-asset-list/.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
.pnpm-debug.log*
27+
28+
# local env files
29+
.env*.local
30+
31+
# vercel
32+
.vercel
33+
34+
# typescript
35+
*.tsbuildinfo
36+
next-env.d.ts
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

0 commit comments

Comments
 (0)