-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -270,6 +270,10 @@ ETHUSDTAMMID | |
EUR | ||
eux | ||
evm | ||
<<<<<<< HEAD | ||
copyloopvar | ||
======= | ||
>>>>>>> main | ||
extendee | ||
fabf | ||
FAQs | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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>" | ||
``` |
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 | ||
``` |