Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ just set the env var and all API calls route through the proxy.
| Kalshi | `KALSHI_BASE_URL` | `https://api.elections.kalshi.com` |
| Kalshi Demo | `KALSHI_DEMO_BASE_URL` | `https://demo-api.kalshi.co` |
| Limitless | `LIMITLESS_BASE_URL` | `https://api.limitless.exchange` |
| Opinion | `OPINION_BASE_URL` | `https://openapi.opinion.trade/openapi` |
| Opinion | `OPINION_BASE_URL` | `https://proxy.opinion.trade:8443/openapi` |
| Smarkets | `SMARKETS_BASE_URL` | `https://api.smarkets.com` |
| Probable | `PROBABLE_BASE_URL` | `https://market-api.probable.markets` |
| Myriad | `MYRIAD_BASE_URL` | `https://api-v2.myriadprotocol.com` |
Expand Down
2 changes: 1 addition & 1 deletion core/specs/opinion/opinion-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ info:
For trading operations, use the Opinion CLOB SDK.

servers:
- url: https://openapi.opinion.trade/openapi
- url: https://proxy.opinion.trade:8443/openapi
description: Production server

security:
Expand Down
2 changes: 1 addition & 1 deletion core/src/exchanges/opinion/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const opinionApiSpec = {
},
"servers": [
{
"url": "https://openapi.opinion.trade/openapi"
"url": "https://proxy.opinion.trade:8443/openapi"
}
],
"security": [
Expand Down
2 changes: 1 addition & 1 deletion core/src/exchanges/opinion/config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const DEFAULT_OPINION_API_URL = "https://openapi.opinion.trade/openapi";
export const DEFAULT_OPINION_API_URL = "https://proxy.opinion.trade:8443/openapi";
export const OPINION_WS_URL = "wss://ws.opinion.trade";
export const OPINION_MAX_PAGE_SIZE = 20;

Expand Down
Loading