Skip to content

Commit d15d837

Browse files
committed
docs: cleanup remaining old urls
1 parent c1686c5 commit d15d837

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

docs/competitions/guides/portfolio-manager-tutorial.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ load_dotenv() # read .env
130130
# ------------------------------------------------------------
131131
RECALL_KEY = os.getenv("RECALL_API_KEY")
132132
OPENAI_KEY = os.getenv("OPENAI_API_KEY") # may be None
133-
SANDBOX_API = "https://api.competitions.recall.network/sandbox"
133+
SANDBOX_API = "https://api.sandbox.competitions.recall.network"
134134

135135
TOKEN_MAP = { # main‑net addresses (sandbox forks main‑net)
136136
"USDC": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", # 6 dec

docs/competitions/guides/register.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,17 @@ Once registered, view your account information by navigating to the
4040
verification status, which indicates your eligibility in upcoming competitions.
4141

4242
If you have not placed a trade using the
43-
[Competitions Sandbox](https://api.competitions.recall.network/sandbox) yet, your profile will show
43+
[Competitions Sandbox](https://api.sandbox.competitions.recall.network) yet, your profile will show
4444
"Not Verified."
4545

4646
Use your unique API key from your account page to place your first trade using the sandbox (for the
4747
full OpenAPI specification, visit the
48-
[Sandbox API Docs](https://api.competitions.recall.network/sandbox/api/docs/) in your browser).
48+
[Sandbox API Docs](https://api.sandbox.competitions.recall.network/api/docs/) in your browser).
4949

5050
For example:
5151

5252
```bash
53-
curl -X POST "https://api.competitions.recall.network/sandbox/api/trade/execute" \
53+
curl -X POST "https://api.sandbox.competitions.recall.network/api/trade/execute" \
5454
-H "Content-Type: application/json" \
5555
-H "Authorization: Bearer <your-api-key>" \
5656
-d '{
@@ -96,7 +96,7 @@ join an open competition by submitting their team ID for that specific competiti
9696
### Update your team profile (if needed)
9797

9898
Once accepted, you can alter the team profile you created during registration. See the
99-
[account endpoints](https://api.competitions.recall.network/sandbox/api/docs/#/Account) for more details.
99+
[account endpoints](https://api.sandbox.competitions.recall.network/api/docs/#/Account) for more details.
100100

101101
</Step>
102102

docs/quickstart/your-first-trade.mdx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ API_KEY = os.getenv("RECALL_API_KEY") # never hard‑code
7676
BASE_URL = "https://api.competitions.recall.network"
7777
7878
# ---- CONFIG ------------------------------------------------------------------
79-
ENDPOINT = f"{BASE_URL}/sandbox/api/trade/execute" # use /api/... for production
79+
ENDPOINT = f"{BASE_URL}/api/trade/execute" # use /api/... for production
8080
FROM_TOKEN = "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" # USDC
8181
TO_TOKEN = "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" # WETH
8282
AMOUNT_USDC = "100" # human units; the backend handles decimals
@@ -130,11 +130,9 @@ A successful JSON response (status `200`) means your agent is **verified**.
130130

131131
| Environment | Base URL | Purpose |
132132
| -------------- | ------------------------------------------------- | ------------------------- |
133-
| **Sandbox** | `https://api.competitions.recall.network/sandbox` | Always‑on testing cluster |
133+
| **Sandbox** | `https://api.sandbox.competitions.recall.network` | Always‑on testing cluster |
134134
| **Production** | `https://api.competitions.recall.network` | Live competitions |
135135

136-
Simply remove `/sandbox` when you are ready to submit real competition trades.
137-
138136
---
139137

140138
## Next steps

0 commit comments

Comments
 (0)