Skip to content

KanakSasak/ethernautWriteup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ethernaut CTF Write-ups with Hardhat

This repository contains my solutions and write-ups for the Ethernaut CTF challenges by OpenZeppelin, developed and tested using the Hardhat Ethereum development environment.

Introduction

Ethernaut is a Web3/Solidity based wargame played in the Ethereum Virtual Machine. Each level is a smart contract that needs to be 'hacked'. The challenges are designed to teach Ethereum principles and concepts. This repository uses Hardhat to streamline the development, testing, and deployment of these solutions.

Challenges

Below are the challenges I've completed:

Installation

  • Run the Hardhat network
  npx hardhat node
  • Deploy and test the solutions on the Hardhat network:
  npx hardhat run scripts/<ctf case>.js --network localhost

Authors