G
centimore Engine
WSS MAINNET CLUSTER ACTIVE

Industrial-grade
ledger logic.

centimore provides bare-metal infrastructure for quantitative developers. Automate batch transaction routing, scan ledger object pools in real-time, and execute decentralized logic without UI friction.

Deploy Pipeline
Live Execution Stream Node 04

[12:07:45] INFO Object Scanner initialized.

[12:07:46] EVENT New Ledger Close: 82,491,032

[12:07:46] EXEC Batching 42 offer cancellations...

[12:07:47] SUCCESS Payload signed and submitted. (Latency: 12ms)

[12:07:49] EVENT New Ledger Close: 82,491,033

[12:07:49] INFO Scanning trustline liquidity...

[12:07:45] INFO Object Scanner initialized.

[12:07:46] EVENT New Ledger Close: 82,491,032

[12:07:46] EXEC Batching 42 offer cancellations...

[12:07:47] SUCCESS Payload signed and submitted. (Latency: 12ms)

[12:07:49] EVENT New Ledger Close: 82,491,033

[12:07:49] INFO Scanning trustline liquidity...

Avg Settlement

3.4s

System Uptime

99.9%

API Latency

<10ms

Throughput

1,500/tps

Core Execution Logic

We stripped out the bloated UI. centimore is a high-speed routing layer that executes complex algorithmic workflows directly on the decentralized ledger.

Batch Automation Engine

Consolidate massive arrays of logic operations. Fire off bulk transaction cancellations, NFT transfers, or automated offer creations in a single secure, gas-optimized payload.

  • Auto-nonce resolution
  • Multi-sign payload wrapping

Ledger Object Webhooks

Continuously monitor blockchain state changes in real-time. Target specific accounts or trustlines, and trigger your Node.js logic the millisecond a liquidity pool updates.

  • Zero-polling WebSocket architecture
  • Sub-15ms event delivery

Algorithmic Market Making

Deploy high-frequency trading scripts directly to our servers. Execute buy/sell logic on the DEX based on custom price impact and slippage parameters.

  • Pathfinding optimization
  • Automated arbitrage routing

Keyless Cloud Infrastructure

Never hardcode a private key again. Authenticate your environments securely via API, allowing centimore to sign transactions safely from isolated HSM enclaves.

  • Hardware Security Module (HSM) signing
  • Granular API token scoping

Built natively for Node.js

We designed the centimore SDK to slot directly into your existing Javascript/Typescript backend. Forget building complex network wrappers—import the library, set your logic, and let the engine handle connection retries and payload formatting.

batch_cancel.js

import { centimore } from '@centimore/node';


const client = new centimore({

network: 'mainnet',

apiKey: process.env.centimore_KEY

});


// Execute batch cancellation for stale offers

await client.batch.cancelOffers({

walletId: 'w_8912nx',

limit: 100,

strategy: 'oldest_first'

}).then((receipt) => {

console.log(`Swept ${receipt.count} offers. Hash: ${receipt.txId}`);

});

Initialize your workspace.

Generate a developer API key to start deploying automated scripts against the mainnet.

API Documentation

Introduction

The centimore Engine API provides REST and WebSocket endpoints for high-frequency ledger operations. All requests route through the mainnet clustering nodes.

Authentication

Pass your institutional API key in the header of all REST requests.

Authorization: Bearer centimore_live_xxxxxxxxx

Batch Execution

Submit an array of ledger actions to be processed in a single transaction payload, automatically resolving nonces and sequence numbers.

POST /v1/execute/batch

{

"walletId": "w_8912nx",

"actions": [ ... ],

"autoNonce": true

}

WebSocket Clusters

Stream live object changes by subscribing to specific trustlines or accounts with zero-polling architecture.

WSS wss://stream.centimore.com/v1

client.subscribe(["offers", "ledger_close"]);