mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
https://github.com/sigp/lighthouse/issues/6937 - Use `ethers-rs` [`Signer`](https://www.gakonst.com/ethers-rs/middleware/signer.html) middleware for local signing and sending raw txs to geth - ~~Set `totalDifficulty = 0` through `serde` default if the block does not contain a `totalDifficulty` field~~
29 lines
813 B
TOML
29 lines
813 B
TOML
[package]
|
|
name = "execution_engine_integration"
|
|
version = "0.1.0"
|
|
edition = { workspace = true }
|
|
|
|
[dependencies]
|
|
async-channel = { workspace = true }
|
|
deposit_contract = { workspace = true }
|
|
ethers-core = { workspace = true }
|
|
ethers-middleware = { workspace = true }
|
|
ethers-providers = { workspace = true }
|
|
ethers-signers = { workspace = true }
|
|
execution_layer = { workspace = true }
|
|
fork_choice = { workspace = true }
|
|
futures = { workspace = true }
|
|
hex = { workspace = true }
|
|
logging = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
sensitive_url = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
task_executor = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tokio = { workspace = true }
|
|
types = { workspace = true }
|
|
unused_port = { workspace = true }
|
|
|
|
[features]
|
|
portable = ["types/portable"]
|