Build on the Presence Layer
Developer tools, SDKs, and 16 protocol modules for building bot-proof applications on 7aychain's Proof of Presence infrastructure.
Tools for building on 7aychain
Laud Networks CLI
Python-based interface for interacting with all 16 7aychain modules. Declare presence, manage validators, submit ZK proofs, and query chain state from the terminal.
Polkadot.js Apps
Full-featured web interface for browsing blocks, submitting extrinsics, and querying storage on the 7aychain devnet. Connect to ws://127.0.0.1:9944.
JSON-RPC API
Standard Substrate JSON-RPC interface for programmatic access. Compatible with any HTTP or WebSocket client. Supports all runtime and custom module methods.
Connect from any language
7aychain exposes a standard Substrate RPC interface. Use any Substrate-compatible SDK to interact with the chain.
Rust (Subxt)
— Type-safe Substrate client for Rust applicationsuse subxt::{OnlineClient, PolkadotConfig};
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let api = OnlineClient::<PolkadotConfig>::from_url(
"ws://127.0.0.1:9944"
).await?;
let block = api.blocks().at_latest().await?;
println!("Latest block: {}", block.number());
Ok(())
}JavaScript (@polkadot/api)
— Full-featured JS/TS client for browser and Node.jsimport { ApiPromise, WsProvider } from "@polkadot/api";
const provider = new WsProvider("ws://127.0.0.1:9944");
const api = await ApiPromise.create({ provider });
// Query presence state
const presence = await api.query.presence.declarations(accountId);
console.log("Presence:", presence.toHuman());cURL (JSON-RPC)
— Direct HTTP calls for any language or toolcurl -H "Content-Type: application/json" \
-d '{
"id": 1,
"jsonrpc": "2.0",
"method": "state_getMetadata"
}' \
http://127.0.0.1:994416 Modules to Build With
7aychain's runtime includes 16 custom modules organized into four functional groups. Each exposes extrinsics, storage, and events for developers.
Presence Layer
Core presence declaration, time-window management, lifecycle state machine, and device registration.
presenceepochlifecycledeviceVerification
Position estimation via network timing, zero-knowledge proofs, and position-bound token minting.
triangulationzkpbtSecurity
Validator staking and slashing, on-chain dispute resolution, and autonomous anomaly detection.
validatordisputeautonomousInfrastructure
Secure vaults, on-chain storage, governance, trust graphs, return proofs, and group management.
vaultstoragegovernancesemanticboomerangoctopusJoin the 7aychain community
Ready to build?
The devnet is live. Start building bot-proof applications on Proof of Presence today.
Join the Presence Economy
Protocol milestones, validator updates, and early access drops — delivered to those who show up first.
Signal only. No noise. Unsubscribe anytime.