lighthouse/eth2
blacktemplar 309b10c4a8 add logging functionality for aligning key value pairs after message (#461)
* add logging functionality for aligning key value pairs after the main messages

* move to own crate, change default message width to 40

* use FullFormat in validator_client (CompactFormat is not compatible with aligning)

* move logging to eth2/utils/logging
2019-07-31 09:06:53 +10:00
..
lmd_ghost Update to frozen spec ❄️ (v0.8.1) (#444) 2019-07-30 12:44:51 +10:00
operation_pool Update to frozen spec ❄️ (v0.8.1) (#444) 2019-07-30 12:44:51 +10:00
state_processing Remove old benches (#465) 2019-07-30 17:19:03 +10:00
types Add v0.8 genesis tests (#466) 2019-07-30 17:02:38 +10:00
utils add logging functionality for aligning key value pairs after message (#461) 2019-07-31 09:06:53 +10:00
validator_change Fix lots of typos. 2019-07-26 15:26:06 -04:00
README.md Update to frozen spec ❄️ (v0.8.1) (#444) 2019-07-30 12:44:51 +10:00

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 in n 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 SSZ Encode, Decode, and TreeHash 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 the TestRandom trait defined in types.