Emblem Vault
TypeScript SDK for Emblem Vault cross-chain wallet and trading infrastructure.
Install / Use
npx skills add asda23acs/Emblem-VaultInstalls into whichever agent you are using.
README
Emblem Vault SDK
TypeScript SDK for Emblem Vault cross-chain wallet and trading infrastructure.
Wraps the Emblem Vault API for wallet management, token swaps, cross-chain bridges, and market data across 7 blockchains.
Install
npm install emblem-vault-sdk
Usage
import { EmblemClient, Chain } from 'emblem-vault-sdk';
const client = new EmblemClient({
apiKey: process.env.EMBLEM_API_KEY,
walletPassword: process.env.EMBLEM_WALLET_PASSWORD,
});
// Get wallet balances
const balances = await client.getBalances(Chain.SOLANA);
// Swap tokens
const result = await client.swap({
chain: Chain.SOLANA,
fromToken: 'SOL',
toToken: 'USDC',
amount: 1.0,
slippageBps: 100,
});
// Bridge tokens
const bridge = await client.bridge({
fromChain: Chain.SOLANA,
toChain: Chain.ETHEREUM,
token: 'USDC',
amount: 100,
});
// Get token price
const price = await client.getPrice('SOL', Chain.SOLANA);
Supported Chains
Solana, Ethereum, Base, BSC, Polygon, Hedera, Bitcoin.
Features
- Multi-chain wallet management
- Token swaps via Jupiter, Uniswap, PancakeSwap
- Cross-chain bridging
- Market data and token lookup
- Limit orders and conditional trades
- Balance monitoring and alerts
Links
- Platform: emblemvault.ai
- Docs: docs.emblem.wiki
- X: @EmblemVault
License
MIT
Related Skills
Writing Hookify Rules
140.7kThis skill should be used when the user asks to "create a hookify rule", "write a hook rule", "configure hookify", "add a hookify rule", or needs guidance on hookify rule syntax and patterns.
agent-tui
106.4kMain Agents: Do NOT use this skill directly. If you need to test the TUI, invoke the `tui_tester` subagent. Drive terminal UI (TUI) applications programmatically for testing, automation, and inspection
review-duplication
106.4kUse this skill during code reviews to proactively investigate the codebase for duplicated functionality, reinvented wheels, or failure to reuse existing project best practices and shared utilities.
ai-agent-specialist
40.5kCursor rules for TypeScript, React, Node.js, clean architecture, testing, and WHY-oriented engineering guidance.
