Skip to main content
Ecosystem

Build on the Presence Layer

Developer tools, SDKs, and 16 protocol modules for building bot-proof applications on 7aychain's Proof of Presence infrastructure.

Developer Tools

Tools for building on 7aychain

CLI Tool

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.

Web UI

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.

API

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.

SDK Integration

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 applications
use 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.js
import { 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 tool
curl -H "Content-Type: application/json" \
  -d '{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "state_getMetadata"
  }' \
  http://127.0.0.1:9944
Protocol Modules

16 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.

presenceepochlifecycledevice

Verification

Position estimation via network timing, zero-knowledge proofs, and position-bound token minting.

triangulationzkpbt

Security

Validator staking and slashing, on-chain dispute resolution, and autonomous anomaly detection.

validatordisputeautonomous

Infrastructure

Secure vaults, on-chain storage, governance, trust graphs, return proofs, and group management.

vaultstoragegovernancesemanticboomerangoctopus
Community

Join the 7aychain community

GitHub

Explore source code, open issues, and contribute to the protocol.

View Repository

X (Twitter)

Real-time protocol updates, dev progress, and community announcements.

Follow @7ayLabs

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.

Get Protocol Updates

Signal only. No noise. Unsubscribe anytime.