
Emblemai Crypto Wallet
Wire an AI agent to EmblemAI Agent Hustle for multi-chain balances, swaps, transfers, and portfolio reads without hand-rolling seven chain SDKs.
Overview
EmblemAI Crypto Wallet is an agent skill most often used in Build (also Operate infra, Grow analytics) that connects agents to EmblemAI’s Hustle API for multi-chain wallet balance, swap, transfer, and portfolio workflows
Install
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill emblemai-crypto-walletWhat is this skill?
- EmblemAI Agent Hustle API at api.agenthustle.ai with x-api-key authentication
- Seven supported chains: Solana, Ethereum, Base, BSC, Polygon, Hedera, and Bitcoin
- Per-chain ops include balance, swap, transfer; Ethereum adds NFT; Solana adds token lookup
- Install paths: npx skills add EmblemCompany/Agent-skills or npm @emblemvault/agentwallet
- Covers portfolio analysis, token research, and DeFi-style interactions via one API surface
- Supports 7 blockchains: Solana, Ethereum, Base, BSC, Polygon, Hedera, Bitcoin
Adoption & trust: 1 installs on skills.sh; 40.1k GitHub stars; 0/3 security scanners passed (skills.sh audits); trending (+100% hot-view momentum).
What problem does it solve?
You want agent-driven crypto operations across many chains but do not want to maintain separate wallet clients, auth, and swap plumbing for each network.
Who is it for?
Indie builders prototyping AI wallet copilots, treasury monitors, or cross-chain DeFi assistants on EmblemAI’s stack.
Skip if: Teams without API keys and key-management discipline, pure fiat-only apps, or workflows that must stay read-only with zero transaction capability.
When should I use this skill?
User wants to check crypto wallet balances, swap or trade tokens, review portfolio or token research, interact with DeFi protocols, or run cross-chain wallet operations.
What do I get? / Deliverables
Your agent calls a single documented API with x-api-key auth to read balances, analyze portfolios, and execute swaps or transfers on the supported chains the user selects.
- Integrated agent flows for balance, swap, and transfer calls
- Portfolio or token research summaries backed by live API responses
Recommended Skills
Journey fit
Spans multiple journey phases - primary shelf plus alternate fits below.
Wallet and chain API wiring is core product integration work during Build, even when you later use the same skill for operational balance checks. Integrations subphase is where third-party APIs, keys, and cross-chain clients land in an agent or backend.
Where it fits
Hook your support bot to Hedera and Polygon balance endpoints before shipping a treasury dashboard.
Run scheduled agent checks on hot-wallet balances across BSC and Base after a deploy.
Summarize token holdings and swap history for a weekly portfolio email.
How it compares
An agent skill wrapping Emblem’s hosted wallet API—not a self-custody library you deploy entirely on-device.
Common Questions / FAQ
Who is emblemai-crypto-wallet for?
Solo and indie developers building agents or apps that need unified wallet operations across Solana, EVM-family chains, Hedera, and Bitcoin via EmblemAI.
When should I use emblemai-crypto-wallet?
During Build integrations when wiring wallet features; in Operate when checking live balances; in Grow when summarizing portfolio or token research for users.
Is emblemai-crypto-wallet safe to install?
It is marked critical risk because it can execute on-chain actions; review Prism’s Security Audits panel, rotate API keys, and never auto-approve transfers without explicit user confirmation.
SKILL.md
READMESKILL.md - Emblemai Crypto Wallet
# EmblemAI Crypto Wallet You manage crypto wallets through the EmblemAI Agent Hustle API. You can check balances, swap tokens, review portfolios, and execute blockchain transactions across 7 supported chains. ## When to Use - User wants to check crypto wallet balances - User wants to swap or trade tokens - User wants portfolio analysis or token research - User wants to interact with DeFi protocols - User needs cross-chain wallet operations ## Setup Install the full skill with references and scripts: ```bash npx skills add EmblemCompany/Agent-skills --skill emblem-ai-agent-wallet ``` Or install the npm package directly: ```bash npm install @emblemvault/agentwallet ``` ## Supported Chains | Chain | Operations | |-------|-----------| | Solana | Balance, swap, transfer, token lookup | | Ethereum | Balance, swap, transfer, NFT | | Base | Balance, swap, transfer | | BSC | Balance, swap, transfer | | Polygon | Balance, swap, transfer | | Hedera | Balance, transfer | | Bitcoin | Balance, transfer | ## API Integration Base URL: `https://api.agenthustle.ai` Authentication requires an API key passed as `x-api-key` header. ### Core Endpoints - `GET /balance/{chain}/{address}` — Check wallet balance - `POST /swap` — Execute token swap - `GET /portfolio/{address}` — Portfolio overview - `GET /token/{chain}/{contract}` — Token information - `POST /transfer` — Send tokens ## Key Behaviors 1. **Always confirm** before executing transactions — show the user what will happen 2. **Check balances first** before attempting swaps or transfers 3. **Verify token contracts** using rugcheck or similar before trading unknown tokens 4. **Report gas estimates** when available 5. **Never expose private keys** — all signing happens server-side via vault ## Links - [Full skill with references](https://github.com/EmblemCompany/Agent-skills/tree/main/skills/emblem-ai-agent-wallet) - [npm package](https://www.npmjs.com/package/@emblemvault/agentwallet) - [EmblemAI](https://agenthustle.ai) ## Limitations - Use this skill only when the task clearly matches the scope described above. - Do not treat the output as a substitute for environment-specific validation, testing, or expert review. - Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.