https://github.com/hanzceo/verifiyer
Blockchain CTF flag provider through standardized testnet on-chain contract interface
https://github.com/hanzceo/verifiyer
Last synced: about 1 year ago
JSON representation
Blockchain CTF flag provider through standardized testnet on-chain contract interface
- Host: GitHub
- URL: https://github.com/hanzceo/verifiyer
- Owner: HanzCEO
- License: mit
- Created: 2024-12-22T11:29:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-10T05:05:42.000Z (over 1 year ago)
- Last Synced: 2025-05-12T03:01:50.651Z (about 1 year ago)
- Language: Python
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# verifiyer
Blockchain CTF flag provider through standardized testnet on-chain contract interface
## Setup
1. Compile `templates/Setup.sol`
2. Spawn docker
```
docker run -t verifiyer -e SETUP_BYTECODE=0x... -e DIFFICULTY=6 -e CONSTRUCTOR_VALUE=1 -e PRIVATE_KEY=0x... -e RPC=... -e FLAG=flag{test} -e PORT=1337
```
Or use docker compose
```yaml
services:
challenge:
image: hanzceo/verifiyer:0.3.0
environment:
- FLAG=
- SETUP_BYTECODE=
- CONSTRUCTOR_VALUE=
- RPC=
- PRIVATE_KEY=
- PORT=
ports:
- "1337:1337"
```