Skip to content

A STARK proof of Bitcoin's header chain

License

Notifications You must be signed in to change notification settings

mr-abims/header_chain

 
 

Repository files navigation

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

About

A STARK proof of Bitcoin's header chain

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Cairo 72.7%
  • Python 12.5%
  • HTML 7.6%
  • Rust 4.3%
  • Makefile 1.7%
  • JavaScript 1.1%
  • Shell 0.1%