GlossaryBlockchain Glossary
Proxy Contract
A smart contract that forwards calls to a separate implementation contract using delegatecall. The proxy stores state while the implementation provides logic — enabling upgrades by pointing to a new implementation. Common patterns: Transparent Proxy, UUPS, Beacon Proxy.