-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5e4289
commit e512d19
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Challenge #12 - Climber | ||
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). | ||
|
||
The owner of the vault, currently a timelock contract, can withdraw a very limited amount of tokens every 15 days. | ||
|
||
On the vault there's an additional role with powers to sweep all tokens in case of an emergency. | ||
|
||
On the timelock, only an account with a "Proposer" role can schedule actions that can be executed 1 hour later. | ||
|
||
Your goal is to empty the vault. | ||
|
||
[See the contracts](https://github.com/nicolasgarcia214/damn-vulnerable-defi-foundry/tree/master/src/Contracts/climber) | ||
<br/> | ||
[Complete the challenge](https://github.com/nicolasgarcia214/damn-vulnerable-defi-foundry/blob/master/test/Levels/climber/Climber.t.sol) |