Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/0xJCN/Ethernaut-CTF
Ethernaut CTF solutions with Ape, Vyper, & Huff
https://github.com/0xJCN/Ethernaut-CTF
apeworx evm huff python vyper
Last synced: 3 months ago
JSON representation
Ethernaut CTF solutions with Ape, Vyper, & Huff
- Host: GitHub
- URL: https://github.com/0xJCN/Ethernaut-CTF
- Owner: 0xJCN
- Created: 2023-01-30T21:58:12.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-20T09:25:50.000Z (over 1 year ago)
- Last Synced: 2024-05-17T11:32:48.489Z (6 months ago)
- Topics: apeworx, evm, huff, python, vyper
- Language: Python
- Homepage:
- Size: 273 KB
- Stars: 36
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-huff - Ethernaut-CTF
README
# Ethernaut-CTF
Ethernaut CTF solutions with Ape, Vyper, & Huff.## Dependencies
* Foundry. See [this](https://github.com/foundry-rs/foundry#installation%3E) for installation steps.
* Huff. See [this](https://docs.huff.sh/get-started/installing/) for installation steps.## How to use
Install [Ape](https://github.com/ApeWorX/ape) & [Vyper](https://github.com/vyperlang/vyper) in a fresh virtual env with your package manager of choice.With [poetry](https://python-poetry.org/docs/):
```
poetry install
```Install Ape plugins:
```
ape plugins install .
```Run huff scripts:
```
ape run huff hello_ethernaut
```Run vyper scripts:
```
ape run vyper hello_ethernaut
```