https://github.com/sebastiantf/ethernaut-foundry
Ethernaut solutions implemented in Foundry
https://github.com/sebastiantf/ethernaut-foundry
ctf ethernaut foundry
Last synced: about 1 month ago
JSON representation
Ethernaut solutions implemented in Foundry
- Host: GitHub
- URL: https://github.com/sebastiantf/ethernaut-foundry
- Owner: sebastiantf
- Created: 2023-02-14T13:49:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-06T07:49:18.000Z (over 1 year ago)
- Last Synced: 2025-04-17T10:23:59.574Z (about 2 months ago)
- Topics: ctf, ethernaut, foundry
- Language: Solidity
- Homepage:
- Size: 186 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ethernaut Foundry Solutions
Ethernaut solutions implemented in Foundry
Base Ethernaut contracts like [`Ethernaut`](https://github.com/OpenZeppelin/ethernaut/blob/768071ef1d337a01d41261473687c095bd56f96f/contracts/contracts/Ethernaut.sol), base [`Level`](https://github.com/OpenZeppelin/ethernaut/blob/768071ef1d337a01d41261473687c095bd56f96f/contracts/contracts/levels/base/Level.sol), [`Statistics`](https://github.com/OpenZeppelin/ethernaut/blob/768071ef1d337a01d41261473687c095bd56f96f/contracts/contracts/metrics/Statistics.sol) and level contracts are taken from the [Ethernaut](https://github.com/OpenZeppelin/ethernaut) repo
## Levels
| Level | Status |
| -------------------- | ------ |
| 0. Hello Ethernaut | ✅ |
| 1. Fallback | ✅ |
| 2. Fallout | ✅ |
| 3. CoinFlip | ✅ |
| 4. Telephone | ✅ |
| 5. Token | ✅ |
| 6. Delegation | ✅ |
| 7. Force | ✅ |
| 8. Vault | ✅ |
| 9. King | ✅ |
| 10. Reentrance | ✅ |
| 11. Elevator | ✅ |
| 12. Privacy | ✅ |
| 13. GatekeeperOne | ✅ |
| 14. GatekeeperTwo | ✅ |
| 15. NaughtCoin | ✅ |
| 16. Preservation | ✅ |
| 17. Recovery | ✅ |
| 18. MagicNum | ✅ |
| 19. AlienCodex | ✅ |
| 20. Denial | ✅ |
| 21. Shop | ✅ |
| 22. Dex | ✅ |
| 23. DexTwo | ✅ |
| 24. PuzzleWallet | ✅ |
| 25. Motorbike | ✅ |
| 26. DoubleEntryPoint | ✅ |
| 27. GoodSamaritan | ✅ |
| 28. GatekeeperThree | ✅ |
| 29. Switch | ✅ |## References
Inspired by [ciaranmcveigh5/ethernaut-x-foundry](https://github.com/ciaranmcveigh5/ethernaut-x-foundry)