feat: start implementing OpTransaction (#12529)

Co-authored-by: Emilia Hane <elsaemiliaevahane@gmail.com>
This commit is contained in:
tedison
2024-11-24 04:08:36 -05:00
committed by GitHub
parent a552b1ffc9
commit 21bc75df39
6 changed files with 204 additions and 7 deletions

View File

@ -16,7 +16,7 @@ workspace = true
reth-node-types.workspace = true
reth-primitives.workspace = true
reth-primitives-traits.workspace = true
reth-codecs = { workspace = true, optional = true }
reth-codecs = { workspace = true, optional = true, features = ["optimism"] }
# ethereum
alloy-primitives.workspace = true
@ -34,7 +34,7 @@ serde = { workspace = true, optional = true }
# misc
derive_more.workspace = true
# test-utils
# test
arbitrary = { workspace = true, features = ["derive"], optional = true }
[dev-dependencies]
@ -66,7 +66,7 @@ serde = [
"alloy-consensus/serde",
"alloy-eips/serde",
"bytes/serde",
"reth-codecs/serde",
"reth-codecs?/serde",
"op-alloy-consensus/serde",
]
arbitrary = [
@ -78,4 +78,4 @@ arbitrary = [
"alloy-consensus/arbitrary",
"alloy-eips/arbitrary",
"alloy-primitives/arbitrary",
]
]