bcffe42712
* Add basic block processing benches * Start reviving state processing benches * Fix old block builders * Add optimization for faster pubkey add * Tidy benches, add another * Add extra block processing bench * Start working on faster BLS scheme * Add partially complete sig verify optimization * Add .gitignore to state processing * Add progress on faster signature verification * Fix SignatureSet for fake_crypto * Tidy attester slashings sig set * Tidy bulk signature verifier * Refactor signature sets to be cleaner * Start threading SignatureStrategy through code * Add (empty) test dir * Move BenchingBlockBuilder * Add initial block signature verification tests * Add tests for bulk signature verification * Start threading SignatureStrategy in block proc. * Refactor per_block_processing errors * Use sig set tuples instead of lists of two * Remove dead code * Thread VerifySignatures through per_block_processing * Add bulk signature verification * Introduce parallel bulk signature verification * Expand state processing benches * Fix additional compile errors * Fix issue where par iter chunks is 0 * Update milagro_bls dep * Remove debugs, code fragment in beacon chain * Tidy, add comments to block sig verifier * Fix various PR comments * Add block_root option to per_block_processing * Fix comment in block signature verifier * Fix comments from PR review * Remove old comment * Fix comment |
||
---|---|---|
.. | ||
lmd_ghost | ||
operation_pool | ||
state_processing | ||
types | ||
utils | ||
validator_change | ||
README.md |
Ethereum 2.0 Common Crates
Rust crates containing logic common across the Lighthouse project.
Per-Crate Summary
attester/
: Core logic for attesting to beacon and shard blocks.block_proposer/
: Core logic for proposing beacon blocks.fork_choice/
: A collection of fork-choice algorithms for the Beacon Chain.state_processing/
: Provides per-slot, per-block, and per-epoch state processing.types/
: Defines base Ethereum 2.0 types (e.g.,BeaconBlock
,BeaconState
, etc).utils/
:bls
: A wrapper for an external BLS encryption library.fisher-yates-shuffle
: shuffles a list pseudo-randomly.hashing
: A wrapper for external hashing libraries.honey-badger-split
: Splits a list inn
parts without giving AF about the length of the list,n
, or anything else.int-to-bytes
: Simple library which converts ints into byte-strings of various lengths.slot_clock
: translates the system time into Beacon Chain "slots". (Also provides another slot clock that's useful during testing.)ssz
: an implementation of the SimpleSerialize serialization/deserialization protocol used by Eth 2.0.ssz_derive
: provides procedural macros for deriving SSZEncode
,Decode
, andTreeHash
methods.swap_or_not_shuffle
: a list-shuffling method which is slow, but allows for a subset of indices to be shuffled.test_random_derive
: provides procedural macros for deriving theTestRandom
trait defined intypes
.