Create proxies.md

This commit is contained in:
bt3gl 2022-09-17 18:02:14 -07:00 committed by GitHub
parent 2bde8bfbb6
commit c461ed0682
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,28 @@
## Proxies
<br>
### TL;DR Proxies Patterns
<br>
#### Transparent Proxy Pattern (TPP)
1. upgrade logic is stored in proxy itself.
2. gas-inefficient
<br>
#### Universal Upgradable Proxy Standard (UUPS)
1. upgrade logic is stored in logic itself
2. gas-efficient
<br>
---
### Resources
<br>