Skip to content

Commit 1c88661

Browse files
authored
Merge pull request #27 from hyperweb-io/readme-modify
Readme modify
2 parents 462ee12 + d3fea73 commit 1c88661

File tree

12 files changed

+116
-562
lines changed

12 files changed

+116
-562
lines changed

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ Set up a modern Cosmos app by running one command ⚛️
1919
- [Options](#options)
2020
- [Development](#development)
2121

22-
https://user-images.githubusercontent.com/545047/192061992-f0e1106d-f4b2-4879-ab0a-896f22ee4f49.mp4
23-
2422

2523
## Overview
2624

@@ -62,7 +60,7 @@ Everything is preconfigured, ready-to-go, so you can focus on your code!
6260

6361
- ⚡️ Connect easily to 20+ wallets via [Interchain Kit](https://github.com/hyperweb-io/interchain-kit) — including Ledger, Keplr, Cosmostation, Leap, Trust Wallet, OKX, XDEFI, Exodus, Wallet Connect and more!
6462
- ⚛️ Sign and broadcast with [InterchainJS](https://github.com/hyperweb-io/interchainjs)
65-
- 🎨 Build awesome UI with [Interchain UI](https://hyperweb.io/stack/interchain-ui) and [Explore Components](https://hyperweb.io/components)
63+
- 🎨 Build awesome UI with [Interchain UI](https://hyperweb.io/stack/interchain-ui)
6664
- 🛠 Render pages with [next.js](https://nextjs.org/) hybrid static & server rendering
6765
- 📝 Leverage [chain-registry](https://github.com/hyperweb-io/chain-registry) for Chain and Asset info for all IBC-connected chains
6866

examples/authz/configs/features.ts

+11-11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ export type Project = {
55
};
66

77
export const products: Project[] = [
8+
{
9+
name: 'Interchain JS',
10+
desc: 'A single, universal signing interface for any network. Birthed from the interchain ecosystem for builders. Create adapters for any web3 network.',
11+
link: 'https://github.com/hyperweb-io/interchainjs',
12+
},
813
{
914
name: 'Interchain Kit',
1015
desc: 'A wallet adapter for react with mobile WalletConnect support for the Cosmos ecosystem.',
@@ -15,23 +20,18 @@ export const products: Project[] = [
1520
desc: 'A TypeScript Transpiler for Cosmos Protobufs to generate libraries for Cosmos blockchains.',
1621
link: 'https://github.com/hyperweb-io/telescope',
1722
},
18-
{
19-
name: 'TS Codegen',
20-
desc: 'The quickest and easiest way to convert CosmWasm Contracts into dev-friendly TypeScript classes.',
21-
link: 'https://github.com/CosmWasm/ts-codegen',
22-
},
23-
{
24-
name: 'CosmWasm Academy',
25-
desc: 'Master CosmWasm and build your secure, multi-chain dApp on any CosmWasm chain!',
26-
link: 'https://academy.cosmwasm.com/',
27-
},
2823
{
2924
name: 'Chain Registry',
3025
desc: 'Get chain and asset list information from the npm package for the Official Cosmos chain registry.',
3126
link: 'https://github.com/hyperweb-io/chain-registry',
3227
},
3328
{
34-
name: 'Videos',
29+
name: 'TS Codegen',
30+
desc: 'The quickest and easiest way to convert CosmWasm Contracts into dev-friendly TypeScript classes.',
31+
link: 'https://github.com/CosmWasm/ts-codegen',
32+
},
33+
{
34+
name: 'Docs',
3535
desc: 'How-to videos from the official Hyperweb website, with learning resources for building in Cosmos.',
3636
link: 'https://hyperweb.io/learn',
3737
},

examples/ibc-asset-list/config/features.ts

+14-19
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@ export type Project = {
22
name: string;
33
desc: string;
44
link: string;
5-
}
5+
};
66

77
export const products: Project[] = [
8+
{
9+
name: 'Interchain JS',
10+
desc: 'A single, universal signing interface for any network. Birthed from the interchain ecosystem for builders. Create adapters for any web3 network.',
11+
link: 'https://github.com/hyperweb-io/interchainjs',
12+
},
813
{
914
name: 'Interchain Kit',
1015
desc: 'A wallet adapter for react with mobile WalletConnect support for the Cosmos ecosystem.',
@@ -15,38 +20,28 @@ export const products: Project[] = [
1520
desc: 'A TypeScript Transpiler for Cosmos Protobufs to generate libraries for Cosmos blockchains.',
1621
link: 'https://github.com/hyperweb-io/telescope',
1722
},
18-
{
19-
name: 'TS Codegen',
20-
desc: 'The quickest and easiest way to convert CosmWasm Contracts into dev-friendly TypeScript classes.',
21-
link: 'https://github.com/CosmWasm/ts-codegen',
22-
},
23-
{
24-
name: 'CosmWasm Academy',
25-
desc: 'Master CosmWasm and build your secure, multi-chain dApp on any CosmWasm chain!',
26-
link: 'https://academy.cosmwasm.com/',
27-
},
2823
{
2924
name: 'Chain Registry',
3025
desc: 'Get chain and asset list information from the npm package for the Official Cosmos chain registry.',
3126
link: 'https://github.com/hyperweb-io/chain-registry',
3227
},
3328
{
34-
name: 'Videos',
29+
name: 'TS Codegen',
30+
desc: 'The quickest and easiest way to convert CosmWasm Contracts into dev-friendly TypeScript classes.',
31+
link: 'https://github.com/CosmWasm/ts-codegen',
32+
},
33+
{
34+
name: 'Docs',
3535
desc: 'How-to videos from the official Hyperweb website, with learning resources for building in Cosmos.',
3636
link: 'https://hyperweb.io/learn',
3737
},
3838
];
3939

4040
export const dependencies: Project[] = [
41-
{
42-
name: 'InterchainJS',
43-
desc: 'A single, universal signing interface for any network',
44-
link: 'https://github.com/hyperweb-io/interchainjs',
45-
},
4641
{
4742
name: 'Interchain UI',
48-
desc: 'A simple, modular and accessible React Component Library.',
49-
link: 'https://hyperweb.io/components',
43+
desc: 'Cross-framework UI Kit for Crafting dApps.',
44+
link: 'https://github.com/hyperweb-io/interchain-ui',
5045
},
5146
{
5247
name: 'Next.js',

examples/ibc-asset-list/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@
5555
"typescript": "^5.1.6"
5656
},
5757
"packageManager": "[email protected]"
58-
}
58+
}

0 commit comments

Comments
 (0)