Skip to content

Commit fbfbc9e

Browse files
authored
fix: add missing comma (#374)
1 parent a676753 commit fbfbc9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vocs-docs/docs/pages/interaction/endpoints.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ from dydx_v4_client.indexer.rest.indexer_client import IndexerClient
7575
from dydx_v4_client.indexer.socket.websocket import IndexerSocket
7676

7777
config = make_mainnet( # [!code focus]
78-
node_url="your-custom-grpc-node.com" # [!code focus]
78+
node_url="your-custom-grpc-node.com", # [!code focus]
7979
rest_indexer="https://your-custom-rest-indexer.com", # [!code focus]
80-
websocket_indexer="wss://your-custom-websocket-indexer.com", # [!code focus]
80+
websocket_indexer="wss://your-custom-websocket-indexer.com" # [!code focus]
8181
).node # [!code focus]
8282

8383
# Instantiate the HTTP sub-client. # [!code focus]

0 commit comments

Comments
 (0)