-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for bsc parlia consensus
- Loading branch information
1 parent
aadf535
commit 72e843a
Showing
43 changed files
with
10,465 additions
and
33 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
[package] | ||
name = "reth-bsc-consensus" | ||
version.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies] | ||
# reth | ||
reth-consensus-common.workspace = true | ||
reth-consensus.workspace = true | ||
reth-primitives.workspace = true | ||
reth-provider.workspace = true | ||
reth-rpc-types.workspace = true | ||
reth-db.workspace = true | ||
|
||
# eth | ||
alloy-rlp.workspace = true | ||
alloy-dyn-abi.workspace = true | ||
alloy-json-abi.workspace = true | ||
|
||
# crypto | ||
secp256k1.workspace = true | ||
sha3 = "0.10.8" | ||
blst = "0.3.11" | ||
|
||
# misc | ||
serde_json.workspace = true | ||
parking_lot.workspace = true | ||
tracing.workspace = true | ||
lazy_static = "1.4.0" | ||
lru = "0.12" | ||
bitset = "0.1.2" | ||
thiserror = "1.0.59" | ||
|
||
[dev-dependencies] | ||
reth-interfaces = { workspace = true, features = ["test-utils"] } | ||
reth-provider = { workspace = true, features = ["test-utils"] } | ||
mockall = "0.12" | ||
|
||
[features] | ||
bsc = [] |
Oops, something went wrong.