Endpoint URL
Smart Router opens one HTTP listener per chain × API interface. Your client connects to that listener and speaks the chain's native protocol.
URL format
| Component | What it is |
|---|---|
<host>:<port> |
a listener you defined in endpoints[] of your YAML config |
<chain-specific-path> |
what the chain itself expects — / for Ethereum JSON-RPC, /cosmos/... for Cosmos REST, /status for Tendermint RPC |
Default ports
The example configs use these ports:
| Chain × interface | Default port |
|---|---|
| Ethereum (JSON-RPC) | 3360 |
| Lava REST | 3360 |
| Lava gRPC | 3361 |
| Lava Tendermint RPC | 3362 |
Each endpoints[] entry has a network-address field (e.g. 0.0.0.0:3360) — change it freely.
Pointing a client at it
TLS
The router listens HTTP. For TLS termination, put a reverse proxy in front (NGINX, HAProxy, or your cloud load balancer). See Bare metal → Behind a reverse proxy for an NGINX example.
CORS, auth, rate limiting
These are configured server-side, not per-client. See Configuration.
Forwarded client IP
X-Forwarded-For is honoured. If you put a proxy in front, set the header upstream and the router will use it for IP-based logic (rate limiting, audit logs).