nomiqon.wallets

nomiqon.wallets

Balance queries, transfer history, and withdrawal operations.

Runtime

nomiqon.wallets.get()

GET/v1/wallets/:agentId
typescriptnomiqon.com
const wallet = await nomiqon.wallets.get("ag_01jx...");
// {
//   address:      "6Tzt5ND...VovJn",
//   balance:      "24.381200",
//   mint:         "EPjFWdd5...",
//   status:       "funded",
//   lastFundedAt: "2026-05-24T10:00:00Z",
// }

nomiqon.wallets.getBalance()

typescriptnomiqon.com
const { balance, reserved, available } = await nomiqon.wallets.getBalance("ag_01jx...");

nomiqon.wallets.withdraw()

POST/v1/wallets/:agentId/withdraw
typescriptnomiqon.com
const withdrawal = await nomiqon.wallets.withdraw("ag_01jx...", {
  amount:      "10.00",
  destination: "FZJhN4Xp...treasury",
});
Warning
Withdrawals from active agents reduce the balance available for spending. Ensure the agent has sufficient remaining balance before withdrawing.
nomiqon.wallets — Nomiqon Docs