-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add stargaze quickstart (#695)
- Loading branch information
1 parent
ecf90fa
commit 68c03ef
Showing
3 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
To run Connect, which starts the service on the default port of `8080`, enter the following command: | ||
|
||
```shell | ||
slinky --market-map-endpoint="<YOUR_NODE_GRPC_URL>:<YOUR_NODE_GRPC_PORT>" | ||
connect --market-map-endpoint="<YOUR_NODE_GRPC_URL>:<YOUR_NODE_GRPC_PORT>" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
**The minimum required version for Connect with Stargaze is `v1.0.10+`.** | ||
|
||
You need to configure a custom API endpoint for use with the Osmosis provider, `https://rest.osmosis-1.interchain-apis.com`. | ||
Set the following `oracle.json` configuration file. **Keep the file path handy** as we will pass it into a flag when running Connect. | ||
|
||
```json oracle.json | ||
{ | ||
"providers":{ | ||
"osmosis_api":{ | ||
"api":{ | ||
"endpoints":[ | ||
{"url":"https://rest.osmosis-1.interchain-apis.com"} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
With the `oracle.json` file path, enter the following command to run Connect. | ||
|
||
```shell | ||
connect \ | ||
--market-map-endpoint="<YOUR_NODE_GRPC_URL>:<YOUR_NODE_GRPC_PORT>" \ | ||
--oracle-config path/to/oracle.json | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters