89f05e4a4f
* Add CLI for beacon_chain_sim * Rename beacon-chain-sim to simulator * Fix simulator workflow * Push Cargo.lock * WIP syncing simulator * Add cli args * Remove eth1 stuff and deposits * Add syncing strategy simulations * Successful one node sync * Clean up * Rename to avoid confusion * add command line args * fix cargo fmt issues * Add additional syncing strategies * Run all syncing strategies one after other; add comments * Improve cli argument parsing * Change `end_after_checks` default to true * Small modifications to syncing-sim * Add `strategy` cli argument * Documented defaults in cli help Co-authored-by: mkinney <mike.kinney@gmail.com> Co-authored-by: Age Manning <Age@AgeManning.com>
59 lines
1.6 KiB
TOML
59 lines
1.6 KiB
TOML
[workspace]
|
|
members = [
|
|
"eth2/lmd_ghost",
|
|
"eth2/operation_pool",
|
|
"eth2/state_processing",
|
|
"eth2/types",
|
|
"eth2/utils/bls",
|
|
"eth2/utils/compare_fields",
|
|
"eth2/utils/compare_fields_derive",
|
|
"eth2/utils/deposit_contract",
|
|
"eth2/utils/eth2_config",
|
|
"eth2/utils/eth2_interop_keypairs",
|
|
"eth2/utils/eth2_testnet_config",
|
|
"eth2/utils/logging",
|
|
"eth2/utils/eth2_hashing",
|
|
"eth2/utils/lighthouse_metrics",
|
|
"eth2/utils/lighthouse_bootstrap",
|
|
"eth2/utils/merkle_proof",
|
|
"eth2/utils/int_to_bytes",
|
|
"eth2/utils/serde_hex",
|
|
"eth2/utils/slot_clock",
|
|
"eth2/utils/ssz",
|
|
"eth2/utils/ssz_derive",
|
|
"eth2/utils/ssz_types",
|
|
"eth2/utils/swap_or_not_shuffle",
|
|
"eth2/utils/cached_tree_hash",
|
|
"eth2/utils/tree_hash",
|
|
"eth2/utils/tree_hash_derive",
|
|
"eth2/utils/test_random_derive",
|
|
"beacon_node",
|
|
"beacon_node/store",
|
|
"beacon_node/client",
|
|
"beacon_node/rest_api",
|
|
"beacon_node/network",
|
|
"beacon_node/eth2-libp2p",
|
|
"beacon_node/version",
|
|
"beacon_node/eth1",
|
|
"beacon_node/beacon_chain",
|
|
"beacon_node/websocket_server",
|
|
"tests/simulator",
|
|
"tests/ef_tests",
|
|
"tests/eth1_test_rig",
|
|
"tests/node_test_rig",
|
|
"lcli",
|
|
"validator_client",
|
|
"account_manager",
|
|
"lighthouse",
|
|
"lighthouse/environment"
|
|
]
|
|
|
|
[patch]
|
|
[patch.crates-io]
|
|
tree_hash = { path = "eth2/utils/tree_hash" }
|
|
tree_hash_derive = { path = "eth2/utils/tree_hash_derive" }
|
|
eth2_ssz = { path = "eth2/utils/ssz" }
|
|
eth2_ssz_derive = { path = "eth2/utils/ssz_derive" }
|
|
eth2_ssz_types = { path = "eth2/utils/ssz_types" }
|
|
eth2_hashing = { path = "eth2/utils/eth2_hashing" }
|