Skip to content
Merged
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
2 changes: 1 addition & 1 deletion deploy/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

set -euo pipefail

DEST_HOST="${DEST_HOST:-217.15.163.71}"
DEST_HOST="${DEST_HOST:?DEST_HOST must be set — production host IP/DNS}"
# Production runs the explorer under a non-privileged service user; ssh
# as that user so rsync preserves the file ownership systemd expects.
# Per-instance restart needs root via sudo (see `restart()` below) — the
Expand Down
2 changes: 1 addition & 1 deletion proto/sentrix.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ syntax = "proto3";
//
// Status: v0.1 skeleton. Handlers in crates/sentrix-grpc/src/lib.rs return
// tonic::Status::unimplemented until main.rs integration lands. Reference
// design doc: founder-private/audits/2026-05-05-grpc-service-proto-draft.md.
// design: internal Sentrix Labs gRPC service-proto draft (2026-05-05).

package sentrix.v1;

Expand Down
6 changes: 3 additions & 3 deletions src/components/stats_dashboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ async fn fetch_chain_stats(network: Network) -> Result<ChainStats, FetchError> {

/// Subset of fields the dashboard cares about. Backed by gRPC v0.4
/// `GetValidatorSet` + `GetMempool` — chain v2.1.72 shipped 2026-05-05
/// across both mainnet (vps1/vps2/vps3/vps5 simul-start) and testnet
/// (vps4 docker), so the read-only RPCs are now real on both networks.
/// Replaces the previous REST `/sentrix_status_extended` bridge.
/// across both mainnet (4-validator simul-start) and testnet (docker),
/// so the read-only RPCs are now real on both networks. Replaces the
/// previous REST `/sentrix_status_extended` bridge.
#[cfg(target_arch = "wasm32")]
#[derive(Default)]
struct SentrixStatusSubset {
Expand Down
Loading