eaa9f9744f
## Issue Addressed NA ## Proposed Changes Adds an integration for keys generated via https://github.com/ethereum/eth2.0-deposit (In reality keys are *actually* generated here: https://github.com/ethereum/eth2.0-deposit-cli). ## Additional Info NA ## TODO - [x] Docs - [x] Tests Co-authored-by: Michael Sproul <michael@sigmaprime.io>
22 lines
694 B
TOML
22 lines
694 B
TOML
[package]
|
|
name = "account_utils"
|
|
version = "0.1.0"
|
|
authors = ["Paul Hauner <paul@paulhauner.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rand = "0.7.2"
|
|
eth2_wallet = { path = "../../crypto/eth2_wallet" }
|
|
eth2_keystore = { path = "../../crypto/eth2_keystore" }
|
|
zeroize = { version = "1.0.0", features = ["zeroize_derive"] }
|
|
serde = "1.0.110"
|
|
serde_derive = "1.0.110"
|
|
serde_yaml = "0.8.13"
|
|
slog = { version = "2.5.2", features = ["max_level_trace", "release_max_level_trace"] }
|
|
types = { path = "../../consensus/types" }
|
|
validator_dir = { path = "../validator_dir" }
|
|
regex = "1.3.9"
|
|
rpassword = "4.0.5"
|