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
There's a secure vault contract guarding 10 million DVT tokens. The vault is upgradeable, following the [UUPS pattern](https://eips.ethereum.org/EIPS/eip-1822).
3
+
4
+
The owner of the vault, currently a timelock contract, can withdraw a very limited amount of tokens every 15 days.
5
+
6
+
On the vault there's an additional role with powers to sweep all tokens in case of an emergency.
7
+
8
+
On the timelock, only an account with a "Proposer" role can schedule actions that can be executed 1 hour later.
9
+
10
+
Your goal is to empty the vault.
11
+
12
+
[See the contracts](https://github.com/nicolasgarcia214/damn-vulnerable-defi-foundry/tree/master/src/Contracts/climber)
13
+
<br/>
14
+
[Complete the challenge](https://github.com/nicolasgarcia214/damn-vulnerable-defi-foundry/blob/master/test/Levels/climber/Climber.t.sol)
0 commit comments