AI 지갑 레이어베타

AI 에이전트가실제로 쓸 수 있는 지갑.

자율 에이전트를 위한 서명 레이어, 아이덴티티 레지스트리, 자산 관리 프리미티브 — 하나의 지갑에 모든 체인, 모든 표준.

결제x402HTTP 402USDC

x402 표준 완벽 지원

에이전트 웹을 위한 결제 표준. HTTP 402 payment-required 흐름의 전체 요청/응답 처리, 온체인 정산 — 지갑 네이티브, 중간 미들웨어 없음.

지원 체인

$ chain=arc · stablecoin rails

x402-arc.tsts
import { AgentWallet } from "@369wallet/agent-wallet";

const wallet = await AgentWallet.use(id);

// Arc — Circle's stablecoin L1, USDC-native
const res = await wallet.fetch(
  "https://api.example.com/credit",
  { chain: "arc", asset: "USDC" }
);

// 402 intercepted → signs USDC on Arc
// → request resumes with X-PAYMENT header
const data = await res.json();
아이덴티티DID

온체인 아이덴티티

Arc, Giwa, BNB에서 에이전트 아이덴티티를 등록·관리. 369의 아이덴티티 프리미티브가 모든 에이전트에 검증 가능하고 이전 가능한 온체인 DID를 부여 — 이름, 권한, 서명 키 모두 체인 전반에서 resolve.

지원 체인ArcGiwaGiwaBNBBNB
agent-identity.tsts
import { AgentIdentity } from "@369wallet/agent-wallet";

// Arc — default identity registry
const id = await AgentIdentity.register({
  chain: "arc",
  name: "trading-bot-v1",
  capabilities: ["swap", "stake", "x402"],
  endpoint: "https://bot.example.com/agent",
});

// id.did       → "did:369:arc:0x..."
// id.proof()   → portable ECDSA signature
// id.verify()  → resolves across chains
스킬MCP

에이전트에 필요한 모든 것

스킬, MCP 서버, 서명, DeFi 및 프로토콜 통합 — 설치 한 번으로. 스킬 레지스트리는 오픈소스, 커뮤니티 확장 가능.

~/my-agentshell
$ npx skills add \
  https://github.com/369wallet/skills

 swap, stake, transfer
 MCP servers (wallet, chain)
 DeFi protocol adapters

5 skills installed.
서명30+ Chains

에이전트 지갑

자율 에이전트를 위한 서명 레이어. 키를 안전하게 저장하고, 활성 지갑을 전환하며, 30+ 체인에서 트랜잭션 서명 — 프로그래머블, 권한 범위 지정, 취소 가능.

지원 체인

Arc
GiwaGiwa
BNBBNB
SOLSOL
ETHETH
BTCBTC
APTAPT
TRXTRX
+22more
signer.tsts
const wallet = await AgentWallet.use(id);

// scoped, revocable session
await wallet.grant({
  skills: ["swap"],
  maxValue: "50 USDC",
  expires: "1h",
});

await wallet.sign(tx); // locally — keys never leave
SDKTypeScript

온체인 자산 관리

자율 포트폴리오 관리를 위한 프로그래머블 프리미티브 — 잔고, 스왑, 송금, 스테이킹 — 완전한 타입 안전성의 깔끔한 TypeScript SDK로 제공.

~/agentshell
$ npm i @369wallet/agent-wallet

// then…
const bal = await wallet.balances();
const q = await wallet.swap.quote({
  from: "USDC",
  to: "ETH",
  amount: 10,
});
await wallet.swap.execute(q);
베타

SDK 출시 시 가장 먼저

AI 지갑 레이어는 활발히 개발 중입니다. 이메일을 보내주시면 SDK 액세스가 열릴 때 첫 초대장을 보내드려요.

help@alpsoft.io 로 메일 보내기

이 페이지는 베타 단계의 기능을 설명합니다. 정식 출시 전까지 API, 패키지명, 지원 체인이 변경될 수 있습니다.