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
@@ -109,16 +109,34 @@ The following blockchain libraries (generated by Telescope) are available via np
109
109
110
110
## Quickstart
111
111
112
-
Follow the instructions below to generate a new Typescript package that you can publish to npm.
112
+
Follow the instructions below to generate a new Typescript package that you can publish to npm. You can also follow the video: https://youtu.be/iQf6p65fbdY
113
113
114
-
First, install `telescope` and `create-cosmos-app`
Use the [`create-interchain-app`](https://github.com/hyperweb-io/create-interchain-app/) command to create a new package from the `telescope` boilerplate.
134
+
135
+
```sh
136
+
cia --boilerplate telescope
137
+
138
+
or
139
+
122
140
Use the [`create-cosmos-app`](https://github.com/hyperweb-io/create-cosmos-app/) command to create a new package from the `telescope` boilerplate.
123
141
124
142
```sh
@@ -127,87 +145,23 @@ cca --boilerplate telescope
127
145
128
146
Then, you'll navigate into `./your-project/packages/telescope` package for the next steps.
129
147
130
-
You can also use `telescope generate` command to generate package according to the prompt or terminal command params such as:
131
-
`telescope generate --access public --userfullname testname --useremail [email protected] --module-desc test --username salkfl --license MIT --module-name test --chain-name cosmos --use-npm-scoped`
If some required options are missing, it will prompt to ask for the info.
137
149
138
-
To be noted, `--use-npm-scoped` only works when `--access` is `public`
150
+
For detailed cli `generate` commands, please check our docs and learn directories.
139
151
140
-
### Download protos with CLI
152
+
### Download protos
141
153
142
154
The old ` telescope install ` command has been deprecated
143
155
144
-
You can use our CLI to download protos by using `download`command.
156
+
You can use our script to download protos by using `download-protos`command in the boilerplate.
145
157
146
158
```sh
147
-
telescope download
159
+
yarn download-protos
148
160
```
149
161
150
162
You should now see some repos cloned in `./git-modules` and proto files generated in `./protos`. These are the proto files downloaded according to your config.
151
163
152
-
Examples:
153
-
154
-
```sh
155
-
# Telescope will do the download according to .json file of --config
156
-
# Telescope will put proto into location specified by --out
# Telescope takes more than one config. The config afterward will override those in front. In this case values in .telescope-ext.json will override those in .telescope.json.
0 commit comments