Skip to content
Block height specification no chain yet
Active validators 0 / 75 floor 7 · standby 0
Security tier not yet established
TPS · current specification
ADM in circulation 0 specification only
Network status Open view validators, blocks, mempool
Specification phase. Values shown are placeholders for layout. No live chain.
§ Developers · /developers/sdks

SDKs.

Three official bindings to the JSON-RPC surface. The Rust SDK is the canonical reference and shares types with the node binary; TypeScript and Go are thin wrappers generated from the same schema.

SDK.01

Rust (canonical)

cargo add adamant-sdk

use adamant_sdk::Client;
let c = Client::new("https://rpc...").await?;
let h = c.block_height().await?;
SDK.02

TypeScript

npm i @adamant/sdk

import { Client } from '@adamant/sdk';
const c = new Client('wss://rpc...');
const h = await c.blockHeight();
SDK.03

Go

go get github.com/adamant-protocol/adamant-go

c, _ := adamant.NewClient("https://rpc...")
h, _ := c.BlockHeight(ctx)

SDKs are versioned with the protocol. Pin to a minor version; major bumps follow hard forks.