-
Notifications
You must be signed in to change notification settings - Fork 413
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change vow to use a proxy #241
base: master
Are you sure you want to change the base?
Conversation
why not make a separate contract for storing the surplus dai and have the vow be a ward to it? that way people can rely on that address as a bucket to send funds to while the accounting logic can be swapped out freely without the need to involve messy proxies? |
Open to either way as long as we can get the vow accounting address to be constant. I'll see about mocking up the alternative. |
Yo, what super-human notification system are you running @transmissions11? Does it only trigger on controversial upgradability PRs? if (PR == s/implementation/g) {
// hard wake-up
electrodes.fire();
} |
If proxy is necessary, shouldn't EIP-1967 Transparent Proxy pattern be used ? |
I am following the long MakerDAO history of rolling everything ourselves. Kidding aside, this is similar to the proxy design we are using here: https://github.com/makerdao/dss-charter/blob/master/src/CharterManager.sol#L62 (shield your eyes @transmissions11) I'm not the biggest fan of fully transparent proxies personally, but if you have a good reason to use the exact transparent proxy I don't care either way that much. |
Vow will need to be replaced when we update the flap/flop mechanism to dutch auctions. During that replacement I recommend we switch to using an upgradable proxy design so that
vow
address will remain constant moving forward. Upgradable contracts is in general an anti-pattern, but for this specific instance it makes a lot of sense.vow
is one of the most commonly referenced contracts only behindvat
,dai
anddaiJoin
. In almost all instances of referencingvow
the contract is either pushing revenue to the surplus buffer or pulling debt from it. Both of these operations require no knowledge of thevow
interface. It is simply an address.By making the
vow
address constant we can make the variable immutable in all referencing contracts which will not only save gas, it will also make dealing withvow
upgrades no longer a concern. Current solutions involve either redeploying the contract (https://github.com/makerdao/dss-flash/blob/master/src/flash.sol#L59), filing a newvow
(https://github.com/makerdao/dss-wormhole/blob/master/src/WormholeJoin.sol#L109) or doing a dynamic lookup from the chainlog (https://github.com/makerdao/dss-direct-deposit/blob/master/src/DssDirectDepositAaveDai.sol#L348). All of these solutions are sub-par imo. By using an upgradable proxy design we can change the vow without having to iterate over the many many locations it is referenced.Furthermore with the
file(...)
solution it may be the case that eventually there isn't enough room in the block to synchronously update all the locationsvow
is referenced. I would like to get ahead of this problem before it bites us in the ass in a few years.The proposed changes are designed to be minimal, so the first step is to just move over to the proxy design with no other changes. It probably makes sense to add events as well, so if people want to proceed I'll add those. Next step can be to upgrade the
flop
andflap
auctions.