EmblemAI Crypto Wallet
Selective Reading Rule
Start with:
references/senior-master-standard.md
references/usage-routing.md
references/quality-checklist.md
Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.
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.
1---2name: emblemai-crypto-wallet3description: ALWAYS use this when the request matches Emblemai Crypto Wallet: Crypto wallet management across 7 blockchains via EmblemAI Agent Hustle API.4---56# EmblemAI Crypto Wallet78## Selective Reading Rule910Start with:1112- `references/senior-master-standard.md`13- `references/usage-routing.md`14- `references/quality-checklist.md`1516Then load only the inherited docs, scripts, assets, or examples that match the user's actual task.1718You 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.1920## When to Use21- User wants to check crypto wallet balances22- User wants to swap or trade tokens23- User wants portfolio analysis or token research24- User wants to interact with DeFi protocols25- User needs cross-chain wallet operations2627## Setup2829Install the full skill with references and scripts:3031```bash32npx skills add EmblemCompany/Agent-skills --skill emblem-ai-agent-wallet33```3435Or install the npm package directly:3637```bash38npm install @emblemvault/agentwallet39```4041## Supported Chains4243| Chain | Operations |44|-------|-----------|45| Solana | Balance, swap, transfer, token lookup |46| Ethereum | Balance, swap, transfer, NFT |47| Base | Balance, swap, transfer |48| BSC | Balance, swap, transfer |49| Polygon | Balance, swap, transfer |50| Hedera | Balance, transfer |51| Bitcoin | Balance, transfer |5253## API Integration5455Base URL: `https://api.agenthustle.ai`5657Authentication requires an API key passed as `x-api-key` header.5859### Core Endpoints6061- `GET /balance/{chain}/{address}` — Check wallet balance62- `POST /swap` — Execute token swap63- `GET /portfolio/{address}` — Portfolio overview64- `GET /token/{chain}/{contract}` — Token information65- `POST /transfer` — Send tokens6667## Key Behaviors68691. **Always confirm** before executing transactions — show the user what will happen702. **Check balances first** before attempting swaps or transfers713. **Verify token contracts** using rugcheck or similar before trading unknown tokens724. **Report gas estimates** when available735. **Never expose private keys** — all signing happens server-side via vault7475## Links7677- [Full skill with references](https://github.com/EmblemCompany/Agent-skills/tree/main/skills/emblem-ai-agent-wallet)78- [npm package](https://www.npmjs.com/package/@emblemvault/agentwallet)79- [EmblemAI](https://agenthustle.ai)8081## Limitations82- Use this skill only when the task clearly matches the scope described above.83- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.84- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.