Proxy Contracts
# Proxy Contracts
Proxy contracts delegate execution logic to an implementation contract.Delegatecall Mechanism
## DelegatecallProxy contracts forward calls using delegatecall, preserving storage context.Proxy Detection
## Proxy DetectionTurkScan detects common proxy patterns and links to the implementation contract when identified.Upgradeability
Upgradeable contracts separate storage and logic, allowing logic updates without changing the proxy address.Last updated