diff --git a/Smart-Contract-Security/proxies.md b/Smart-Contract-Security/proxies.md new file mode 100644 index 0000000..e07394b --- /dev/null +++ b/Smart-Contract-Security/proxies.md @@ -0,0 +1,28 @@ +## Proxies + +
+ +### TL;DR Proxies Patterns + +
+ +#### Transparent Proxy Pattern (TPP) + +1. upgrade logic is stored in proxy itself. +2. gas-inefficient + +
+ +#### Universal Upgradable Proxy Standard (UUPS) + +1. upgrade logic is stored in logic itself +2. gas-efficient + + +
+ +--- + +### Resources + +