Agentic Wallet

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#

FeatureDescription
Wallet Login AuthenticationEmail OTP or API Key authentication, with verification code validation, status queries, and logout
Wallet ManagementCreate up to 50 sub-wallets, with default wallet configuration
Portfolio QueryMulti-chain balance queries, total asset valuation, single token balance, supporting 17 chains
Security DetectionToken honeypot detection, DApp phishing scanning, transaction risk interception, approval management
TransferSend tokens to specified addresses, batch transfers supported, automatic security detection
Transaction HistoryTransaction 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.

Shell
Log in to my wallet with email
# Calls wallet-login → wallet-verify
Shell
Create a wallet with API Key
# Calls wallet-login (apikey mode)
Shell
Am I logged in?
# Calls wallet-status
Shell
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.

Shell
Check wallet status
# Calls wallet-status
Shell
Show all wallets
# Calls wallet-balance --all
Shell
Create a new sub-wallet for me
# Calls wallet-create
Shell
Switch to wallet 2
# Calls wallet-switch
Shell
Show my deposit address
# Calls wallet-balance
Shell
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.

Shell
Check my balance
# Calls wallet-balance
Shell
How much OKB do I have?
# Calls wallet-balance --token-address
Shell
Check the assets of this address 0x1234...
# Calls portfolio-all-balances
Shell
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.

Shell
Is this token safe?
# Calls security-token-scan
Shell
Is this website safe?
# Calls security-dapp-scan
Shell
Check my approvals
# Calls security-approvals
Shell
Is this transaction safe?
# Calls security-tx-scan
Shell
Is this signature request safe?
# Calls security-sig-scan

Transfer#

Send tokens to a specified address, with batch consolidation support.

Shell
Send 0.1 ETH to 0x1234...
# Calls wallet-send
Shell
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.

Shell
Show me my recent transactions
# Calls wallet-history
Shell
Show transactions on Arbitrum
# Calls wallet-history --chain
Shell
Show USDC transfer history
# Calls wallet-history
Shell
Show only incoming transfers
# Calls wallet-history
Shell
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.

Shell
Check my holdings and sell the ones that dropped
# Check holdings → Analyze → Trade
Shell
Find a promising meme coin on Solana and buy some
# Search tokens → Check security → Buy
Shell
Execute this transaction safely
# Check Gas → Simulate → Security scan → Execute → Track
Shell
Transfer 10 USDC from my main wallet to wallet 3, then use wallet 3 to buy ETH
# Multi-wallet collaboration
Shell
Run a comprehensive security check and summarize the report
# Full security audit workflow
Shell
I want to trade on uniswap.org, is it safe?
# DApp security + interaction