Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ Everything is preconfigured, ready-to-go, so you can focus on your code!

- ⚡️ Connect easily to 20+ wallets via [Cosmos Kit](https://github.com/hyperweb-io/cosmos-kit) — including Ledger, Keplr, Cosmostation, Leap, Trust Wallet, OKX, XDEFI, Exodus, Wallet Connect and more!
- ⚛️ Sign and broadcast with [cosmjs](https://github.com/cosmos/cosmjs) stargate + cosmwasm signers
- 🎨 Build awesome UI with [Interchain UI](https://cosmology.zone/products/interchain-ui) and [Explore Components](https://cosmology.zone/components)
- 🎨 Build awesome UI with [Interchain UI](https://hyperweb.io/products/interchain-ui) and [Explore Components](https://hyperweb.io/components)
- 🛠 Render pages with [next.js](https://nextjs.org/) hybrid static & server rendering
- 📝 Leverage [chain-registry](https://github.com/hyperweb-io/chain-registry) for Chain and Asset info for all Cosmos chains

## Education & Resources

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

Checkout [cosmos-kit](https://github.com/hyperweb-io/cosmos-kit) for more docs as well as [cosmos-kit/react](https://github.com/hyperweb-io/cosmos-kit/tree/main/packages/react#signing-clients) for getting cosmjs stargate and cosmjs signers.

Expand Down Expand Up @@ -214,7 +214,7 @@ cca --name liquidity-example --example provide-liquidity
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.

```
cca --name asset-list-example --example asset-list
cca --name ibc-asset-list-example --example ibc-asset-list
```

### NFT
Expand Down
4 changes: 2 additions & 2 deletions boilerplates/telescope/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const {

⚡️ For web interfaces, we recommend using [cosmos-kit](https://github.com/hyperweb-io/cosmos-kit). Continue below to see how to manually construct signers and clients.

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.
Here are the docs on [creating signers](https://docs.hyperweb.io/cosmos-kit) in cosmos-kit that can be used with Keplr and other wallets.

### Initializing the Stargate Client

Expand All @@ -153,7 +153,7 @@ const stargateClient = await getSigning__CHAIN_UPPER__Client({

To broadcast messages, you can create signers with a variety of options:

* [cosmos-kit](https://docs.cosmology.zone/cosmos-kit) (recommended)
* [cosmos-kit](https://docs.hyperweb.io/cosmos-kit) (recommended)
* [keplr](https://docs.keplr.app/api/cosmjs.html)
* [cosmjs](https://gist.github.com/webmaster128/8444d42a7eceeda2544c8a59fbd7e1d9)
### Amino Signer
Expand Down
4 changes: 2 additions & 2 deletions boilerplates/website/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ The npm package for the Official Cosmos chain registry. Get chain and token data

* https://github.com/hyperweb-io/chain-registry

### Cosmology Videos
### Hyperweb Videos

Checkout more videos for how to use various frontend tooling in the Cosmos!

* https://cosmology.zone/learn
* https://hyperweb.io/learn

### Cosmos Kit

Expand Down
4 changes: 2 additions & 2 deletions boilerplates/website/components/common/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export function Footer() {
borderTopStyle="solid"
>
<Text color="$gray500" fontSize="$xs">Built with</Text>
<Link href="https://cosmology.zone/" target="_blank">
<Image src={logo} alt="Cosmology Logo" width={110} />
<Link href="https://hyperweb.io/" target="_blank">
<Image src={logo} alt="Hyperweb Logo" width={110} />
</Link>
</Box>
);
Expand Down
2 changes: 1 addition & 1 deletion boilerplates/website/components/common/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function Hero() {
marginTop: "$7",
}}
>
Cosmology develops cutting-edge tools for the interchain ecosystem,
Hyperweb develops cutting-edge tools for the interchain ecosystem,
empowering seamless interactions across the Internet of Blockchains.
</Text>
<Link href="/components" style={{ display: "inline-block" }}>
Expand Down
2 changes: 1 addition & 1 deletion boilerplates/website/components/common/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function DrawContent({
borderBottomStyle="solid"
>
<Link href="/">
<Image src={logo} alt="Cosmology" width={35} />
<Image src={logo} alt="Hyperweb" width={35} />
</Link>
<Box display="flex" flex="1" justifyContent="end">
<Box attributes={{ onClick: onClose }}>
Expand Down
4 changes: 2 additions & 2 deletions boilerplates/website/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@cosmology/website",
"name": "@hyperweb/website",
"version": "1.0.0",
"private": true,
"scripts": {
Expand Down Expand Up @@ -36,4 +36,4 @@
"generate-lockfile": "0.0.12",
"typescript": "^5.1.6"
}
}
}
4 changes: 2 additions & 2 deletions examples/authz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ The npm package for the Official Cosmos chain registry. Get chain and token data

* https://github.com/hyperweb-io/chain-registry

### Cosmology Videos
### Hyperweb Videos

Checkout more videos for how to use various frontend tooling in the Cosmos!

* https://cosmology.zone/learn
* https://hyperweb.io/learn

### Cosmos Kit

Expand Down
4 changes: 2 additions & 2 deletions examples/authz/components/common/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ export function Footer() {
}}
>
<Text>Built with</Text>
<Link href="https://cosmology.zone/" target="_blank">
Cosmology
<Link href="https://hyperweb.io/" target="_blank">
Hyperweb
</Link>
</Stack>
</>
Expand Down
4 changes: 2 additions & 2 deletions examples/authz/configs/features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export const products: Project[] = [
},
{
name: 'Videos',
desc: 'How-to videos from the official Cosmology website, with learning resources for building in Cosmos.',
link: 'https://cosmology.zone/learn',
desc: 'How-to videos from the official Hyperweb website, with learning resources for building in Cosmos.',
link: 'https://hyperweb.io/learn',
},
];

Expand Down
4 changes: 2 additions & 2 deletions examples/authz/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@cosmology/authz",
"name": "@hyperweb/authz",
"version": "1.1.1",
"private": true,
"scripts": {
Expand Down Expand Up @@ -83,4 +83,4 @@
"typescript": "^5.1.6"
},
"packageManager": "[email protected]"
}
}
2 changes: 1 addition & 1 deletion examples/authz/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) {
metadata: {
name: 'Cosmos Kit dApp',
description: 'Cosmos Kit dApp built by Create Cosmos App',
url: 'https://docs.cosmology.zone/cosmos-kit/',
url: 'https://docs.hyperweb.io/cosmos-kit/',
icons: [],
},
},
Expand Down
4 changes: 2 additions & 2 deletions examples/grpc-web-grpc-gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ The npm package for the Official Cosmos chain registry. Get chain and token data

* https://github.com/hyperweb-io/chain-registry

### Cosmology Videos
### Hyperweb Videos

Checkout more videos for how to use various frontend tooling in the Cosmos!

* https://cosmology.zone/learn
* https://hyperweb.io/learn

### Cosmos Kit

Expand Down
6 changes: 3 additions & 3 deletions examples/grpc-web-grpc-gateway/config/features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ export const products: FeatureProps[] = [
},
{
title: 'Videos',
text: 'How-to videos from the official Cosmology website, with learning resources for building in Cosmos.',
href: 'https://cosmology.zone/learn'
text: 'How-to videos from the official Hyperweb website, with learning resources for building in Cosmos.',
href: 'https://hyperweb.io/learn'
}
];

export const dependencies: FeatureProps[] = [
{
title: 'Interchain UI',
text: 'A simple, modular and accessible React Component Library.',
href: 'https://cosmology.zone/components'
href: 'https://hyperweb.io/components'
},
{
title: 'Next.js',
Expand Down
4 changes: 2 additions & 2 deletions examples/grpc-web-grpc-gateway/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@cosmology/grpc-web-grpc-gateway",
"name": "@hyperweb/grpc-web-grpc-gateway",
"version": "1.1.1",
"private": true,
"scripts": {
Expand Down Expand Up @@ -56,4 +56,4 @@
"generate-lockfile": "0.0.12",
"typescript": "^5.1.6"
}
}
}
2 changes: 1 addition & 1 deletion examples/grpc-web-grpc-gateway/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) {
metadata: {
name: 'Cosmos Kit dApp',
description: 'Cosmos Kit dApp built by Create Cosmos App',
url: 'https://docs.cosmology.zone/cosmos-kit/',
url: 'https://docs.hyperweb.io/cosmos-kit/',
icons: [],
},
},
Expand Down
4 changes: 2 additions & 2 deletions examples/grpc-web-grpc-gateway/pages/grpc-gateway.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,11 @@ export default function Home() {
>
<Text>Built with</Text>
<Link
href="https://cosmology.zone/"
href="https://hyperweb.io/"
target="_blank"
rel="noopener noreferrer"
>
Cosmology
Hyperweb
</Link>
</Stack>
</Container>
Expand Down
4 changes: 2 additions & 2 deletions examples/grpc-web-grpc-gateway/pages/grpc-web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -278,11 +278,11 @@ export default function Home() {
>
<Text>Built with</Text>
<Link
href="https://cosmology.zone/"
href="https://hyperweb.io/"
target="_blank"
rel="noopener noreferrer"
>
Cosmology
Hyperweb
</Link>
</Stack>
</Container>
Expand Down
4 changes: 2 additions & 2 deletions examples/grpc-web-grpc-gateway/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,11 +101,11 @@ export default function Home() {
>
<Text>Built with</Text>
<Link
href="https://cosmology.zone/"
href="https://hyperweb.io/"
target="_blank"
rel="noopener noreferrer"
>
Cosmology
Hyperweb
</Link>
</Stack>
</Container>
Expand Down
4 changes: 2 additions & 2 deletions examples/ibc-asset-list/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ The npm package for the Official Cosmos chain registry. Get chain and token data

* https://github.com/hyperweb-io/chain-registry

### Cosmology Videos
### Hyperweb Videos

Checkout more videos for how to use various frontend tooling in the Cosmos!

* https://cosmology.zone/learn
* https://hyperweb.io/learn

### Cosmos Kit

Expand Down
4 changes: 2 additions & 2 deletions examples/ibc-asset-list/components/common/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ export function Footer() {
}}
>
<Text>Built with</Text>
<Link href="https://cosmology.zone/" target="_blank">
Cosmology
<Link href="https://hyperweb.io/" target="_blank">
Hyperweb
</Link>
</Stack>
</>
Expand Down
6 changes: 3 additions & 3 deletions examples/ibc-asset-list/config/features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export const products: Project[] = [
},
{
name: 'Videos',
desc: 'How-to videos from the official Cosmology website, with learning resources for building in Cosmos.',
link: 'https://cosmology.zone/learn',
desc: 'How-to videos from the official Hyperweb website, with learning resources for building in Cosmos.',
link: 'https://hyperweb.io/learn',
},
];

Expand All @@ -46,7 +46,7 @@ export const dependencies: Project[] = [
{
name: 'Interchain UI',
desc: 'A simple, modular and accessible React Component Library.',
link: 'https://cosmology.zone/components',
link: 'https://hyperweb.io/components',
},
{
name: 'Next.js',
Expand Down
2 changes: 1 addition & 1 deletion examples/ibc-asset-list/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) {
metadata: {
name: 'Cosmos Kit dApp',
description: 'Cosmos Kit dApp built by Create Cosmos App',
url: 'https://docs.cosmology.zone/cosmos-kit/',
url: 'https://docs.hyperweb.io/cosmos-kit/',
icons: [],
},
},
Expand Down
4 changes: 2 additions & 2 deletions examples/injective-vue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ The npm package for the Official Cosmos chain registry. Get chain and token data

* https://github.com/hyperweb-io/chain-registry

### Cosmology Videos
### Hyperweb Videos

Checkout more videos for how to use various frontend tooling in the Cosmos!

* https://cosmology.zone/learn
* https://hyperweb.io/learn

### Interchain Kit

Expand Down
6 changes: 3 additions & 3 deletions examples/injective-vue/src/config/asset-list/features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export const products: Project[] = [
},
{
name: 'Videos',
desc: 'How-to videos from the official Cosmology website, with learning resources for building in Cosmos.',
link: 'https://cosmology.zone/learn',
desc: 'How-to videos from the official Hyperweb website, with learning resources for building in Cosmos.',
link: 'https://hyperweb.io/learn',
},
];

Expand All @@ -46,7 +46,7 @@ export const dependencies: Project[] = [
{
name: 'Interchain UI',
desc: 'A simple, modular and accessible React Component Library.',
link: 'https://cosmology.zone/components',
link: 'https://hyperweb.io/components',
},
{
name: 'Next.js',
Expand Down
4 changes: 2 additions & 2 deletions examples/injective/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ The npm package for the Official Cosmos chain registry. Get chain and token data

* https://github.com/hyperweb-io/chain-registry

### Cosmology Videos
### Hyperweb Videos

Checkout more videos for how to use various frontend tooling in the Cosmos!

* https://cosmology.zone/learn
* https://hyperweb.io/learn

### Interchain Kit

Expand Down
4 changes: 2 additions & 2 deletions examples/injective/components/common/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ export function Footer() {
}}
>
<Text>Built with</Text>
<Link href="https://cosmology.zone/" target="_blank">
Cosmology
<Link href="https://hyperweb.io/" target="_blank">
Hyperweb
</Link>
</Stack>
</>
Expand Down
6 changes: 3 additions & 3 deletions examples/injective/config/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export const products: Project[] = [
},
{
name: 'Videos',
desc: 'How-to videos from the official Cosmology website, with learning resources for building in Cosmos.',
link: 'https://cosmology.zone/learn',
desc: 'How-to videos from the official Hyperweb website, with learning resources for building in Cosmos.',
link: 'https://hyperweb.io/learn',
},
];

Expand All @@ -46,7 +46,7 @@ export const dependencies: Project[] = [
{
name: 'Interchain UI',
desc: 'A simple, modular and cross-framework Component Library for Cosmos',
link: 'https://cosmology.zone/components',
link: 'https://hyperweb.io/components',
},
{
name: 'Next.js',
Expand Down
Loading
Loading