Skip to content

Commit 941db5e

Browse files
committed
update oegs endpoint example
1 parent 63e5e06 commit 941db5e

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

docs/pages/interaction/endpoints.mdx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ The Node client (also known as the Validator client) is the main client for inte
2020

2121
You'll need an endpoint to setup the Node client. Grab an RPC/gRPC endpoint from [here](#node). Additionally for the Python client, you'all also need a HTTP and WebSockets endpoints.
2222

23-
:::tip[OEGS]
23+
:::note
2424
With the release of the Order Entry Gateway Service (OEGS), users can now connect to dYdX via OEGS endpoints. OEGS provides both gRPC and RPC endpoints.
25-
for more info on OEGS, check [here](/concepts/architecture/oegs.mdx)
25+
for more info on OEGS, check [here](../concepts/architecture/oegs.mdx)
2626
:::
2727

2828

@@ -37,6 +37,9 @@ config = make_mainnet( # [!code focus]
3737
node_url="oegs.dydx.trade:443" # [!code focus]
3838
rest_indexer="https://indexer.dydx.trade", # [!code focus]
3939
websocket_indexer="wss://indexer.dydx.trade/v4/ws", # [!code focus]
40+
node_url="oegs.dydx.trade:443" # [!code focus]
41+
rest_indexer="https://indexer.dydx.trade", # [!code focus]
42+
websocket_indexer="wss://indexer.dydx.trade/v4/ws", # [!code focus]
4043
).node # [!code focus]
4144
# Call make_testnet() to use the testnet instead. # [!code focus]
4245

@@ -220,6 +223,7 @@ let noble = NobleClient::connect( // [!code focus]
220223

221224
Some known endpoints are provided below. Use these to connect to the dYdX networks.
222225
Feel free to compare the most suitable gRPC endpoint from this [status endpoint](https://grpc-status.dydx.trade/)
226+
Feel free to compare the most suitable gRPC endpoint from this [status endpoint](https://grpc-status.dydx.trade/)
223227

224228
### Node
225229

@@ -232,6 +236,7 @@ Connections with the full nodes are established using the (g)RPC protocol.
232236
| Team | URI | Rate limit |
233237
| ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- |
234238
| OEGS | `grpc://oegs.dydx.trade:443` | |
239+
| OEGS | `grpc://oegs.dydx.trade:443` | |
235240
| Polkachu | `https://dydx-dao-grpc-1.polkachu.com:443` <br/> `https://dydx-dao-grpc-2.polkachu.com:443` <br/> `https://dydx-dao-grpc-3.polkachu.com:443` <br/> `https://dydx-dao-grpc-4.polkachu.com:443` <br/> `https://dydx-dao-grpc-5.polkachu.com:443` | 300 req/m |
236241
| KingNodes | `https://dydx-ops-grpc.kingnodes.com:443` | 250 req/m |
237242
| Enigma | `https://dydx-dao-grpc.enigma-validator.com:443` | |
@@ -243,6 +248,7 @@ Connections with the full nodes are established using the (g)RPC protocol.
243248
| Team | URI | Rate limit |
244249
| ------------- | ------------------------------------------------------ | ---------- |
245250
| OEGS | `https://oegs.dydx.trade:443` | |
251+
| OEGS | `https://oegs.dydx.trade:443` | |
246252
| Polkachu | `https://dydx-dao-rpc.polkachu.com:443` | 300 req/m |
247253
| KingNodes | `https://dydx-ops-rpc.kingnodes.com:443` | 250 req/m |
248254
| Enigma | `https://dydx-dao-rpc.enigma-validator.com:443` | |
@@ -270,6 +276,7 @@ Connections with the full nodes are established using the (g)RPC protocol.
270276
| Team | URI |
271277
| ------------- | -------------------------------------------------- |
272278
| OEGS | `oegs-testnet.dydx.exchange:443` |
279+
| OEGS | `oegs-testnet.dydx.exchange:443` |
273280
| Lavender Five | `testnet-dydx.lavenderfive.com:443 (TLS)` |
274281
| King Nodes | `test-dydx-grpc.kingnodes.com:443 (TLS)` |
275282
| Polkachu | `dydx-testnet-grpc.polkachu.com:23890 (plaintext)` |
@@ -279,6 +286,7 @@ Connections with the full nodes are established using the (g)RPC protocol.
279286
| Team | URI |
280287
| ------------- | ----------------------------------------------- |
281288
| OEGS | `https://oegs-testnet.dydx.exchange:443` |
289+
| OEGS | `https://oegs-testnet.dydx.exchange:443` |
282290
| Enigma | `https://dydx-rpc-testnet.enigma-validator.com` |
283291
| Lavender Five | `https://testnet-dydx-rpc.lavenderfive.com` |
284292
| King Nodes | `https://test-dydx-rpc.kingnodes.com` |

0 commit comments

Comments
 (0)