Skip to content
Akita

Akita Docs

A composable smart contract ecosystem, a powerful TypeScript SDK, DAO governance tools, and AI agent wallets — all open-source and built on Algorand.

Akita is a composable smart contract ecosystem for Algorand. The SDK gives you a clean TypeScript interface across DAO governance, DeFi, social protocols, NFT marketplace, programmable wallets, and more — all from 18 tree-shakeable sub-modules.

@akta/sdk

The core TypeScript SDK. A clean, tree-shakeable API covering wallets, staking, governance, social, marketplace, and DeFi on Algorand.

Terminal window
npm install @akta/sdk

Explore the SDK

@akta/dao-cli

Interactive terminal UI and CLI for exploring Akita DAO on-chain state. Browse proposals, wallet plugins, staking pools, fees, and governance configuration.

Terminal window
npx @akta/dao-cli

CLI Documentation

@akta/agent-wallet

Give AI agents a secure, on-chain wallet on Algorand. Sandboxed ARC-58 escrow with spending limits, plugin-gated actions, and Vault-based signing.

Terminal window
npm install @akta/agent-wallet

Agent Wallet Docs

@akta/agent-wallet-mcp

MCP server that exposes agent wallet actions as tools for Claude Desktop and other MCP clients.

Terminal window
npx @akta/agent-wallet-mcp

MCP Server Docs

@akta/agent-wallet-cli

Interactive setup wizard and CLI for configuring agent wallets, managing Docker services, and executing actions.

Terminal window
npx @akta/agent-wallet-cli

CLI & Quick Start


Programmable Wallets

Passkey-based ARC-58 accounts with plugin permissions, isolated sub-accounts, and AI agent sandboxing.

Infinity DAO

Governance that can execute any on-chain action. Dual-token voting (AKTA + BONES) with time decay and revenue sharing.

Social Nanopayments

Every interaction is a direct micropayment in AKTA. Posts, upvotes, and replies are value exchange — no ads, no algorithm.

DeFi Primitives

HyperSwap (zero-fee atomic swaps), universal staking, staking pools for any token, subscriptions, and reward distribution.

NFT Marketplace

List, buy, auction, and raffle NFTs. Double-sided fees for cross-platform commerce. Decentralized royalties via MetaMerkles.

Access Gates

16 composable gate types for token-gating any operation — asset holdings, NFD ownership, staking amount, social metrics, and more.


import { WalletSDK, PayPluginSDK } from "@akta/sdk/wallet";
import { AlgorandClient } from "@algorandfoundation/algokit-utils";
// App IDs auto-resolve from the network
const algorand = AlgorandClient.mainNet();
const wallet = new WalletSDK({ algorand });
// Read wallet state
const escrows = await wallet.getEscrows();
const plugins = await wallet.getPlugins();
// Send a payment through an escrow
const pay = new PayPluginSDK({ algorand });
await wallet.usePlugin({
sender: "YOUR_ADDRESS",
signer,
calls: [
pay.pay({
sender: "YOUR_ADDRESS",
signer,
payments: [{ receiver: "RECIPIENT...", amount: 1_000_000n, asset: 0n }],
}),
],
});