Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rpc <> Exex example #8112

Closed
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ members = [
"crates/trie/",
"crates/trie-parallel/",
"examples/node-custom-rpc/",
"examples/exex/custom-rpc",
"examples/beacon-api-sse/",
"examples/node-event-hooks/",
"examples/custom-evm/",
Expand Down
26 changes: 26 additions & 0 deletions examples/exex/custom-rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[package]
name = "exex-custom-rpc"
version = "0.0.0"
publish = false
edition.workspace = true
license.workspace = true

[dependencies]
reth.workspace = true
reth-exex.workspace = true
reth-node-api.workspace = true
reth-node-core.workspace = true
reth-node-ethereum.workspace = true
reth-primitives.workspace = true
reth-tracing.workspace = true
reth-provider.workspace = true
reth-rpc-api = {workspace = true, features = ["client"]}
reth-rpc.workspace = true
eyre.workspace = true
tokio.workspace = true
futures.workspace = true
alloy-sol-types = { workspace = true, features = ["json"] }
alloy-rpc-types.workspace = true
clap = { workspace = true, features = ["derive"] }
jsonrpsee = { workspace = true, features = ["server", "macros"] }
async-trait.workspace = true
Loading
Loading