Skills#
Overview#
Agentic Wallet provides the following features, covering the full workflow from login authentication to onchain transaction execution. Tell the Agent what you want to do in natural language, and it will automatically select and execute the corresponding feature.
Features at a Glance#
| Feature | Description |
|---|---|
| Wallet Login Authentication | Email OTP or API Key authentication, with verification code validation, status queries, and logout |
| Wallet Management | Create up to 50 sub-wallets, with default wallet configuration |
| Portfolio Query | Multi-chain balance queries, total asset valuation, single token balance, supporting 17 chains |
| Security Detection | Token honeypot detection, DApp phishing scanning, transaction risk interception, approval management |
| Transfer | Send tokens to specified addresses, batch transfers supported, automatic security detection |
| Transaction History | Transaction record queries, filterable by chain / token / direction |
Wallet Login Authentication#
Log in to your wallet via email OTP or API Key. This is a prerequisite for all wallet operations.
Log in to my wallet with email
# Calls wallet-login → wallet-verify
Create a wallet with API Key
# Calls wallet-login (apikey mode)
Am I logged in?
# Calls wallet-status
Log out of my wallet
# Calls wallet-logout
Wallet Management#
Create, derive, and switch wallets. Each login method supports up to 50 sub-wallets, with each sub-wallet generating both EVM and Solana addresses simultaneously.
Check wallet status
# Calls wallet-status
Show all wallets
# Calls wallet-balance --all
Create a new sub-wallet for me
# Calls wallet-create
Switch to wallet 2
# Calls wallet-switch
Show my deposit address
# Calls wallet-balance
Operate on Solana
# Calls wallet-chains
Portfolio Query#
Query balances and assets. Query your own wallet after logging in, or query any address without logging in.
Check my balance
# Calls wallet-balance
How much OKB do I have?
# Calls wallet-balance --token-address
Check the assets of this address 0x1234...
# Calls portfolio-all-balances
How much are the total assets of this address worth?
# Calls portfolio-total-value
Security Detection#
Comprehensive security protection to ensure every operation is safe.
Is this token safe?
# Calls security-token-scan
Is this website safe?
# Calls security-dapp-scan
Check my approvals
# Calls security-approvals
Is this transaction safe?
# Calls security-tx-scan
Is this signature request safe?
# Calls security-sig-scan
Transfer#
Send tokens to a specified address, with batch consolidation support.
Send 0.1 ETH to 0x1234...
# Calls wallet-send
Consolidate all wallets' ETH to 0x1234...
# Calls wallet-balance --all → wallet-send for each
Transaction History#
View transaction records, filterable by chain, token, and direction. Shows the most recent 20 entries by default, with pagination support.
Show me my recent transactions
# Calls wallet-history
Show transactions on Arbitrum
# Calls wallet-history --chain
Show USDC transfer history
# Calls wallet-history
Show only incoming transfers
# Calls wallet-history
Look up this transaction 0xabc123...
# Calls wallet-history --tx-hash
Cross-Feature Composite Workflows#
A single instruction can automatically chain multiple features together. The Agent plans and executes in order — no need to break down steps manually.
Check my holdings and sell the ones that dropped
# Check holdings → Analyze → Trade
Find a promising meme coin on Solana and buy some
# Search tokens → Check security → Buy
Execute this transaction safely
# Check Gas → Simulate → Security scan → Execute → Track
Transfer 10 USDC from my main wallet to wallet 3, then use wallet 3 to buy ETH
# Multi-wallet collaboration
Run a comprehensive security check and summarize the report
# Full security audit workflow
I want to trade on uniswap.org, is it safe?
# DApp security + interaction