From c401e7600b2c725e60b2714d435bde5c220c9d6d Mon Sep 17 00:00:00 2001 From: zimmah Date: Thu, 29 Jan 2026 10:20:34 +0100 Subject: [PATCH] complete incomplete readme sentence --- contracts/proxy/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/proxy/README.md b/contracts/proxy/README.md index a0eeee3b..119825ba 100644 --- a/contracts/proxy/README.md +++ b/contracts/proxy/README.md @@ -15,7 +15,7 @@ The latter approach is recommended for basic proxies because it is more gas-effi A `TransparentProxy` is a secure upgradeable proxy. It is "transparent" in the sense that no administrative functions are defined on its interface; instead, calls made by the admin with certain selectors are routed internally to administrative functions. This prevents undetected function selector clashes between the proxy and its implementation, which can cause security issues in some situations. -The EIP-173 `owner` account (from the `Ownable` contract) is not used as the proxy admin because the implementation contract might make use of the same storage slot. The owner of a proxy +The EIP-173 `owner` account (from the `Ownable` contract) is not used as the proxy admin because the implementation contract might make use of the same storage slot. The owner of a proxy cannot fall back to the implementation contract, preventing accidental invocation of implementation functions. ### Beacon Proxies