You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use the [`create-cosmos-app`](https://github.com/cosmology-tech/create-cosmos-app/) command to create a new package from the `telescope` boilerplate.
122
+
Use the [`create-cosmos-app`](https://github.com/hyperweb-io/create-cosmos-app/) command to create a new package from the `telescope` boilerplate.
123
123
124
124
```sh
125
125
cca --boilerplate telescope
@@ -1347,7 +1347,7 @@ This should not be an issue, but if you experience problems with syntax or are n
1347
1347
1348
1348
## Developing
1349
1349
1350
-
See our [documentation](https://github.com/cosmology-tech/telescope/blob/main/docs/README.md) for how to contribute and develop Telescope.
1350
+
See our [documentation](https://github.com/hyperweb-io/telescope/blob/main/docs/README.md) for how to contribute and develop Telescope.
1351
1351
1352
1352
## Sponsors
1353
1353
@@ -1359,17 +1359,17 @@ Kudos to our sponsors:
1359
1359
1360
1360
Checkout these related projects:
1361
1361
1362
-
* [@cosmology/telescope](https://github.com/cosmology-tech/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
1362
+
* [telescope](https://github.com/hyperweb-io/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
1363
1363
* [@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) Convert your CosmWasm smart contracts into dev-friendly TypeScript classes.
1364
-
* [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.
1365
-
* [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
1366
-
* [create-cosmos-app](https://github.com/cosmology-tech/create-cosmos-app) Set up a modern Cosmos app by running one command.
1367
-
* [interchain-ui](https://github.com/cosmology-tech/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
1368
-
* [starship](https://github.com/cosmology-tech/starship) Unified Testing and Development for the Interchain.
1364
+
* [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.
1365
+
* [cosmos-kit](https://github.com/hyperweb-io/cosmos-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
1366
+
* [create-cosmos-app](https://github.com/hyperweb-io/create-cosmos-app) Set up a modern Cosmos app by running one command.
1367
+
* [interchain-ui](https://github.com/hyperweb-io/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
1368
+
* [starship](https://github.com/hyperweb-io/starship) Unified Testing and Development for the Interchain.
1369
1369
1370
1370
## Credits
1371
1371
1372
-
🛠 Built by Cosmology — if you like our tools, please consider delegating to [our validator ⚛️](https://cosmology.zone/validator)
1372
+
🛠 Built by Hyperweb (formerly Cosmology) — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/hyperweb-io)
1373
1373
1374
1374
Thanks to these engineers, teams and projects for inspiring Telescope:
@@ -32,7 +32,7 @@ Find a folder that makes sense for the new generator. Only if you really need to
32
32
33
33
for example, in `packages/ast/src/clients/rpc/class/some-new-rpc-client.ts`. Make sure to include `context: GenericParseContext` as the first property of all AST functions. The `ProtoService` is only here in this example because we intend to use it as we create the AST generator.
34
34
35
-
If you are not sure how to write ASTs with `@babel/types`, please see our docs on [working with ASTs](https://github.com/cosmology-tech/telescope/blob/main/docs/working-with-asts.md). You can also checkout [astexplorer.net](https://astexplorer.net) to visually browse and learn ASTs, but they are quite verbose compared to our script when you run `yarn test:ast`.
35
+
If you are not sure how to write ASTs with `@babel/types`, please see our docs on [working with ASTs](https://github.com/hyperweb-io/telescope/blob/main/docs/working-with-asts.md). You can also checkout [astexplorer.net](https://astexplorer.net) to visually browse and learn ASTs, but they are quite verbose compared to our script when you run `yarn test:ast`.
If we need to import from other packages, context.addUtil is recommended. For detail about this, please see: [Common helpers or utils](https://github.com/cosmology-tech/telescope/blob/main/docs/helpers.md)
61
+
If we need to import from other packages, context.addUtil is recommended. For detail about this, please see: [Common helpers or utils](https://github.com/hyperweb-io/telescope/blob/main/docs/helpers.md)
Note: Run "yarn buidl" in ast package folder to keep it updated to other packages, by doing this, code in telescope package can invoke newly built ast functions. More detail on this, please see our docs on [Packages and workspace](https://github.com/cosmology-tech/telescope/blob/main/docs/packages.md).
102
+
Note: Run "yarn buidl" in ast package folder to keep it updated to other packages, by doing this, code in telescope package can invoke newly built ast functions. More detail on this, please see our docs on [Packages and workspace](https://github.com/hyperweb-io/telescope/blob/main/docs/packages.md).
103
103
```
104
104
cd packages/ast
105
105
yarn buidl
@@ -124,7 +124,7 @@ interface TelescopeOpts {
124
124
};
125
125
```
126
126
127
-
Note: After editing the option in types package, don't forget to run "yarn buidl" inside the types package keeping other packages up-to-date with the newest changes of the option. More detail on this, please see our docs on [Packages and workspace](https://github.com/cosmology-tech/telescope/blob/main/docs/packages.md).
127
+
Note: After editing the option in types package, don't forget to run "yarn buidl" inside the types package keeping other packages up-to-date with the newest changes of the option. More detail on this, please see our docs on [Packages and workspace](https://github.com/hyperweb-io/telescope/blob/main/docs/packages.md).
NOTE, see our docs on [creating new generators](https://github.com/cosmology-tech/telescope/blob/main/docs/creating-new-generators.md) which shows how to create and run a test.
138
+
NOTE, see our docs on [creating new generators](https://github.com/hyperweb-io/telescope/blob/main/docs/creating-new-generators.md) which shows how to create and run a test.
0 commit comments