SettleMint
Developer guidesPlatform setup

Local chain endpoints

Understand the local EVM endpoint names used when connecting DALP services to a local development network.

DALP local environments read HTTP and WebSocket RPC endpoints from ANVIL_URL and ANVIL_WS_URL. Use these endpoint names for local EVM testing before connecting services to a shared test network or production network.

Endpoint names

The default platform network key is local, with the display name Local Development. That local profile reads these endpoint variables:

SettingDefaultPurpose
ANVIL_URLhttp://localhost:8545HTTP JSON-RPC endpoint used by local services.
ANVIL_WS_URLws://localhost:8545WebSocket JSON-RPC endpoint used by local services that need subscriptions or live chain updates.

Keep these names when you override the local endpoint. The DALP local profile reads these keys even when the endpoint points to another EVM-compatible development node.

Local state boundary

Treat local chain state as disposable test state. A local node can preserve state across restarts for development convenience, but that state is not production evidence, an audit record, or a backup of a live network.

Use a shared test network or production network configuration when the workflow depends on durable records, monitored infrastructure, recovery procedures, or evidence for an external audit.

On this page