pUSD (Polymarket USD) is the collateral token used for all trading on Polymarket. It’s a standard ERC-20 token on Polygon, backed by USDC. The smart contract — which enables the withdrawal functionality — enforces the backing. No algorithmic peg, no fractional reserve.Documentation Index
Fetch the complete documentation index at: https://docs.polymarket.com/llms.txt
Use this file to discover all available pages before exploring further.
Day to day, nothing changes. You load funds, see a balance, trade, and
withdraw. pUSD is the technical settlement layer underneath the same
experience you’re used to.
Why pUSD
The protocol settles all trading activity in native USDC, providing a more capital efficient, scalable, and institutionally aligned settlement standard as the platform continues to grow. pUSD is a standard ERC-20 wrapper that represents a USDC claim. Wrapping and unwrapping are enforced onchain by theCollateralOnramp and CollateralOfframp contracts.
Key facts
| Token standard | ERC-20 |
| Network | Polygon mainnet |
| Decimals | 6 |
| Backing | USDC (enforced onchain) |
| Transferable | Yes — standard ERC-20 |
Wrapping — USDC.e → pUSD
Use the CollateralOnramp to wrap USDC.e into pUSD._asset— address of the asset being wrapped. Must be USDC.e._to— recipient of the minted pUSD. Does not have to bemsg.sender._amount— amount to wrap, in USDC.e base units (6 decimals).
- The caller must first approve the CollateralOnramp contract (not the pUSD token) to spend USDC.e.
- Reverts with
OnlyUnpaused()if the admin has paused USDC.e.
Example
Unwrapping — pUSD → USDC.e
Use the CollateralOfframp to unwrap pUSD back into USDC.e._asset— asset you want to receive. Must be USDC.e._to— recipient of the underlying asset._amount— amount of pUSD to unwrap (6 decimals).
- The caller must first approve the CollateralOfframp contract to spend their pUSD.
- Same pause gate as the Onramp.
Next steps
Contracts
All Polymarket contract addresses and audits
Bridge
Deposit from other chains — auto-wraps to pUSD