You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/SETUP.md
+4-14Lines changed: 4 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,23 +98,13 @@ pnpm env:propagate testnet
98
98
99
99
### `sentinel`
100
100
101
-
The sentinel is a reverse proxy that sits in front of Aztec node RPC endpoints, providing load balancing and health checking.
101
+
URL configuration for the Aztec node RPC endpoint. This can point directly to an Aztec node or to a reverse proxy that load-balances across multiple nodes.
102
102
103
103
| Property | Type | Example | Description |
104
104
|----------|------|---------|-------------|
105
-
|`proxyUrl`| string |`"http://sentinel-proxy:8080"`| Base URL of the sentinel proxy. The web app appends `/pruned` for pruned node access. The indexer-custom appends `/archiver` for archiver access. |
106
-
|`backends.archiverUrl`| string |`"https://archiver.example.com/rpc"`| Aztec archiver node RPC URL(s). Comma-separated for multiple backends. Archiver nodes store full historical data. |
107
-
|`backends.prunedUrl`| string |`"https://pruned.example.com/rpc"`| Aztec pruned node RPC URL(s). Comma-separated for multiple backends. Pruned nodes store recent data only. |
108
-
|`proxy.port`| number |`8080`| Port the sentinel proxy listens on. |
109
-
|`proxy.healthCheckIntervalMs`| number |`30000`| How often the proxy health-checks its backend nodes (ms). |
110
-
|`proxy.integrityCheckIntervalMs`| number |`60000`| How often the proxy verifies data consistency across backends (ms). |
111
-
|`proxy.integrityCheckEpochs`| number |`10`| Number of recent epochs to compare during integrity checks. |
112
-
|`proxy.requestTimeoutMs`| number |`30000`| Timeout for individual RPC requests forwarded to backends (ms). |
113
-
|`proxy.slotsPerEpoch`| number |`32`| Aztec network parameter — slots per epoch. |
114
-
|`proxy.archiverThresholdEpochs`| number |`100`| Epoch lag threshold before the proxy considers an archiver unhealthy. |
115
-
|`proxy.expectedValidators`| number |`24`| Expected validator count for integrity checks. |
116
-
117
-
**Used by:** web app (proxyUrl), indexer-custom (proxyUrl)
105
+
|`proxyUrl`| string |`"http://your-aztec-node:8080"`| Base URL of the Aztec RPC endpoint. The web app appends `/pruned` for pruned node access. The indexer-custom appends `/archiver` for archiver access. |
0 commit comments