2019-02-28 13:25:11 +00:00
|
|
|
# Ethereum 2.0 Common Crates
|
2019-02-28 13:18:53 +00:00
|
|
|
|
|
|
|
Rust crates containing logic common across the Lighthouse project.
|
|
|
|
|
|
|
|
## Per-Crate Summary
|
|
|
|
|
|
|
|
- [`attester/`](attester/): Core logic for attesting to beacon and shard blocks.
|
|
|
|
- [`block_proposer/`](block_proposer/): Core logic for proposing beacon blocks.
|
|
|
|
- [`fork_choice/`](fork_choice/): A collection of fork-choice algorithms for
|
|
|
|
the Beacon Chain.
|
2019-03-01 02:10:50 +00:00
|
|
|
- [`state_processing/`](state_processing/): Provides per-slot, per-block, and
|
2019-02-28 13:18:53 +00:00
|
|
|
per-epoch state processing.
|
|
|
|
- [`types/`](types/): Defines base Ethereum 2.0 types (e.g., `BeaconBlock`,
|
|
|
|
`BeaconState`, etc).
|
|
|
|
- [`utils/`](utils/):
|
2019-03-01 02:10:50 +00:00
|
|
|
- [`bls`](utils/bls/): A wrapper for an external BLS encryption library.
|
|
|
|
- [`boolean-bitfield`](utils/boolean-bitfield/): Provides an expandable vector
|
2019-02-28 13:18:53 +00:00
|
|
|
of bools, specifically for use in Eth2.
|
|
|
|
- [`fisher-yates-shuffle`](utils/fisher-yates-shuffle/): shuffles a list
|
|
|
|
pseudo-randomly.
|
2019-03-01 02:10:50 +00:00
|
|
|
- [`hashing`](utils/hashing/): A wrapper for external hashing libraries.
|
2019-02-28 13:18:53 +00:00
|
|
|
- [`honey-badger-split`](utils/honey-badger-split/): Splits a list in `n`
|
2019-03-01 02:10:50 +00:00
|
|
|
parts without giving AF about the length of the list, `n`, or anything
|
2019-02-28 13:18:53 +00:00
|
|
|
else.
|
|
|
|
- [`int-to-bytes`](utils/int-to-bytes/): Simple library which converts ints
|
|
|
|
into byte-strings of various lengths.
|
|
|
|
- [`slot_clock`](utils/slot_clock/): translates the system time into Beacon
|
2019-02-28 13:25:11 +00:00
|
|
|
Chain "slots". (Also provides another slot clock that's useful during
|
|
|
|
testing.)
|
|
|
|
- [`ssz`](utils/ssz/): an implementation of the SimpleSerialize
|
|
|
|
serialization/deserialization protocol used by Eth 2.0.
|
2019-02-28 13:18:53 +00:00
|
|
|
- [`ssz_derive`](utils/ssz_derive/): provides procedural macros for
|
2019-03-01 02:10:50 +00:00
|
|
|
deriving SSZ `Encodable`, `Decodable`, and `TreeHash` methods.
|
2019-02-28 13:18:53 +00:00
|
|
|
- [`swap_or_not_shuffle`](utils/swap_or_not_shuffle/): a list-shuffling
|
2019-03-01 02:10:50 +00:00
|
|
|
method which is slow, but allows for a subset of indices to be shuffled.
|
2019-02-28 13:18:53 +00:00
|
|
|
- [`test_random_derive`](utils/test_random_derive/): provides procedural
|
|
|
|
macros for deriving the `TestRandom` trait defined in `types`.
|