Skip to content

Commit d416be4

Browse files
kariyclaude
andcommitted
feat(grpc): add gRPC client implementation
Add a unified gRPC client that provides access to all Starknet services (read, write, trace) through a single interface with builder pattern configuration. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 6091b98 commit d416be4

File tree

3 files changed

+459
-4
lines changed

3 files changed

+459
-4
lines changed

crates/grpc/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
66

77
tonic_build::configure()
88
.build_server(true)
9-
.build_client(false)
9+
.build_client(true)
1010
.file_descriptor_set_path(out_dir.join("starknet_descriptor.bin"))
1111
// Allow clippy lints on generated code for enum variant naming and size patterns
1212
.type_attribute(".", "#[allow(clippy::enum_variant_names, clippy::large_enum_variant)]")

0 commit comments

Comments
 (0)