fix(op): fixes impl of eth api for OP (#9377)

This commit is contained in:
Emilia Hane
2024-07-09 20:49:00 +02:00
committed by GitHub
parent 7dab636b04
commit 63c8a82873
12 changed files with 417 additions and 91 deletions

View File

@ -6,25 +6,47 @@ rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Ethereum RPC implementation for optimism."
[lints]
workspace = true
[dependencies]
# reth
reth-chainspec.workspace = true
reth-errors.workspace = true
reth-evm-optimism.workspace = true
reth-evm.workspace = true
reth-primitives.workspace = true
reth-provider.workspace = true
reth-rpc-eth-api.workspace = true
reth-rpc-eth-types.workspace = true
reth-rpc-server-types.workspace = true
reth-rpc-types.workspace = true
reth-chainspec.workspace = true
reth-provider.workspace = true
reth-tasks = { workspace = true, features = ["rayon"] }
reth-transaction-pool.workspace = true
# ethereum
alloy-primitives.workspace = true
revm.workspace = true
# async
parking_lot.workspace = true
tokio.workspace = true
tokio.workspace = true
# rpc
jsonrpsee.workspace = true
# misc
thiserror.workspace = true
[features]
optimism = [
"reth-chainspec/optimism",
"reth-evm-optimism/optimism",
"reth-primitives/optimism",
"reth-provider/optimism",
"reth-rpc-eth-api/optimism",
"reth-rpc-eth-types/optimism",
"revm/optimism"
]