Starknet Security Challenges Factory is an open source platform where you can build Starknet CTFs, earn points, keep records on a leaderboard and mint nfts (worth nothing, just for fun) to challenge resolutors. You can play a live version in Sepolia network here.
Here you will find:
- scarb v2.4.3
curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh | sh
- starkli 0.2.4
curl https://get.starkli.sh | sh
restart your shell
starkliup
- rust
sudo curl --proto '=https' -tslv1.2 -sSf https://sh.rustup.rs | sh
- starknet-devnet-rs commited jan-22 or newer
git clone https://github.com/0xSpaceShard/starknet-devnet-rs
- node v19.6.1
sudo apt-get update
curl -fsSL https://deb.nodesource.com/setup_19.x | sudo -E bash -
sudo apt-get install -y nodejs
-
python3.9 (optional only for cairo0 challenges support)
-
cairo_lang v0.13 (optional only for cairo0 challenges support)
pip3 install cairo-lang
- Start a local starknet devnet in rust instance
cd starknet-devnet-rs
cargo run -- --seed 0
- Create your devnet account file:
starkli account fetch --output ~/devnet-ssc-acct.json 0x7f8460cdc3b7b45b6d9d17c44b5e56deab0df4ab5f313930e02907d58f2a6ba --rpc http://localhost:5050
- Clone repository
git clone https://github.com/devnet0x/Starknet-Security-Challenges-Factory
- Deploy contracts to local devnet
cd Starknet-Security-Challenges-Factory
./install.sh
- Install and run web3 platform
npm install
npm start run
- Connect your Argentx or Braavos wallet to devnet and play at:
http://localhost:3000
- Compile your Cairo challenge with a isComplete function returning true when challenge is completed.
scarb build
- Declare your Cairo challenge in localhost devnet.
starkli declare --watch --rpc http://localhost:5050 --account ~/devnet-ssc-acct.json target/dev/<json contract file>
- Add your challenge to main contract.
starkli invoke --watch --rpc http://localhost:5050 --account ~/devnet-ssc-acct.json <devnet_main_address> updateChallenge <challenge_number> <challenge_class_hash> <challenge_points>
Example:
starkli invoke --watch --rpc http://localhost:5050 --account ~/devnet-ssc-acct.json 0x02e82451d558cfeca232b490094daef0fe5148e5bb4a412e2f94aaa45c3483ba updateChallenge 8 1500 0x0649f54b81c3f5a6385f57b25db5131cece97fd92d21aa0af196eeb77b5d4c9c
- Copy your new .cairo file into src/assets
- Add your new nft image file to src/assets/nft
- Add your new nft json file to src/assets/nft
- Edit src/components/Challenge.jsx and add your challenge and descriptions.
- Edit src/layout/components/menu_config.js and add your challenge to the menu.
- Edit src/App.js and add challenge to page route.
- Edit install.py and add your challenge in cairo1_challenge array.
- Test your challenge in http://localhost:3000
- Send your PR to github.
- User press deploy button in web interface.
- Starknet-react library calls deploy function on main contract.
- Main contract deploys a challenge instance to user.
- User exploit and solve challenge.
- User press check button in web interface.
- Starknet-react library calls check function on main contract.
- Main contract calls isComplete funcion in challenge instance.
- If isComplete returns true then:
- Main contracts add points to user record (displayed in leaderboard).
- Mint button appears in web interface.
- User press mint button
- Starknet-react library calls mint function on main contract.
- Main contract calls mint funcion in nft smart contract.
- User can press link in web interface to watch his nft.
- Commit PR
- Clone Repository
git clone https://github.com/devnet0x/Starknet-Security-Challenges-Factory
- Compile challenge.
scarb build
- Declare challenge.
starkli declare --watch --rpc https://starknet-sepolia.public.blastapi.io/rpc/v0_6 --account ~/sepolia-ssc-acct.json target/dev/<json contract file>
- Register new challenge on main contract.
starkli invoke --watch --rpc https://starknet-sepolia.public.blastapi.io/rpc/v0_6 --account ~/sepolia-ssc-acct.json <sepolia_main_address> updateChallenge <challenge_number> <challenge_class_hash> <challenge_points>
- Upload to test environment.
vercel login
vercel link (to: starknet-challenges)
vercel (if error then check node version in vercel.com project settings)
-
Test interface.
-
Upload to production environment.
vercel --prod
- Declare new main.cairo or nft.cairo smart contract.
- Invoke upgrade
starkli invoke --watch --rpc https://starknet-sepolia.public.blastapi.io/rpc/v0_6 --account ~/sepolia-ssc-acct.json <sepolia_main__or_nft_address> upgrade <new_class_hash>
main contract:0x0667b3f486c25a9afc38626706fb83eabf0f8a6c8a9b7393111f63e51a6dd5dd
nft contract :0x007d85f33b50c06d050cca1889decca8a20e5e08f3546a7f010325cb06e8963f
WARNING!!! IF CLASS_HASH DOESN'T EXIST WE WILL LOST DATA AND UPGRADE FUNCTIONS.