An open API service indexing awesome lists of open source software.

https://github.com/0xdmitry/ethernaut-solutions-hardhat

Etharnaut CTF solutions using Hardhat
https://github.com/0xdmitry/ethernaut-solutions-hardhat

ctf ethereum ethernaut ethernaut-ctf hardhat

Last synced: about 2 months ago
JSON representation

Etharnaut CTF solutions using Hardhat

Awesome Lists containing this project

README

        

# Ethernaut CTF - Hardhat edition

## What is Ethernaut

[Ethernaut](https://ethernaut.openzeppelin.com/) is a Web3/Solidity based war game inspired in [overthewire.org](https://overthewire.org/), to be played in the Ethereum Virtual Machine. Each level is a smart contract that needs to be 'hacked'.

The game acts both as a tool for those interested in learning Ethereum, and as a way to catalog historical hacks in levels. Levels can be infinite, and the game does not require to be played in any particular order.

## Acknowledgements

- Created by [OpenZeppelin](https://www.openzeppelin.com/)
- [Ethernaut Website](https://ethernaut.openzeppelin.com/)
- [Ethernaut GitHub](https://github.com/OpenZeppelin/ethernaut)
- [Hardhat](https://github.com/NomicFoundation/hardhat)
- [Hardhat Docs](https://hardhat.org/docs)

## How to play

### Install dependencies

```bash
yarn
```

### Compile contracts

```bash
yarn compile
```

### Check solutions

```bash
yarn test
```