feat(l2-withdrawals): Declare OpEngineApiServer and OpEngineApiClient (#14359)

This commit is contained in:
Emilia Hane
2025-02-10 17:05:34 +01:00
committed by GitHub
parent db375d2309
commit c6ac747a70
4 changed files with 201 additions and 0 deletions

View File

@ -43,6 +43,7 @@ alloy-primitives.workspace = true
alloy-rpc-types-eth.workspace = true
alloy-rpc-types-debug.workspace = true
alloy-consensus.workspace = true
alloy-rpc-types-engine.workspace = true
op-alloy-network.workspace = true
op-alloy-rpc-types.workspace = true
op-alloy-rpc-types-engine.workspace = true
@ -58,6 +59,7 @@ reqwest = { workspace = true, features = ["rustls-tls-native-roots"] }
# rpc
jsonrpsee-core.workspace = true
jsonrpsee-types.workspace = true
jsonrpsee.workspace = true
serde_json.workspace = true
# misc
@ -75,3 +77,8 @@ optimism = [
"reth-optimism-payload-builder/optimism",
"reth-optimism-primitives/optimism",
]
client = [
"jsonrpsee/client",
"jsonrpsee/async-client",
"reth-rpc-eth-api/client",
]