Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
3,606 changes: 2,708 additions & 898 deletions Cargo.lock

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ repository = "https://github.com/graphprotocol/graph-node"
license = "MIT OR Apache-2.0"

[workspace.dependencies]
alloy = { version = "1.0.33", features = ["dyn-abi", "json-abi", "full", "arbitrary", "json-rpc"] }
alloy-rpc-types = "1.0.33"
anyhow = "1.0"
async-graphql = { version = "7.0.17", features = ["chrono"] }
async-graphql-axum = "7.0.17"
Expand Down Expand Up @@ -96,6 +98,7 @@ tokio-retry = "0.3.0"

tonic = { version = "0.12.3", features = ["tls-roots", "gzip"] }
tonic-build = { version = "0.12.3", features = ["prost"] }
tower = { version = "0.5.1", features = ["full"] }
tower-http = { version = "0.6.6", features = ["cors"] }
wasmparser = "0.118.1"
wasmtime = { version = "33.0.2", features = ["async"] }
Expand Down
1 change: 1 addition & 0 deletions chain/ethereum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ semver = "1.0.27"
thiserror = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }
tower = { workspace = true }

itertools = "0.14.0"

Expand Down
1 change: 1 addition & 0 deletions chain/ethereum/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ fn main() {

tonic_build::configure()
.out_dir("src/protobuf")
.protoc_arg("--experimental_allow_proto3_optional")
.compile_protos(&["proto/ethereum.proto"], &["proto"])
.expect("Failed to compile Firehose Ethereum proto(s)");
}
701 changes: 633 additions & 68 deletions chain/ethereum/proto/ethereum.proto

Large diffs are not rendered by default.

Loading