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:
npx skills add EmblemCompany/Agent-skills --skill emblem-ai-agent-wallet
Or install the npm package directly:
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
- Always confirm before executing transactions — show the user what will happen
- Check balances first before attempting swaps or transfers
- Verify token contracts using rugcheck or similar before trading unknown tokens
- Report gas estimates when available
- Never expose private keys — all signing happens server-side via vault
Links
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.
Source: sickn33/agentic-awesome-skills → skills/emblemai-crypto-wallet/SKILL.md
Also appears in: sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills/skills/emblemai-crypto-wallet/SKILL.md, sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills-claude/skills/emblemai-crypto-wallet/SKILL.md
1---2name: emblemai-crypto-wallet3description: Crypto wallet management across 7 blockchains via EmblemAI Agent Hustle API. Balance checks, token swaps, portfolio analysis, and transaction execution for Solana, Ethereum, Base, BSC, Polygon, Hedera, and Bitcoin.4---567# EmblemAI Crypto Wallet89You 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.1011## When to Use12- User wants to check crypto wallet balances13- User wants to swap or trade tokens14- User wants portfolio analysis or token research15- User wants to interact with DeFi protocols16- User needs cross-chain wallet operations1718## Setup1920Install the full skill with references and scripts:2122```bash23npx skills add EmblemCompany/Agent-skills --skill emblem-ai-agent-wallet24```2526Or install the npm package directly:2728```bash29npm install @emblemvault/agentwallet30```3132## Supported Chains3334| Chain | Operations |35|-------|-----------|36| Solana | Balance, swap, transfer, token lookup |37| Ethereum | Balance, swap, transfer, NFT |38| Base | Balance, swap, transfer |39| BSC | Balance, swap, transfer |40| Polygon | Balance, swap, transfer |41| Hedera | Balance, transfer |42| Bitcoin | Balance, transfer |4344## API Integration4546Base URL: `https://api.agenthustle.ai`4748Authentication requires an API key passed as `x-api-key` header.4950### Core Endpoints5152- `GET /balance/{chain}/{address}` — Check wallet balance53- `POST /swap` — Execute token swap54- `GET /portfolio/{address}` — Portfolio overview55- `GET /token/{chain}/{contract}` — Token information56- `POST /transfer` — Send tokens5758## Key Behaviors59601. **Always confirm** before executing transactions — show the user what will happen612. **Check balances first** before attempting swaps or transfers623. **Verify token contracts** using rugcheck or similar before trading unknown tokens634. **Report gas estimates** when available645. **Never expose private keys** — all signing happens server-side via vault6566## Links6768- [Full skill with references](https://github.com/EmblemCompany/Agent-skills/tree/main/skills/emblem-ai-agent-wallet)69- [npm package](https://www.npmjs.com/package/@emblemvault/agentwallet)70- [EmblemAI](https://agenthustle.ai)7172## Limitations73- Use this skill only when the task clearly matches the scope described above.74- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.75- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.7677---7879**Source:** [`sickn33/agentic-awesome-skills`](https://github.com/sickn33/agentic-awesome-skills) → `skills/emblemai-crypto-wallet/SKILL.md`8081**Also appears in:** `sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills/skills/emblemai-crypto-wallet/SKILL.md`, `sickn33/agentic-awesome-skills/plugins/agentic-awesome-skills-claude/skills/emblemai-crypto-wallet/SKILL.md`