7b86c9a08f
* Add progress on new deposits * Add deposited command to account manager * Remove old lcli::helpers mod * Clean clap_utils * Refactor lcli deposit contract commands to use IPC * Make testnet optional for environment * Use dbg formatting for deploy address * Add command to generate bootnode enr * Ensure lcli returns with 1 on error * Ensure account manager returns 1 on error * Disallow deposits to the zero address * Update web3 in eth1 crate * Ensure correct lighthouse dir is created * Reduce deposit gas requirement * Update cargo.lock * Add progress on new deposits * Add deposited command to account manager * Remove old lcli::helpers mod * Clean clap_utils * Refactor lcli deposit contract commands to use IPC * Add command to generate bootnode enr * Ensure lcli returns with 1 on error * Ensure account manager returns 1 on error * Update web3 in eth1 crate * Update Cargo.lock * Move lcli out of main install script * Change --limit to --at-least * Change --datadir to --validator-dir * Remove duplication in docs
30 lines
832 B
TOML
30 lines
832 B
TOML
[package]
|
|
name = "account_manager"
|
|
version = "0.0.1"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>", "Luke Anderson <luke@sigmaprime.io>"]
|
|
edition = "2018"
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3"
|
|
|
|
[dependencies]
|
|
bls = { path = "../eth2/utils/bls" }
|
|
clap = "2.33.0"
|
|
slog = "2.5.2"
|
|
slog-term = "2.4.2"
|
|
slog-async = "2.3.0"
|
|
types = { path = "../eth2/types" }
|
|
dirs = "2.0.2"
|
|
environment = { path = "../lighthouse/environment" }
|
|
deposit_contract = { path = "../eth2/utils/deposit_contract" }
|
|
libc = "0.2.65"
|
|
eth2_ssz = { path = "../eth2/utils/ssz" }
|
|
eth2_ssz_derive = { path = "../eth2/utils/ssz_derive" }
|
|
hex = "0.3"
|
|
validator_client = { path = "../validator_client" }
|
|
rayon = "1.2.0"
|
|
eth2_testnet_config = { path = "../eth2/utils/eth2_testnet_config" }
|
|
web3 = "0.10.0"
|
|
futures = "0.1.25"
|
|
clap_utils = { path = "../eth2/utils/clap_utils" }
|