Control
01- Self-hosted
- Full OS and network control
- Managed provider
- Agreed service configuration
Blockchain infrastructure
Private nodes, RPC endpoints, monitoring, security and scaling for Bitcoin, Ethereum, TON, Solana, Polygon, BNB Chain and other networks — a managed access layer instead of a separate platform team for every protocol.
One endpoint, four layers of operations
timeouts, retries, reorgs
key, limits, environments
pool health, rotation
full and archive, upgrades
a slot every 0.4 s
Access protocols · HTTP · WS · gRPC
Components
Blockchain infrastructure includes more than a node server. Production systems need endpoints, monitoring, access control, upgrades, capacity planning and failure handling.
Full or archive clients for supported mainnets and testnets.
full · archive
HTTP, WebSocket and network-specific interfaces for applications.
HTTP · WebSocket · gRPC
Head lag, method checks, errors, latency and resources.
head lag · p95 · error rate
Updates, capacity planning, incident response and recovery.
upgrades · capacity · on-call
Settla operates
Your application handles
Monitoring and security
An availability check sees a live process, an open port and a valid response. It does not see lag at all — worse, a stalled node answers faster than a healthy one, because it has nothing to catch up on. Switch the check and watch what the client receives meanwhile.
both nodes in sync
Pool behind /sol/mainnetSolana · a slot every 0.4 s
The client read stale state for 16 s
Local height is compared against an independent source, not against itself. Alongside it go control RPC methods, error rate, p95/p99 and free resources.
One second behind the chain is a hiccup, not an outage. A node leaves rotation on a threshold: 15 slots, roughly 6 s on this network.
A notification without a runbook only records the problem. On-call needs the next step, not a description of what happened.
Scaling
Scaling starts with splitting the load, not with adding nodes: indexers, user reads and transaction writes must not compete for one quota.
A backfill drains the limit, and a transaction waits in line behind it.
Each lane gets its own limit, its own cache and its own queue.
Balances, statuses and history in the interface. Numerous, small and mostly safe to cache.
eth_call · getBalance
A rare but critical lane — the first one to suffer when someone else drains the quota.
eth_sendRawTransaction
Background work with heavy methods. It needs volume, not milliseconds.
eth_getLogs · trace_block
Several nodes and health-aware routing
Growth adds nodes, and routing accounts for their health — the health measured by block height rather than by HTTP status.
A reorg is not an application error
A block you already read may stop being part of the chain. Finality differs between networks, so retries have to be idempotent.
Choosing a model
Both models work. The difference is not reliability but who carries the on-call rota and what the next network costs to launch.
| Criterion | Self-hosted | Managed provider |
|---|---|---|
| Control | Full OS and network control | Agreed service configuration |
| Operations | Customer team, around the clock | Provider handles core node operations |
| New networks | A new deployment project | Connect an available endpoint |
| Cost | Servers, engineers, on-call, redundancy | A plan or a custom configuration |
| Best fit | Special requirements and a mature platform team | Product focus and faster multichain access |
Blockchain infrastructure for business is not a one-time setup but an operational layer that performs reliably around the clock. Companies integrating blockchain into payment flows, custodial services or compliance pipelines need predictable infrastructure.
Use cases
The same access layer serves products with very different load — from a wallet making a dozen calls per screen to an indexer reading history for months.
Several networks in one interface: balances, transfers, statuses and credit notifications.
Learn moreDeposit and withdrawal monitoring, where a data mismatch costs money directly.
Learn moreReading state, calling contracts and broadcasting transactions from the application.
Learn moreFull history of blocks, logs and traces for dashboards and investigations.
Learn moreAddress screening, flow tracing and corporate reporting.
Learn moreGetting started
Start from business-critical operations and application SLOs: which data is read, how quickly transactions must be sent and what event loss is acceptable.
A provider handles node operations, but responsibility remains shared: the application must handle timeouts, rate limits, reorgs and retries correctly. This approach produces more resilient crypto infrastructure than relying on a single supposedly infallible endpoint.
What actually breaks for the user when an answer arrives a second late — or never arrives.
Networks, environments and methods including the heavy ones: both limits and cost follow from that list.
Whether you need archive and tracing. That is a separate class of nodes, not a checkbox in a plan.
Timeouts, retries, fallback routing and reorg handling live in application code.
FAQ
Free to start. No credit card required.