Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 1013 Bytes

README.md

File metadata and controls

50 lines (36 loc) · 1013 Bytes

Header Chain Proof

A STARK proof of Bitcoin's header chain

Remember to activate the Python environment into which you've installed Cairo

source ~/cairo_venv/bin/activate

Run Tests

make test

Generate Proofs

Setup

This command installs all required dependencies if you have your cairo_venv at ~/cairo_venv.

make setup

Batch Proof

This command proves a batch of headers.

make batch_proof BATCH_SIZE=63 BATCH_NUMBER=0 

Aggregate Proof

This command aggregates two batch proofs (or aggregate proofs) into a single, aggregated proof.

make aggregate_proof PREV_PROOF=batch_proofs/batch_0 NEXT_PROOF=batch_proofs/batch_1 START=0 END=125 

Increment Proof

This command extends an aggregate or batch proof with a next batch.

make increment_proof BATCH_SIZE=63 START=0 END=62 PREV_PROOF=batch_proofs/batch_0 

Develop

Update program hashes

make batch_program_hash