diff --git a/README.md b/README.md index 36bc6b6b7..a479cfb0b 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 diff --git a/boilerplates/telescope/README.md b/boilerplates/telescope/README.md index ee83f2526..c04745408 100644 --- a/boilerplates/telescope/README.md +++ b/boilerplates/telescope/README.md @@ -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 @@ -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 diff --git a/boilerplates/website/README.md b/boilerplates/website/README.md index 5ecee5fab..a984ff1b4 100644 --- a/boilerplates/website/README.md +++ b/boilerplates/website/README.md @@ -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 diff --git a/boilerplates/website/components/common/Footer.tsx b/boilerplates/website/components/common/Footer.tsx index 676ae71e0..7d0291ebb 100644 --- a/boilerplates/website/components/common/Footer.tsx +++ b/boilerplates/website/components/common/Footer.tsx @@ -17,8 +17,8 @@ export function Footer() { borderTopStyle="solid" > Built with - - Cosmology Logo + + Hyperweb Logo ); diff --git a/boilerplates/website/components/common/Hero.tsx b/boilerplates/website/components/common/Hero.tsx index ba44da93d..6df8372ff 100644 --- a/boilerplates/website/components/common/Hero.tsx +++ b/boilerplates/website/components/common/Hero.tsx @@ -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. diff --git a/boilerplates/website/components/common/Layout.tsx b/boilerplates/website/components/common/Layout.tsx index 30a59641b..fe3e6945b 100644 --- a/boilerplates/website/components/common/Layout.tsx +++ b/boilerplates/website/components/common/Layout.tsx @@ -43,7 +43,7 @@ function DrawContent({ borderBottomStyle="solid" > - Cosmology + Hyperweb diff --git a/boilerplates/website/package.json b/boilerplates/website/package.json index 7a2d19f24..965a55093 100644 --- a/boilerplates/website/package.json +++ b/boilerplates/website/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/website", + "name": "@hyperweb/website", "version": "1.0.0", "private": true, "scripts": { @@ -36,4 +36,4 @@ "generate-lockfile": "0.0.12", "typescript": "^5.1.6" } -} +} \ No newline at end of file diff --git a/examples/authz/README.md b/examples/authz/README.md index 5ecee5fab..a984ff1b4 100644 --- a/examples/authz/README.md +++ b/examples/authz/README.md @@ -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 diff --git a/examples/authz/components/common/Footer.tsx b/examples/authz/components/common/Footer.tsx index a1d352e1c..527bc781d 100644 --- a/examples/authz/components/common/Footer.tsx +++ b/examples/authz/components/common/Footer.tsx @@ -160,8 +160,8 @@ export function Footer() { }} > Built with - - Cosmology + + Hyperweb diff --git a/examples/authz/configs/features.ts b/examples/authz/configs/features.ts index 52858e23d..094b9a521 100644 --- a/examples/authz/configs/features.ts +++ b/examples/authz/configs/features.ts @@ -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', }, ]; diff --git a/examples/authz/package.json b/examples/authz/package.json index 2f2f477f7..744a33a00 100644 --- a/examples/authz/package.json +++ b/examples/authz/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/authz", + "name": "@hyperweb/authz", "version": "1.1.1", "private": true, "scripts": { @@ -83,4 +83,4 @@ "typescript": "^5.1.6" }, "packageManager": "yarn@4.3.0" -} +} \ No newline at end of file diff --git a/examples/authz/pages/_app.tsx b/examples/authz/pages/_app.tsx index 9ffd68c8b..fb5944e3d 100644 --- a/examples/authz/pages/_app.tsx +++ b/examples/authz/pages/_app.tsx @@ -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: [], }, }, diff --git a/examples/grpc-web-grpc-gateway/README.md b/examples/grpc-web-grpc-gateway/README.md index 5ecee5fab..a984ff1b4 100644 --- a/examples/grpc-web-grpc-gateway/README.md +++ b/examples/grpc-web-grpc-gateway/README.md @@ -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 diff --git a/examples/grpc-web-grpc-gateway/config/features.ts b/examples/grpc-web-grpc-gateway/config/features.ts index c015c0338..994a4be32 100644 --- a/examples/grpc-web-grpc-gateway/config/features.ts +++ b/examples/grpc-web-grpc-gateway/config/features.ts @@ -28,8 +28,8 @@ 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' } ]; @@ -37,7 +37,7 @@ 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', diff --git a/examples/grpc-web-grpc-gateway/package.json b/examples/grpc-web-grpc-gateway/package.json index f798aabf1..5fcba601e 100644 --- a/examples/grpc-web-grpc-gateway/package.json +++ b/examples/grpc-web-grpc-gateway/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/grpc-web-grpc-gateway", + "name": "@hyperweb/grpc-web-grpc-gateway", "version": "1.1.1", "private": true, "scripts": { @@ -56,4 +56,4 @@ "generate-lockfile": "0.0.12", "typescript": "^5.1.6" } -} +} \ No newline at end of file diff --git a/examples/grpc-web-grpc-gateway/pages/_app.tsx b/examples/grpc-web-grpc-gateway/pages/_app.tsx index 330e5de52..2fec2648e 100644 --- a/examples/grpc-web-grpc-gateway/pages/_app.tsx +++ b/examples/grpc-web-grpc-gateway/pages/_app.tsx @@ -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: [], }, }, diff --git a/examples/grpc-web-grpc-gateway/pages/grpc-gateway.tsx b/examples/grpc-web-grpc-gateway/pages/grpc-gateway.tsx index e4396eee2..4ed7673ee 100644 --- a/examples/grpc-web-grpc-gateway/pages/grpc-gateway.tsx +++ b/examples/grpc-web-grpc-gateway/pages/grpc-gateway.tsx @@ -272,11 +272,11 @@ export default function Home() { > Built with - Cosmology + Hyperweb diff --git a/examples/grpc-web-grpc-gateway/pages/grpc-web.tsx b/examples/grpc-web-grpc-gateway/pages/grpc-web.tsx index ca07617df..ed3c0ee0d 100644 --- a/examples/grpc-web-grpc-gateway/pages/grpc-web.tsx +++ b/examples/grpc-web-grpc-gateway/pages/grpc-web.tsx @@ -278,11 +278,11 @@ export default function Home() { > Built with - Cosmology + Hyperweb diff --git a/examples/grpc-web-grpc-gateway/pages/index.tsx b/examples/grpc-web-grpc-gateway/pages/index.tsx index d0569e29f..50d8e9d2a 100644 --- a/examples/grpc-web-grpc-gateway/pages/index.tsx +++ b/examples/grpc-web-grpc-gateway/pages/index.tsx @@ -101,11 +101,11 @@ export default function Home() { > Built with - Cosmology + Hyperweb diff --git a/examples/ibc-asset-list/README.md b/examples/ibc-asset-list/README.md index 5ecee5fab..a984ff1b4 100644 --- a/examples/ibc-asset-list/README.md +++ b/examples/ibc-asset-list/README.md @@ -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 diff --git a/examples/ibc-asset-list/components/common/Footer.tsx b/examples/ibc-asset-list/components/common/Footer.tsx index 45b322e1a..83840b3a9 100644 --- a/examples/ibc-asset-list/components/common/Footer.tsx +++ b/examples/ibc-asset-list/components/common/Footer.tsx @@ -169,8 +169,8 @@ export function Footer() { }} > Built with - - Cosmology + + Hyperweb diff --git a/examples/ibc-asset-list/config/features.ts b/examples/ibc-asset-list/config/features.ts index cf69f64c2..5515daf3c 100644 --- a/examples/ibc-asset-list/config/features.ts +++ b/examples/ibc-asset-list/config/features.ts @@ -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', }, ]; @@ -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', diff --git a/examples/ibc-asset-list/pages/_app.tsx b/examples/ibc-asset-list/pages/_app.tsx index 0be869e1a..f85ad90b9 100644 --- a/examples/ibc-asset-list/pages/_app.tsx +++ b/examples/ibc-asset-list/pages/_app.tsx @@ -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: [], }, }, diff --git a/examples/injective-vue/README.md b/examples/injective-vue/README.md index b449648e6..4c728bba2 100644 --- a/examples/injective-vue/README.md +++ b/examples/injective-vue/README.md @@ -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 diff --git a/examples/injective-vue/src/config/asset-list/features.ts b/examples/injective-vue/src/config/asset-list/features.ts index cf69f64c2..5515daf3c 100644 --- a/examples/injective-vue/src/config/asset-list/features.ts +++ b/examples/injective-vue/src/config/asset-list/features.ts @@ -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', }, ]; @@ -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', diff --git a/examples/injective/README.md b/examples/injective/README.md index 21e2eb545..1743f0e24 100644 --- a/examples/injective/README.md +++ b/examples/injective/README.md @@ -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 diff --git a/examples/injective/components/common/Footer.tsx b/examples/injective/components/common/Footer.tsx index abdb60da5..87b8446bc 100644 --- a/examples/injective/components/common/Footer.tsx +++ b/examples/injective/components/common/Footer.tsx @@ -132,8 +132,8 @@ export function Footer() { }} > Built with - - Cosmology + + Hyperweb diff --git a/examples/injective/config/projects.ts b/examples/injective/config/projects.ts index 9e3fd0f3f..252da6c7e 100644 --- a/examples/injective/config/projects.ts +++ b/examples/injective/config/projects.ts @@ -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', }, ]; @@ -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', diff --git a/examples/injective/package.json b/examples/injective/package.json index c1d2fbaa1..66b316754 100644 --- a/examples/injective/package.json +++ b/examples/injective/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/injective", + "name": "@hyperweb/injective", "version": "1.1.1", "private": true, "scripts": { @@ -61,4 +61,4 @@ "typescript": "^5.1.6" }, "packageManager": "yarn@4.3.0" -} +} \ No newline at end of file diff --git a/examples/interchainjs-demo/README.md b/examples/interchainjs-demo/README.md index b92fc8130..91ac9c711 100644 --- a/examples/interchainjs-demo/README.md +++ b/examples/interchainjs-demo/README.md @@ -18,11 +18,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 diff --git a/examples/interchainjs-demo/components/common/Footer.tsx b/examples/interchainjs-demo/components/common/Footer.tsx index abdb60da5..87b8446bc 100644 --- a/examples/interchainjs-demo/components/common/Footer.tsx +++ b/examples/interchainjs-demo/components/common/Footer.tsx @@ -132,8 +132,8 @@ export function Footer() { }} > Built with - - Cosmology + + Hyperweb diff --git a/examples/interchainjs-demo/config/projects.ts b/examples/interchainjs-demo/config/projects.ts index 9e3fd0f3f..252da6c7e 100644 --- a/examples/interchainjs-demo/config/projects.ts +++ b/examples/interchainjs-demo/config/projects.ts @@ -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', }, ]; @@ -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', diff --git a/examples/interchainjs-demo/package.json b/examples/interchainjs-demo/package.json index ba0acd863..6d91c5c5c 100644 --- a/examples/interchainjs-demo/package.json +++ b/examples/interchainjs-demo/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/interchainjs-demo", + "name": "@hyperweb/interchainjs-demo", "version": "1.1.1", "private": true, "scripts": { @@ -61,4 +61,4 @@ "typescript": "^5.1.6" }, "packageManager": "yarn@4.3.0" -} +} \ No newline at end of file diff --git a/examples/nft/README.md b/examples/nft/README.md index 5ecee5fab..a984ff1b4 100644 --- a/examples/nft/README.md +++ b/examples/nft/README.md @@ -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 diff --git a/examples/nft/components/common/Footer.tsx b/examples/nft/components/common/Footer.tsx index abdb60da5..87b8446bc 100644 --- a/examples/nft/components/common/Footer.tsx +++ b/examples/nft/components/common/Footer.tsx @@ -132,8 +132,8 @@ export function Footer() { }} > Built with - - Cosmology + + Hyperweb diff --git a/examples/nft/config/projects.ts b/examples/nft/config/projects.ts index a7cfe55bc..92b02258b 100644 --- a/examples/nft/config/projects.ts +++ b/examples/nft/config/projects.ts @@ -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', }, ]; @@ -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', diff --git a/examples/nft/package.json b/examples/nft/package.json index 87d435620..a825b2322 100644 --- a/examples/nft/package.json +++ b/examples/nft/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/nft", + "name": "@hyperweb/nft", "version": "1.1.1", "private": true, "scripts": { @@ -49,4 +49,4 @@ "typescript": "^5.1.6" }, "packageManager": "yarn@4.3.0" -} +} \ No newline at end of file diff --git a/examples/nft/pages/_app.tsx b/examples/nft/pages/_app.tsx index 627d8c244..070be66b5 100644 --- a/examples/nft/pages/_app.tsx +++ b/examples/nft/pages/_app.tsx @@ -57,7 +57,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: [], }, }, diff --git a/examples/provide-liquidity/README.md b/examples/provide-liquidity/README.md index 5ecee5fab..a984ff1b4 100644 --- a/examples/provide-liquidity/README.md +++ b/examples/provide-liquidity/README.md @@ -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 diff --git a/examples/provide-liquidity/components/common/Footer.tsx b/examples/provide-liquidity/components/common/Footer.tsx index 4d650ba2e..c48607122 100644 --- a/examples/provide-liquidity/components/common/Footer.tsx +++ b/examples/provide-liquidity/components/common/Footer.tsx @@ -118,11 +118,11 @@ export const Footer = () => { > Built with - Cosmology + Hyperweb diff --git a/examples/provide-liquidity/config/features.ts b/examples/provide-liquidity/config/features.ts index 4ecda8fed..615cbf75a 100644 --- a/examples/provide-liquidity/config/features.ts +++ b/examples/provide-liquidity/config/features.ts @@ -32,8 +32,8 @@ 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', }, ]; @@ -46,7 +46,7 @@ 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', diff --git a/examples/provide-liquidity/package.json b/examples/provide-liquidity/package.json index 88f6670ff..d5c58cbc2 100644 --- a/examples/provide-liquidity/package.json +++ b/examples/provide-liquidity/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/provide-liquidity", + "name": "@hyperweb/provide-liquidity", "version": "1.1.1", "private": true, "scripts": { @@ -54,4 +54,4 @@ "generate-lockfile": "0.0.12", "typescript": "^5.1.6" } -} +} \ No newline at end of file diff --git a/examples/provide-liquidity/pages/_app.tsx b/examples/provide-liquidity/pages/_app.tsx index c3aaeef42..c36e0aab3 100644 --- a/examples/provide-liquidity/pages/_app.tsx +++ b/examples/provide-liquidity/pages/_app.tsx @@ -58,7 +58,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: [], }, }, diff --git a/examples/rollkit/README.md b/examples/rollkit/README.md index 5ecee5fab..a984ff1b4 100644 --- a/examples/rollkit/README.md +++ b/examples/rollkit/README.md @@ -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 diff --git a/examples/rollkit/components/common/Footer.tsx b/examples/rollkit/components/common/Footer.tsx index ca89213b3..7b15a0540 100644 --- a/examples/rollkit/components/common/Footer.tsx +++ b/examples/rollkit/components/common/Footer.tsx @@ -149,8 +149,8 @@ export function Footer() { }} > Built with - - Cosmology + + Hyperweb diff --git a/examples/rollkit/config/projects.ts b/examples/rollkit/config/projects.ts index aad01cf7c..73efa3dd7 100644 --- a/examples/rollkit/config/projects.ts +++ b/examples/rollkit/config/projects.ts @@ -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.tech/learn', + desc: 'How-to videos from the official Hyperweb website, with learning resources for building in Cosmos.', + link: 'https://hyperweb.io/learn', }, ]; diff --git a/examples/rollkit/package.json b/examples/rollkit/package.json index 3e787994e..6efb23849 100644 --- a/examples/rollkit/package.json +++ b/examples/rollkit/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/rollkit", + "name": "@hyperweb/rollkit", "version": "1.1.1", "private": true, "scripts": { @@ -45,4 +45,4 @@ "generate-lockfile": "0.0.12", "typescript": "^5.1.6" } -} +} \ No newline at end of file diff --git a/examples/rollkit/pages/_app.tsx b/examples/rollkit/pages/_app.tsx index 273e9641c..764536198 100644 --- a/examples/rollkit/pages/_app.tsx +++ b/examples/rollkit/pages/_app.tsx @@ -34,7 +34,7 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { metadata: { name: "Cosmos Kit Template", description: "Cosmos Kit dapp template", - url: "https://docs.cosmology.zone/cosmos-kit/", + url: "https://docs.hyperweb.io/cosmos-kit/", icons: [], }, }, diff --git a/examples/spawn/README.md b/examples/spawn/README.md index cab223d73..08cf310c1 100644 --- a/examples/spawn/README.md +++ b/examples/spawn/README.md @@ -28,11 +28,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 diff --git a/examples/spawn/components/common/Footer.tsx b/examples/spawn/components/common/Footer.tsx index 00f597204..ab07950e5 100644 --- a/examples/spawn/components/common/Footer.tsx +++ b/examples/spawn/components/common/Footer.tsx @@ -21,7 +21,7 @@ export const Footer = () => { gap="4px" > - © {new Date().getFullYear()} Cosmology + © {new Date().getFullYear()} Hyperweb {isMobile ? : } diff --git a/examples/spawn/config/products.ts b/examples/spawn/config/products.ts index 193111c90..336fd9638 100644 --- a/examples/spawn/config/products.ts +++ b/examples/spawn/config/products.ts @@ -16,70 +16,70 @@ export const products: Product[] = [ name: 'Cosmos Kit', description: 'A wallet adapter for react with mobile WalletConnect support for the Cosmos ecosystem.', - link: 'https://cosmology.zone/products/cosmos-kit', + link: 'https://hyperweb.io/products/cosmos-kit', category: 'frontend', }, { name: 'Telescope', description: 'A TypeScript Transpiler for Cosmos Protobufs to generate libraries for Cosmos blockchains.', - link: 'https://cosmology.zone/products/telescope', + link: 'https://hyperweb.io/products/telescope', category: 'cosmos-sdk', }, { name: 'Interchain UI', description: 'A simple, modular and cross-framework component library for Cosmos ecosystem.', - link: 'https://cosmology.zone/products/interchain-ui', + link: 'https://hyperweb.io/products/interchain-ui', category: 'frontend', }, { name: 'TS Codegen', description: 'The quickest and easiest way to convert CosmWasm Contracts into dev-friendly TypeScript classes.', - link: 'https://cosmology.zone/products/ts-codegen', + link: 'https://hyperweb.io/products/ts-codegen', category: 'cosmwasm', }, { name: 'Chain Registry', description: 'Get chain and asset list information from the npm package for the Official Cosmos chain registry.', - link: 'https://cosmology.zone/products/chain-registry', + link: 'https://hyperweb.io/products/chain-registry', category: 'frontend', }, { name: 'OsmoJS', description: 'OsmosJS makes it easy to compose and broadcast Osmosis and Cosmos messages.', - link: 'https://cosmology.zone/products/osmojs', + link: 'https://hyperweb.io/products/osmojs', category: 'frontend', }, { name: 'Starship', description: 'Starship makes it easy to build a universal interchain development environment in k8s.', - link: 'https://cosmology.zone/products/starship', + link: 'https://hyperweb.io/products/starship', category: 'testing', }, { name: 'Create Cosmos App', description: 'One-Command Setup for Modern Cosmos dApps. Speed up your development and bootstrap new web3 dApps quickly.', - link: 'https://cosmology.zone/products/create-cosmos-app', + link: 'https://hyperweb.io/products/create-cosmos-app', category: 'frontend', }, { name: 'CosmWasm Academy', description: 'Master CosmWasm and build your secure, multi-chain dApp on any CosmWasm chain!', - link: 'https://cosmology.zone/learn/ts-codegen', + link: 'https://hyperweb.io/learn/ts-codegen', category: 'cosmwasm', }, { name: 'Videos', description: - 'How-to videos from the official Cosmology website, with learning resources for building in Cosmos.', - link: 'https://cosmology.zone/learn', + 'How-to videos from the official Hyperweb website, with learning resources for building in Cosmos.', + link: 'https://hyperweb.io/learn', category: 'frontend', }, { diff --git a/examples/spawn/package.json b/examples/spawn/package.json index c784b50c1..9cdbde01d 100644 --- a/examples/spawn/package.json +++ b/examples/spawn/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/spawn", + "name": "@hyperweb/spawn", "version": "1.2.0", "private": true, "scripts": { @@ -56,4 +56,4 @@ "generate-lockfile": "0.0.12", "typescript": "4.9.3" } -} +} \ No newline at end of file diff --git a/examples/spawn/pages/_app.tsx b/examples/spawn/pages/_app.tsx index 2bb1827e6..7222797fe 100644 --- a/examples/spawn/pages/_app.tsx +++ b/examples/spawn/pages/_app.tsx @@ -39,7 +39,7 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { metadata: { name: 'CosmosKit Template', description: 'CosmosKit dapp template', - url: 'https://docs.cosmology.zone/cosmos-kit/', + url: 'https://docs.hyperweb.io/cosmos-kit/', icons: [], }, }, diff --git a/examples/spawn/pages/disclaimer.tsx b/examples/spawn/pages/disclaimer.tsx index 57962147d..4d5667b84 100644 --- a/examples/spawn/pages/disclaimer.tsx +++ b/examples/spawn/pages/disclaimer.tsx @@ -9,15 +9,15 @@ export default function Disclaimer() { The information provided on this website does not constitute investment advice, financial advice, trading advice, or any other sort of advice and you should not treat any of the website's content as such. - Cosmology does not recommend that any cryptocurrency should be bought, + Hyperweb does not recommend that any cryptocurrency should be bought, sold, or held by you. Do conduct your own due diligence and consult your financial advisor before making any investment decisions. Accuracy of Information - Cosmology will strive to ensure accuracy of information listed on this + Hyperweb will strive to ensure accuracy of information listed on this website although it will not hold any responsibility for any missing or - wrong information. Cosmology provides all information as is. You + wrong information. Hyperweb provides all information as is. You understand that you are using any and all information available here at your own risk. @@ -30,17 +30,17 @@ export default function Disclaimer() { Tax Compliance - The users of Cosmology app are solely responsible to determinate what, + The users of Hyperweb app are solely responsible to determinate what, if any, taxes apply to their cryptocurrency transactions. The owners of, - or contributors to, the Cosmology app are NOT responsible for + or contributors to, the Hyperweb app are NOT responsible for determining the taxes that apply to cryptocurrency transactions. Software Disclaimer - Cosmology leverages decentralized peer-to-peer blockchains that people + Hyperweb leverages decentralized peer-to-peer blockchains that people can use to create liquidity and trade IBC enabled tokens. These blockchains are made up of free, public, and open-source software. Your - use of Cosmology involves various risks, including, but not limited, to + use of Hyperweb involves various risks, including, but not limited, to losses while digital assets are being supplied to liquidity pools and losses due to the fluctuation of prices of tokens in a trading pair or liquidity pool, including Impermanence Loss. Before using any pool on @@ -53,14 +53,14 @@ export default function Disclaimer() { understand the fees and risks they present. AS DESCRIBED IN THE COSMOLOGY LICENSES, THE SOFTWARE IS PROVIDED “AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND. Although Web, Inc. ( “Web Incubator” - ) developed much of the initial code for the Cosmology app, it does not + ) developed much of the initial code for the Hyperweb app, it does not provide, own, or control the leveraged blockchain protocols, which are run by decentralized validator sets. Upgrades and modifications to these protocol are managed in a community-driven way by holders of various - governance tokens. No developer or entity involved in creating Cosmology + governance tokens. No developer or entity involved in creating Hyperweb will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the - Cosmology app, including any direct, indirect, incidental, special, + Hyperweb app, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value. diff --git a/examples/stake-tokens/README.md b/examples/stake-tokens/README.md index 5ecee5fab..a984ff1b4 100644 --- a/examples/stake-tokens/README.md +++ b/examples/stake-tokens/README.md @@ -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 diff --git a/examples/stake-tokens/components/common/Footer.tsx b/examples/stake-tokens/components/common/Footer.tsx index eeeb01914..6c372d76e 100644 --- a/examples/stake-tokens/components/common/Footer.tsx +++ b/examples/stake-tokens/components/common/Footer.tsx @@ -157,8 +157,8 @@ export function Footer() { }} > Built with - - Cosmology + + Hyperweb diff --git a/examples/stake-tokens/config/features.ts b/examples/stake-tokens/config/features.ts index 52858e23d..094b9a521 100644 --- a/examples/stake-tokens/config/features.ts +++ b/examples/stake-tokens/config/features.ts @@ -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', }, ]; diff --git a/examples/stake-tokens/package.json b/examples/stake-tokens/package.json index 369e15ed0..818df7dcf 100644 --- a/examples/stake-tokens/package.json +++ b/examples/stake-tokens/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/stake-tokens", + "name": "@hyperweb/stake-tokens", "version": "1.1.1", "private": true, "scripts": { @@ -41,4 +41,4 @@ "typescript": "^5.5.4" }, "packageManager": "yarn@4.3.0" -} +} \ No newline at end of file diff --git a/examples/stake-tokens/pages/_app.tsx b/examples/stake-tokens/pages/_app.tsx index 9be3c66b6..43636a9d8 100644 --- a/examples/stake-tokens/pages/_app.tsx +++ b/examples/stake-tokens/pages/_app.tsx @@ -64,7 +64,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: [], }, }, diff --git a/examples/swap-tokens/README.md b/examples/swap-tokens/README.md index 5ecee5fab..a984ff1b4 100644 --- a/examples/swap-tokens/README.md +++ b/examples/swap-tokens/README.md @@ -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 diff --git a/examples/swap-tokens/components/common/Footer.tsx b/examples/swap-tokens/components/common/Footer.tsx index abdb60da5..87b8446bc 100644 --- a/examples/swap-tokens/components/common/Footer.tsx +++ b/examples/swap-tokens/components/common/Footer.tsx @@ -132,8 +132,8 @@ export function Footer() { }} > Built with - - Cosmology + + Hyperweb diff --git a/examples/swap-tokens/config/projects.ts b/examples/swap-tokens/config/projects.ts index 0c1d54349..920252027 100644 --- a/examples/swap-tokens/config/projects.ts +++ b/examples/swap-tokens/config/projects.ts @@ -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', }, ]; @@ -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', diff --git a/examples/swap-tokens/package.json b/examples/swap-tokens/package.json index 61f6d22ca..bf52145a4 100644 --- a/examples/swap-tokens/package.json +++ b/examples/swap-tokens/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/swap-tokens", + "name": "@hyperweb/swap-tokens", "version": "1.1.1", "private": true, "scripts": { @@ -52,4 +52,4 @@ "typescript": "^5.1.6" }, "packageManager": "yarn@4.3.0" -} +} \ No newline at end of file diff --git a/examples/swap-tokens/pages/_app.tsx b/examples/swap-tokens/pages/_app.tsx index 5d3512333..a91fd21b8 100644 --- a/examples/swap-tokens/pages/_app.tsx +++ b/examples/swap-tokens/pages/_app.tsx @@ -61,7 +61,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: [], }, }, diff --git a/examples/telescope-with-contracts/README.md b/examples/telescope-with-contracts/README.md index 367e3f86d..e9376054f 100644 --- a/examples/telescope-with-contracts/README.md +++ b/examples/telescope-with-contracts/README.md @@ -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 diff --git a/examples/telescope-with-contracts/config/features.ts b/examples/telescope-with-contracts/config/features.ts index c015c0338..994a4be32 100644 --- a/examples/telescope-with-contracts/config/features.ts +++ b/examples/telescope-with-contracts/config/features.ts @@ -28,8 +28,8 @@ 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' } ]; @@ -37,7 +37,7 @@ 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', diff --git a/examples/telescope-with-contracts/package.json b/examples/telescope-with-contracts/package.json index 5c015c562..e99deb932 100644 --- a/examples/telescope-with-contracts/package.json +++ b/examples/telescope-with-contracts/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/telescope-contracts", + "name": "@hyperweb/telescope-contracts", "version": "1.1.1", "private": true, "scripts": { @@ -60,4 +60,4 @@ "generate-lockfile": "0.0.12", "typescript": "^5.1.6" } -} +} \ No newline at end of file diff --git a/examples/telescope-with-contracts/pages/_app.tsx b/examples/telescope-with-contracts/pages/_app.tsx index 479b10ec3..c4eb8d4b5 100644 --- a/examples/telescope-with-contracts/pages/_app.tsx +++ b/examples/telescope-with-contracts/pages/_app.tsx @@ -52,7 +52,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: [], }, }, diff --git a/examples/telescope-with-contracts/pages/index.tsx b/examples/telescope-with-contracts/pages/index.tsx index 916f7a604..a1db659ef 100644 --- a/examples/telescope-with-contracts/pages/index.tsx +++ b/examples/telescope-with-contracts/pages/index.tsx @@ -124,11 +124,11 @@ export default function Home() { > Built with - Cosmology + Hyperweb diff --git a/examples/telescope/README.md b/examples/telescope/README.md index 5ecee5fab..a984ff1b4 100644 --- a/examples/telescope/README.md +++ b/examples/telescope/README.md @@ -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 diff --git a/examples/telescope/config/features.ts b/examples/telescope/config/features.ts index c015c0338..994a4be32 100644 --- a/examples/telescope/config/features.ts +++ b/examples/telescope/config/features.ts @@ -28,8 +28,8 @@ 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' } ]; @@ -37,7 +37,7 @@ 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', diff --git a/examples/telescope/config/liquidity/features.ts b/examples/telescope/config/liquidity/features.ts index c015c0338..994a4be32 100644 --- a/examples/telescope/config/liquidity/features.ts +++ b/examples/telescope/config/liquidity/features.ts @@ -28,8 +28,8 @@ 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' } ]; @@ -37,7 +37,7 @@ 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', diff --git a/examples/telescope/package.json b/examples/telescope/package.json index 85971a555..c48ca4e89 100644 --- a/examples/telescope/package.json +++ b/examples/telescope/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/connect-chain-with-telescope", + "name": "@hyperweb/connect-chain-with-telescope", "version": "2.1.1", "private": true, "scripts": { @@ -66,4 +66,4 @@ "typescript": "^5.1.6" }, "packageManager": "yarn@4.3.0" -} +} \ No newline at end of file diff --git a/examples/telescope/pages/_app.tsx b/examples/telescope/pages/_app.tsx index 55e077df6..3e1a34537 100644 --- a/examples/telescope/pages/_app.tsx +++ b/examples/telescope/pages/_app.tsx @@ -54,7 +54,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: [], }, }, diff --git a/examples/telescope/pages/index.tsx b/examples/telescope/pages/index.tsx index 91ea9543f..f58849776 100644 --- a/examples/telescope/pages/index.tsx +++ b/examples/telescope/pages/index.tsx @@ -256,11 +256,11 @@ export default function Home() { > Built with - Cosmology + Hyperweb diff --git a/examples/telescope/pages/liquidity.tsx b/examples/telescope/pages/liquidity.tsx index 62d5848cb..e18dee822 100644 --- a/examples/telescope/pages/liquidity.tsx +++ b/examples/telescope/pages/liquidity.tsx @@ -116,11 +116,11 @@ export default function Home() { > Built with - Cosmology + Hyperweb diff --git a/examples/telescope/pages/mobx.tsx b/examples/telescope/pages/mobx.tsx index 197c01c3e..38cc36158 100644 --- a/examples/telescope/pages/mobx.tsx +++ b/examples/telescope/pages/mobx.tsx @@ -257,11 +257,11 @@ export default observer(function Home() { > Built with - Cosmology + Hyperweb diff --git a/examples/telescope/pages/validator-test.tsx b/examples/telescope/pages/validator-test.tsx index 3edfe2764..d9645a9b9 100644 --- a/examples/telescope/pages/validator-test.tsx +++ b/examples/telescope/pages/validator-test.tsx @@ -298,11 +298,11 @@ export default function Home() { > Built with - Cosmology + Hyperweb diff --git a/examples/telescope/pages/vote.tsx b/examples/telescope/pages/vote.tsx index a95357f3e..c528371b6 100644 --- a/examples/telescope/pages/vote.tsx +++ b/examples/telescope/pages/vote.tsx @@ -98,11 +98,11 @@ export default function Home() { > Built with - Cosmology + Hyperweb diff --git a/examples/vote-proposal/README.md b/examples/vote-proposal/README.md index e61335cd8..0c1145403 100644 --- a/examples/vote-proposal/README.md +++ b/examples/vote-proposal/README.md @@ -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.tech/learn +* https://hyperweb.io/learn ### Cosmos Kit @@ -66,7 +66,7 @@ Check out our [Next.js deployment documentation](https://nextjs.org/docs/deploym ## Credits -🛠 Built by Cosmology — if you like our tools, please consider delegating to [our validator ⚛️](https://cosmology.tech/validator) +🛠 Built by Hyperweb — if you like our tools, please consider delegating to [our validator ⚛️](https://hyperweb.io/validator) Code built with the help of these related projects: diff --git a/examples/vote-proposal/components/common/Footer.tsx b/examples/vote-proposal/components/common/Footer.tsx index 2f417f555..c22212fa9 100644 --- a/examples/vote-proposal/components/common/Footer.tsx +++ b/examples/vote-proposal/components/common/Footer.tsx @@ -151,8 +151,8 @@ export function Footer() { }} > Built with - - Cosmology + + Hyperweb diff --git a/examples/vote-proposal/config/projects.ts b/examples/vote-proposal/config/projects.ts index 176d5f2dd..181696bfa 100644 --- a/examples/vote-proposal/config/projects.ts +++ b/examples/vote-proposal/config/projects.ts @@ -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.tech/learn', + desc: 'How-to videos from the official Hyperweb website, with learning resources for building in Cosmos.', + link: 'https://hyperweb.io/learn', }, ]; diff --git a/examples/vote-proposal/package.json b/examples/vote-proposal/package.json index f77368469..def121ee3 100644 --- a/examples/vote-proposal/package.json +++ b/examples/vote-proposal/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/vote-proposal", + "name": "@hyperweb/vote-proposal", "version": "1.1.1", "private": true, "scripts": { @@ -47,4 +47,4 @@ "typescript": "^5.1.6" }, "packageManager": "yarn@4.3.0" -} +} \ No newline at end of file diff --git a/packages/create-cosmos-app/README.md b/packages/create-cosmos-app/README.md index 36bc6b6b7..a479cfb0b 100644 --- a/packages/create-cosmos-app/README.md +++ b/packages/create-cosmos-app/README.md @@ -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. @@ -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 diff --git a/templates/chain-template/README.md b/templates/chain-template/README.md index cc786f354..951dea0f0 100644 --- a/templates/chain-template/README.md +++ b/templates/chain-template/README.md @@ -14,7 +14,7 @@ You can start editing the page by modifying `pages/index.tsx`. The page auto-upd ## How to connect to Starship chains -1. Follow the official guide to set up Starship: https://docs.cosmology.zone/starship/get-started/step-1 +1. Follow the official guide to set up Starship: https://docs.hyperweb.io/starship/get-started/step-1 2. Run `yarn starship start` and wait until Starship is up and running 3. Open a new terminal and run `yarn dev` 4. Open http://localhost:3000, select "Osmosis Devnet" or "Cosmos Hub Devnet" from the chain dropdown in the top right corner then click "Connect Wallet" in the left sidebar to connect to the chain @@ -28,11 +28,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 diff --git a/templates/chain-template/components/common/Footer.tsx b/templates/chain-template/components/common/Footer.tsx index 00f597204..ab07950e5 100644 --- a/templates/chain-template/components/common/Footer.tsx +++ b/templates/chain-template/components/common/Footer.tsx @@ -21,7 +21,7 @@ export const Footer = () => { gap="4px" > - © {new Date().getFullYear()} Cosmology + © {new Date().getFullYear()} Hyperweb {isMobile ? : } diff --git a/templates/chain-template/config/products.ts b/templates/chain-template/config/products.ts index 193111c90..336fd9638 100644 --- a/templates/chain-template/config/products.ts +++ b/templates/chain-template/config/products.ts @@ -16,70 +16,70 @@ export const products: Product[] = [ name: 'Cosmos Kit', description: 'A wallet adapter for react with mobile WalletConnect support for the Cosmos ecosystem.', - link: 'https://cosmology.zone/products/cosmos-kit', + link: 'https://hyperweb.io/products/cosmos-kit', category: 'frontend', }, { name: 'Telescope', description: 'A TypeScript Transpiler for Cosmos Protobufs to generate libraries for Cosmos blockchains.', - link: 'https://cosmology.zone/products/telescope', + link: 'https://hyperweb.io/products/telescope', category: 'cosmos-sdk', }, { name: 'Interchain UI', description: 'A simple, modular and cross-framework component library for Cosmos ecosystem.', - link: 'https://cosmology.zone/products/interchain-ui', + link: 'https://hyperweb.io/products/interchain-ui', category: 'frontend', }, { name: 'TS Codegen', description: 'The quickest and easiest way to convert CosmWasm Contracts into dev-friendly TypeScript classes.', - link: 'https://cosmology.zone/products/ts-codegen', + link: 'https://hyperweb.io/products/ts-codegen', category: 'cosmwasm', }, { name: 'Chain Registry', description: 'Get chain and asset list information from the npm package for the Official Cosmos chain registry.', - link: 'https://cosmology.zone/products/chain-registry', + link: 'https://hyperweb.io/products/chain-registry', category: 'frontend', }, { name: 'OsmoJS', description: 'OsmosJS makes it easy to compose and broadcast Osmosis and Cosmos messages.', - link: 'https://cosmology.zone/products/osmojs', + link: 'https://hyperweb.io/products/osmojs', category: 'frontend', }, { name: 'Starship', description: 'Starship makes it easy to build a universal interchain development environment in k8s.', - link: 'https://cosmology.zone/products/starship', + link: 'https://hyperweb.io/products/starship', category: 'testing', }, { name: 'Create Cosmos App', description: 'One-Command Setup for Modern Cosmos dApps. Speed up your development and bootstrap new web3 dApps quickly.', - link: 'https://cosmology.zone/products/create-cosmos-app', + link: 'https://hyperweb.io/products/create-cosmos-app', category: 'frontend', }, { name: 'CosmWasm Academy', description: 'Master CosmWasm and build your secure, multi-chain dApp on any CosmWasm chain!', - link: 'https://cosmology.zone/learn/ts-codegen', + link: 'https://hyperweb.io/learn/ts-codegen', category: 'cosmwasm', }, { name: 'Videos', description: - 'How-to videos from the official Cosmology website, with learning resources for building in Cosmos.', - link: 'https://cosmology.zone/learn', + 'How-to videos from the official Hyperweb website, with learning resources for building in Cosmos.', + link: 'https://hyperweb.io/learn', category: 'frontend', }, { diff --git a/templates/chain-template/package.json b/templates/chain-template/package.json index dc98656c2..392976d89 100644 --- a/templates/chain-template/package.json +++ b/templates/chain-template/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/chain-template", + "name": "@hyperweb/chain-template", "version": "1.2.0", "private": true, "scripts": { @@ -60,4 +60,4 @@ "typescript": "4.9.3", "yaml-loader": "^0.8.1" } -} +} \ No newline at end of file diff --git a/templates/chain-template/pages/_app.tsx b/templates/chain-template/pages/_app.tsx index e5f79bd46..87ec03574 100644 --- a/templates/chain-template/pages/_app.tsx +++ b/templates/chain-template/pages/_app.tsx @@ -39,7 +39,7 @@ function CreateCosmosApp({ Component, pageProps }: AppProps) { metadata: { name: 'CosmosKit Template', description: 'CosmosKit dapp template', - url: 'https://docs.cosmology.zone/cosmos-kit/', + url: 'https://docs.hyperweb.io/cosmos-kit/', icons: [], }, }, diff --git a/templates/chain-template/pages/disclaimer.tsx b/templates/chain-template/pages/disclaimer.tsx index 57962147d..4d5667b84 100644 --- a/templates/chain-template/pages/disclaimer.tsx +++ b/templates/chain-template/pages/disclaimer.tsx @@ -9,15 +9,15 @@ export default function Disclaimer() { The information provided on this website does not constitute investment advice, financial advice, trading advice, or any other sort of advice and you should not treat any of the website's content as such. - Cosmology does not recommend that any cryptocurrency should be bought, + Hyperweb does not recommend that any cryptocurrency should be bought, sold, or held by you. Do conduct your own due diligence and consult your financial advisor before making any investment decisions. Accuracy of Information - Cosmology will strive to ensure accuracy of information listed on this + Hyperweb will strive to ensure accuracy of information listed on this website although it will not hold any responsibility for any missing or - wrong information. Cosmology provides all information as is. You + wrong information. Hyperweb provides all information as is. You understand that you are using any and all information available here at your own risk. @@ -30,17 +30,17 @@ export default function Disclaimer() { Tax Compliance - The users of Cosmology app are solely responsible to determinate what, + The users of Hyperweb app are solely responsible to determinate what, if any, taxes apply to their cryptocurrency transactions. The owners of, - or contributors to, the Cosmology app are NOT responsible for + or contributors to, the Hyperweb app are NOT responsible for determining the taxes that apply to cryptocurrency transactions. Software Disclaimer - Cosmology leverages decentralized peer-to-peer blockchains that people + Hyperweb leverages decentralized peer-to-peer blockchains that people can use to create liquidity and trade IBC enabled tokens. These blockchains are made up of free, public, and open-source software. Your - use of Cosmology involves various risks, including, but not limited, to + use of Hyperweb involves various risks, including, but not limited, to losses while digital assets are being supplied to liquidity pools and losses due to the fluctuation of prices of tokens in a trading pair or liquidity pool, including Impermanence Loss. Before using any pool on @@ -53,14 +53,14 @@ export default function Disclaimer() { understand the fees and risks they present. AS DESCRIBED IN THE COSMOLOGY LICENSES, THE SOFTWARE IS PROVIDED “AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND. Although Web, Inc. ( “Web Incubator” - ) developed much of the initial code for the Cosmology app, it does not + ) developed much of the initial code for the Hyperweb app, it does not provide, own, or control the leveraged blockchain protocols, which are run by decentralized validator sets. Upgrades and modifications to these protocol are managed in a community-driven way by holders of various - governance tokens. No developer or entity involved in creating Cosmology + governance tokens. No developer or entity involved in creating Hyperweb will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the - Cosmology app, including any direct, indirect, incidental, special, + Hyperweb app, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value. diff --git a/templates/connect-chain/README.md b/templates/connect-chain/README.md index 5ecee5fab..a984ff1b4 100644 --- a/templates/connect-chain/README.md +++ b/templates/connect-chain/README.md @@ -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 diff --git a/templates/connect-chain/components/common/Footer.tsx b/templates/connect-chain/components/common/Footer.tsx index 8ddc7a592..24ad4558a 100644 --- a/templates/connect-chain/components/common/Footer.tsx +++ b/templates/connect-chain/components/common/Footer.tsx @@ -151,8 +151,8 @@ export function Footer() { }} > Built with - - Cosmology + + Hyperweb diff --git a/templates/connect-chain/config/projects.ts b/templates/connect-chain/config/projects.ts index 0c1d54349..920252027 100644 --- a/templates/connect-chain/config/projects.ts +++ b/templates/connect-chain/config/projects.ts @@ -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', }, ]; @@ -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', diff --git a/templates/connect-chain/package.json b/templates/connect-chain/package.json index 5dea77f35..b4b9f47ca 100644 --- a/templates/connect-chain/package.json +++ b/templates/connect-chain/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/connect-chain", + "name": "@hyperweb/connect-chain", "version": "1.1.1", "private": true, "scripts": { @@ -44,4 +44,4 @@ "typescript": "^5.1.6" }, "packageManager": "yarn@4.3.0" -} +} \ No newline at end of file diff --git a/templates/connect-chain/pages/_app.tsx b/templates/connect-chain/pages/_app.tsx index 6978fd891..0867e90dc 100644 --- a/templates/connect-chain/pages/_app.tsx +++ b/templates/connect-chain/pages/_app.tsx @@ -36,7 +36,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: [], }, }, diff --git a/templates/connect-multi-chain/README.md b/templates/connect-multi-chain/README.md index 5ecee5fab..a984ff1b4 100644 --- a/templates/connect-multi-chain/README.md +++ b/templates/connect-multi-chain/README.md @@ -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 diff --git a/templates/connect-multi-chain/components/common/Footer.tsx b/templates/connect-multi-chain/components/common/Footer.tsx index ca89213b3..7b15a0540 100644 --- a/templates/connect-multi-chain/components/common/Footer.tsx +++ b/templates/connect-multi-chain/components/common/Footer.tsx @@ -149,8 +149,8 @@ export function Footer() { }} > Built with - - Cosmology + + Hyperweb diff --git a/templates/connect-multi-chain/config/projects.ts b/templates/connect-multi-chain/config/projects.ts index aad01cf7c..73efa3dd7 100644 --- a/templates/connect-multi-chain/config/projects.ts +++ b/templates/connect-multi-chain/config/projects.ts @@ -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.tech/learn', + desc: 'How-to videos from the official Hyperweb website, with learning resources for building in Cosmos.', + link: 'https://hyperweb.io/learn', }, ]; diff --git a/templates/connect-multi-chain/package.json b/templates/connect-multi-chain/package.json index 490cb30be..20c55d667 100644 --- a/templates/connect-multi-chain/package.json +++ b/templates/connect-multi-chain/package.json @@ -1,5 +1,5 @@ { - "name": "@cosmology/connect-multi-chain", + "name": "@hyperweb/connect-multi-chain", "version": "1.1.1", "private": true, "scripts": { @@ -46,4 +46,4 @@ "typescript": "^5.1.6" }, "packageManager": "yarn@4.3.0" -} +} \ No newline at end of file diff --git a/templates/connect-multi-chain/pages/_app.tsx b/templates/connect-multi-chain/pages/_app.tsx index c9624f378..7f7f10fb4 100644 --- a/templates/connect-multi-chain/pages/_app.tsx +++ b/templates/connect-multi-chain/pages/_app.tsx @@ -36,7 +36,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: [], }, },