Skip to content
Merged
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ The gRPC-Web wrapper used here has been extracted into a standalone crate — se
## Architecture

```
proto/sentrix.proto single source of truth (mirrored from sentrix/crates/sentrix-grpc)
sentrix-proto crate single source of truth (crates.io, default-features = false to drop tonic-transport for wasm)
build.rs / tonic-build
src/grpc/pb prost types + tonic client stubs
re-exported as `pb` in src/grpc/mod.rs
src/grpc/pb prost types + tonic client stubs (now from sentrix-proto, no local codegen)
src/grpc/client.rs SentrixGrpcClient — wraps tonic-web-wasm-client transport
src/grpc/client.rs SentrixGrpcClient — wraps tonic-web-wasm-client transport
src/components/live_feed signal-driven LiveBlockFeed (stream → poll fallback)
src/components/live_feed signal-driven LiveBlockFeed (stream → poll fallback)
src/screens/dashboard route view
src/screens/dashboard route view
```

## Why this beats Etherscan-class explorers
Expand Down
Loading