
Emblemai Crypto Wallet
- 1 installs
- 44k repo stars
- Updated July 27, 2026
- sickn33/antigravity-awesome-skills
EmblemAI Crypto Wallet is an agent skill that connects agents to EmblemAI’s Hustle API for multi-chain wallet balance, swap, transfer, and portfolio workflows
About
EmblemAI Crypto Wallet is an integration skill that teaches your coding agent to manage wallets through the EmblemAI Agent Hustle API instead of juggling separate SDKs for every chain. developers shipping crypto dashboards, trading assistants, or treasury bots can standardize on one base URL and API-key header while still reaching Solana, Ethereum, Base, BSC, Polygon, Hedera, and Bitcoin with chain-appropriate operations. The documented surface includes balances, swaps, transfers, token lookup on Solana, and NFT reads on Ethereum, which maps cleanly to prototype-to-production agent features. Prism flags this package at critical risk because it moves real funds when misconfigured; treat keys, transaction previews, and user confirmation as non-negotiable guardrails. Install via the EmblemCompany skills bundle or the agentwallet npm package, then scope each invoke to explicit user intent for checks versus execution.
- 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
Emblemai Crypto Wallet by the numbers
- 1 all-time installs (skills.sh)
- Ranked #430 of 483 Web3 & Blockchain skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill emblemai-crypto-walletAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 44k |
| Security audit | 0 / 3 scanners passed |
| Last updated | July 27, 2026 |
| Repository | sickn33/antigravity-awesome-skills ↗ |
What it does
Wire an AI agent to EmblemAI Agent Hustle for multi-chain balances, swaps, transfers, and portfolio reads without hand-rolling seven chain SDKs.
Who is it for?
Best when you're prototyping AI wallet copilots, treasury monitors, or cross-chain DeFi assistants on EmblemAI’s stack.
Skip if: Skip if you're 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 you get
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
By the numbers
- Supports 7 blockchains: Solana, Ethereum, Base, BSC, Polygon, Hedera, Bitcoin
Files
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-walletOr install the npm package directly:
npm install @emblemvault/agentwalletSupported 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 balancePOST /swap— Execute token swapGET /portfolio/{address}— Portfolio overviewGET /token/{chain}/{contract}— Token informationPOST /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
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.
Related skills
How it compares
An agent skill wrapping Emblem’s hosted wallet API—not a self-custody library you deploy entirely on-device.
FAQ
Who is emblemai-crypto-wallet for?
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.