Two addresses per user
Most Polymarket users trade prediction markets through a proxy wallet — a small smart contract deployed for them on Polygon. That contract address is their public identity: it is what appears on their profile page, on leaderboards, and in every prediction-market dataset (including polynode’s/v3 wallet endpoints).
The perps exchange identifies users differently: by the signer — the private-key account that controls the proxy. The signer is not shown on the Polymarket frontend, and there is no public endpoint that translates one into the other.
So a user’s prediction-market history lives under one address, and their perps account lives under another. Without the mapping, you cannot connect them.
What polynode does
Every perps wallet endpoint accepts either address form and resolves it server-side:Wallet types
Polymarket has used a few different wallet types over the years, depending on how an account signed up.wallet_type tells you which one you’re looking at, using Polymarket’s own names:
wallet_type | Who has one | Resolution |
|---|---|---|
eoa | Users trading with a plain wallet, no Polymarket contract at all. | The address is its own perps account. |
deposit | Every new Polymarket account — the deposit wallet is the current standard. | Resolved automatically. |
safe | Older accounts that signed up by connecting a browser wallet (MetaMask etc.) — these got a Gnosis Safe. | Resolved automatically. |
proxy | Older accounts that signed up with an email login — these got a Polymarket Proxy. | Not yet resolvable — see below. |
”Deposit wallet” vs “beacon wallet”
If you’ve seen both terms: they’re the same thing. The deposit wallet is Polymarket’s current wallet type, and the newer ones are built so Polymarket can upgrade all of them at once — that upgradeable variant is what gets called a “beacon wallet”. There’s also an earlier, standalone variant from before that change. Both behave identically, both resolve automatically, and this API reports both simply asdeposit — you never need to tell them apart.
The proxy-wallet edge case
Email-login accounts use a Polymarket Proxy wallet whose owner cannot be resolved automatically yet. For these, requests return422 with a clear error:
Registration
Having a signer does not mean the user trades perps. Most Polymarket users have never activated a perps account. Check cheaply with:registered: true it stays that way; accounts that were false are picked up within minutes of activating, so newly onboarded perps users appear quickly.
