Product 04

v0.3 · planned

Aidos SDK

How the protocol escapes the app. Everything the Aidos App does — spawning shielded accounts, issuing cards, deploying TEE agents, routing through the darkpool — is exposed as an open developer surface, so anyone can build a private bank of their own.

The ambition is deliberate: AIDOS is not trying to be the one bank everyone uses, it is trying to be the infrastructure a thousand private banks are built on — with compliance tooling included rather than bolted on.

Surface

  • REST + WebSocket API — spawn accounts, issue cards, and deploy agents programmatically.
  • Multi-language SDKs — TypeScript, Python, Rust, and Go.
  • React hooks<AidosProvider>, useShieldedBalance(), useAidosCard().
  • Bot templates — a full Telegram banking bot in ~50 lines.
  • White-label cards — issue Aidos-powered debit cards under your own brand.
  • Compliance module — pluggable KYC/AML, selective disclosure, and audit reports.

Build in five lines

Create a shielded account, fund it, issue a card, and deploy an autonomous agent — the same primitives the Aidos App is built on:

import { AidosClient } from '@aidosfi/sdk';
const aidos = new AidosClient({ apiKey: KEY });

// shielded account + deposit
const acct = await aidos.createAccount({ label: 'payroll' });
await acct.deposit('USDC', 5000);

// virtual card
const card = await acct.issueCard({ type: 'virtual', limit: 1000 });

// autonomous agent
await acct.deployAgent({ strategy: 'dca', asset: 'SOL',
                         amount: 100, interval: '1w' });
await card.spend({ merchant: 'starbucks', amount: 5.50 });

Amounts are integers

At the protocol layer, token amounts are expressed in the smallest unit as arbitrary-precision integers. Keep amounts as bigint end to end and format to a human-readable value only at the display layer.

Who builds on AIDOS

BuilderWhat they ship
Fintech startupA fiat-crypto neobank with privacy.
DAOPrivate payroll and treasury.
Telegram devA /bank bot for a community.
Remittance servicePrivate cross-border transfers.
EnterpriseShielded employee expense cards.
Game studioAn in-game shielded economy.

Planned — not yet released

The SDK is on the roadmap at v0.3. The example above shows the intended surface; APIs may change before release. Track progress on the Roadmap.