You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reading papers that conducted transaction-based research on the whole Ethereum blockchain to check how they did it. What are the requirements of the full node I/O we need (these papers) :
Try to find a way to detect the admin of upgradeable proxies and then check if the admin is an EOA, Multi-Sig, or governance token (number of governors of the system: EOA is one. Multi-sig is easy to understand. For governance tokens, we need 2 things: 1. Distribution and allocation of the token to different addresses 2. Threshold of the governance token).
We can find the number of admin changes on the proxies we found.
We can find the number of upgrades that happened to a proxy contract. We can also check for the amount of upgrade each time happened to the proxy contract by using a code difference tool and comparing the old implementation contract with the newer version
Finding a way to detect Call-based upgradeable contracts
Other patterns are not recognizable ( I have my reasons)
Reading about Diamonds and Create2 upgradeability methods
Add the description
Update the evaluation table
Check if there is a way to find contracts that use this method
Running a full node maybe!
Add differences between delegate call and call based approaches on the Devs' view (how much they should change their code)
We can do research on the plausibility as well because it's important for upgrade (for measurement study part)
Future Steps:
Reading papers that conducted transaction-based research on the whole Ethereum blockchain to check how they did it. What are the requirements of the full node I/O we need (these papers) :
Adding beacon proxies
Try to find a way to detect the admin of upgradeable proxies and then check if the admin is an EOA, Multi-Sig, or governance token (number of governors of the system: EOA is one. Multi-sig is easy to understand. For governance tokens, we need 2 things: 1. Distribution and allocation of the token to different addresses 2. Threshold of the governance token).
We can find the number of admin changes on the proxies we found.
We can find the number of upgrades that happened to a proxy contract. We can also check for the amount of upgrade each time happened to the proxy contract by using a code difference tool and comparing the old implementation contract with the newer version
Finding a way to detect Call-based upgradeable contracts
Reading about Diamonds and Create2 upgradeability methods
Running a full node maybe!
Add differences between delegate call and call based approaches on the Devs' view (how much they should change their code)
We can do research on the plausibility as well because it's important for upgrade (for measurement study part)