npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@cobo/agentic-wallet

v0.1.1

Published

Unified wallet engine for human and agent principals

Downloads

117

Readme

@cobo/[email protected]

Unified wallet engine for human and agent principals

TypeScript/JavaScript client for the Cobo Agentic Wallet Service API.

Installation

npm install @cobo/agentic-wallet

Getting Started

import { Configuration, AP2Api } from '@cobo/agentic-wallet';

const config = new Configuration({
    apiKey: 'YOUR_API_KEY',
});


const api = new AP2Api(config);

Documentation for API Endpoints

All URIs are relative to http://localhost

Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- AP2Api | getMerchants | GET /api/v1/ap2/merchants | List AP2 merchants ApprovalsApi | createApproval | POST /api/v1/approvals | Create approval request ApprovalsApi | getApproval | GET /api/v1/approvals/{approval_id} | Get approval details ApprovalsApi | listApprovals | GET /api/v1/approvals | List approvals ApprovalsApi | resolveApproval | POST /api/v1/approvals/{approval_id}/resolve | Resolve approval request AuditApi | listAuditLogs | GET /api/v1/audit-logs | List audit logs BalanceApi | listBalances | GET /api/v1/wallets/balances | List token balances CoinPriceApi | getAssetCoinPrices | GET /api/v1/coin-price | Get coin prices DelegationsApi | createDelegation | POST /api/v1/delegations | Create delegation DelegationsApi | freezeDelegations | POST /api/v1/freeze | Freeze delegations DelegationsApi | getDelegation | GET /api/v1/delegations/{delegation_id} | Get delegation DelegationsApi | listDelegations | GET /api/v1/delegations | List delegations DelegationsApi | listReceivedDelegations | GET /api/v1/delegations/received | List received delegations DelegationsApi | revokeDelegation | DELETE /api/v1/delegations/{delegation_id} | Revoke delegation DelegationsApi | unfreezeDelegations | POST /api/v1/unfreeze | Unfreeze delegations DelegationsApi | updateDelegation | PATCH /api/v1/delegations/{delegation_id} | Update delegation FaucetApi | deposit | POST /api/v1/faucet/deposit | Request faucet deposit FaucetApi | listTokens | GET /api/v1/faucet/tokens | List faucet tokens HealthApi | healthCheck | GET /health | Health Check IdentityApi | activateAgent | POST /api/v1/principals/{agent_id}/activate | Activate agent IdentityApi | createApiKey | POST /api/v1/api-keys | Create API key IdentityApi | createPrincipal | POST /api/v1/principals | Create principal IdentityApi | getAgentStatus | GET /api/v1/principals/{agent_id}/status | Get agent status IdentityApi | listApiKeys | GET /api/v1/api-keys | List API keys IdentityApi | listMyAgents | GET /api/v1/principals/agents | List my agents IdentityApi | listPrincipals | GET /api/v1/principals | List all principals IdentityApi | provisionAgent | POST /api/v1/principals/provision | Provision agent IdentityApi | revokeApiKey | DELETE /api/v1/api-keys/{api_key_id} | Revoke API key MetaApi | ping | GET /api/v1/ping | Ping MetadataApi | getChainInfoByChainId | GET /api/v1/metadata/chains/{chain_id}/info | Get chain info MetadataApi | listAssets | GET /api/v1/metadata/assets | List supported assets MetadataApi | listChains | GET /api/v1/metadata/chains | List supported chains PactsApi | getPact | GET /api/v1/pacts/{pact_id} | Get pact detail PactsApi | listPactEvents | GET /api/v1/pacts/{pact_id}/events | Get pact event history PactsApi | listPacts | GET /api/v1/pacts | List pacts PactsApi | revokePact | POST /api/v1/pacts/{pact_id}/revoke | Revoke an active pact PactsApi | submitPact | POST /api/v1/pacts/submit | Submit pact for approval PoliciesApi | approvePendingOperation | POST /api/v1/pending-operations/{pending_operation_id}/approve | Approve pending operation PoliciesApi | createPolicy | POST /api/v1/policies | Create policy PoliciesApi | deactivatePolicy | DELETE /api/v1/policies/{policy_id} | Deactivate policy PoliciesApi | dryRunPolicy | POST /api/v1/policies/dry-run | Dry-run policy PoliciesApi | getPendingOperation | GET /api/v1/pending-operations/{pending_operation_id} | Get pending operation PoliciesApi | getPolicy | GET /api/v1/policies/{policy_id} | Get policy PoliciesApi | listPendingOperations | GET /api/v1/pending-operations | List pending operations PoliciesApi | listPolicies | GET /api/v1/policies | List all policies PoliciesApi | rejectPendingOperation | POST /api/v1/pending-operations/{pending_operation_id}/reject | Reject pending operation PoliciesApi | updatePolicy | PATCH /api/v1/policies/{policy_id} | Update policy TelemetryApi | getTelemetryConfig | GET /api/v1/telemetry/config | Get Telemetry Config TelemetryApi | ingestTelemetry | POST /api/v1/telemetry | Ingest Telemetry TransactionRecordsApi | getTransactionRecord | GET /api/v1/wallets/{wallet_uuid}/transactions/{record_uuid} | Get transaction record TransactionRecordsApi | listTransactionRecords | GET /api/v1/wallets/transactions | List transaction records TransactionsApi | contractCall | POST /api/v1/wallets/{wallet_uuid}/contract-call | Call contract TransactionsApi | dropTransaction | POST /api/v1/wallets/{wallet_uuid}/transactions/{transaction_uuid}/drop | Drop transaction TransactionsApi | estimateContractCallFee | POST /api/v1/wallets/{wallet_uuid}/estimate-contract-call-fee | Estimate contract call fee TransactionsApi | estimateTransferFee | POST /api/v1/wallets/{wallet_uuid}/estimate-transfer-fee | Estimate transfer fee TransactionsApi | handleWaasWebhook | POST /api/v1/wallets/webhook | Handle WaaS webhook TransactionsApi | listRecentAddresses | GET /api/v1/wallets/{wallet_uuid}/recent-addresses | List recent addresses TransactionsApi | messageSign | POST /api/v1/wallets/{wallet_uuid}/message-sign | Sign a message TransactionsApi | speedupTransaction | POST /api/v1/wallets/{wallet_uuid}/transactions/{transaction_uuid}/speedup | Speed up transaction TransactionsApi | transferTokens | POST /api/v1/wallets/{wallet_uuid}/transfer | Transfer tokens TransactionsApi | x402Payment | POST /api/v1/wallets/{wallet_uuid}/x402-payment | x402 payment WalletsApi | archiveWallet | DELETE /api/v1/wallets/{wallet_uuid} | Archive wallet WalletsApi | confirmWalletClaim | POST /api/v1/wallets/claims/confirm | Confirm wallet claim WalletsApi | createWallet | POST /api/v1/wallets | Create wallet WalletsApi | createWalletAddress | POST /api/v1/wallets/{wallet_uuid}/addresses | Create wallet address WalletsApi | getClaimInfo | GET /api/v1/wallets/claims/{token} | Get claim info by token WalletsApi | getClaimInfoByWallet | GET /api/v1/wallets/claims/info/{wallet_uuid} | Get claim info by wallet ID WalletsApi | getWallet | GET /api/v1/wallets/{wallet_uuid} | Get wallet WalletsApi | getWalletNodeStatus | GET /api/v1/wallets/{wallet_uuid}/node-status | Get node status WalletsApi | initiateWalletClaim | POST /api/v1/wallets/claims/initiate | Initiate wallet claim WalletsApi | listWalletAddresses | GET /api/v1/wallets/{wallet_uuid}/addresses | List wallet addresses WalletsApi | listWallets | GET /api/v1/wallets | List all wallets WalletsApi | updateWallet | PATCH /api/v1/wallets/{wallet_uuid} | Update wallet WebhooksApi | deleteWebhookRegistration | DELETE /api/v1/webhooks/{registration_id} | Delete webhook registration WebhooksApi | listWebhookDlq | GET /api/v1/webhooks/dlq | List webhook DLQ WebhooksApi | registerWebhook | POST /api/v1/webhooks/register | Register webhook

Documentation for Models

Author