← Quickstarts
How the Proxy Registry Works
PRE-MAINNET
STEP 1 OF 3
NEXT: How the guard makes sure only proxy calls reach execution →
authorizedProxies · public mapping
0x91aB…c4E2isProxy: false
someAddress ?
0x22Fa…9c11isProxy: false
DAPP DEVELOPERS

How to check an address is a real proxy

Every proxy is recorded when it’s created, in one public mapping.

You read that mapping directly instead of guessing — no simulation.

WHAT YOU'LL LEARN
  • 01 · ONE PUBLIC MAPPINGEvery proxy is recorded when it’s created.
  • 02 · READ, DON’T GUESSOne call: authorizedProxies(someAddress) — no simulation, no guessing.
  • 03 · isProxy IS THE FLAGisProxy true means the other two fields are real.

Verified against eez-core-protocol @ 9735f53 — pre-mainnet; interfaces may move.