docs: sync Polymarket docs update 2026-05-28

Updated 45 files across Polymarket Learn (FAQ, deposits, get-started, markets, trading), bridge API, WSS, CLOB status, market makers, and trading/fees sections.
This commit is contained in:
Etherdrake
2026-05-28 18:28:02 +02:00
parent ad523c77c4
commit 3ba658fcb5
45 changed files with 342 additions and 230 deletions
+2 -2
View File
@@ -21,7 +21,7 @@ Before you can start market making, you need to complete these one-time setup st
### Using the Bridge API
```typescript theme={null}
// Get deposit addresses for your Polymarket wallet
// Get bridge addresses for your Polymarket wallet
const deposit = await fetch("https://bridge.polymarket.com/deposit", {
method: "POST",
headers: { "Content-Type": "application/json" },
@@ -30,7 +30,7 @@ Before you can start market making, you need to complete these one-time setup st
}),
});
// Returns deposit addresses for EVM, SVM, and BTC networks
// Returns bridge addresses for EVM, SVM, and BTC networks
const addresses = await deposit.json();
// Send USDC to the appropriate address for your source chain
```