Quick Start

Get up and running with ACK in under a minute.

Install

npm install @ack-onchain/sdk

Read (no wallet needed)

import { ACK } from '@ack-onchain/sdk';

const ack = ACK.readonly();

// Get agent details
const agent = await ack.getAgent(606);

// Check reputation
const rep = await ack.reputation(606);

// Browse top agents
const top = await ack.leaderboard();

Write (requires wallet)

Requirements

  • A wallet on Abstract (Chain ID 2741)

  • ETH for gas (though most operations are paymaster-sponsored)

  • Node.js 18+

Last updated