Chain capabilities and runtime endpoints.
The BaaS portal launches and operates NABD networks. The chain runtime owns consensus, ledger validation, transaction acceptance, and gateway modules.
Capabilities
Consensus profilesPrivate mode for consortium/lab networks; public mode adds VRF leader selection, strict signatures, certify lock, and no private-mode view reset.
Validator modelPlan-driven validator count, quorum, byzantine tolerance, and role separation for client, archive, explorer, and load-balancer services.
Transaction pathAccount balance reads, single or batched transaction submission, and hybrid transaction test coverage through the NABD runtime.
OperationsHealth, doctor, logs, restart, snapshot, state sync, and restore are exposed through audited BaaS jobs.
Deployment targetsLocal filesystem Docker bundles are supported now; remote cloud provider API is modeled and ready for provider-specific adapters.
Chain API endpoints
Generated bundles expose validator APIs only on localhost. Plans with client APIs serve runtime traffic from the client API port, or from the load balancer when the plan includes one. The explorer facade mirrors the public list responses with consistent success, limit, and offset fields.
GET
/healthNode health, height, peers, and local runtime status.GET
/api/statusConsensus status such as round, view, and leader information where enabled.GET
/api/v1/accounts/{address}Account balance, nonce, and recent activity.GET
/api/v1/accounts?limit=&offset=Paginated account list with success, limit, and offset envelope.GET
/api/v1/blocks?limit=&offset=Paginated block list with success, limit, and offset envelope.GET
/api/v1/transactions/{tx_hash}Transaction lookup and finality polling.POST
/api/v1/transactionsSubmit one signed transaction.POST
/api/v1/transactions/batchSubmit a batch of signed transactions.GET
/api/v1/assetsList and inspect native assets.Treat chain endpoints as runtime endpoints. Treat BaaS endpoints as control-plane endpoints for launch, operations, wallets, tokens, and audit.