Overview
- Skill Key
- hurcannansen/nansen-wallet
- Author
- hurcannansen
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/hurcannansen/nansen-wallet
- Latest Commit SHA
- 9b94f6f25525eff68bf204ee6c7cea95fde8a3c6
Wallet management — create, list, show, export, send, delete. Use when creating wallets, checking balances, or sending tokens.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 nansen-wallet 技能。 若已安装,则直接安装 nansen-wallet 技能。
# Wallet ## Auth Setup ```bash # API key (persistent — recommended) nansen login # Or non-interactive: NANSEN_API_KEY=<key> nansen login # Verify nansen research profiler labels --address 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 --chain ethereum ``` ## Password Policy (Agents) > **CRITICAL: Never hold a wallet password only in memory.** Wallets are encrypted with AES-256-GCM. A lost password means permanently locked funds — there is no recovery mechanism. Passwords must be persisted to `~/.nansen/.env` so they survive session restarts. - Never echo or display the password in conversation history - Never hold a password only in session memory — always persist to `~/.nansen/.env` first ### Setup flow (before first wallet operation) ```bash # 1. Ensure ~/.nansen exists mkdir -p ~/.nansen # 2. Check if password is already configured (env var OR file) source ~/.nansen/.env 2>/dev/null if [ -z "$NANSEN_WALLET_PASSWORD" ] && ! grep -q 'NANSEN_WALLET_PASSWORD' ~/.nansen/.env 2>/dev/null; then # 3. Generate a strong password and persist it NANSEN_WALLET_PASSWORD=$(openssl rand -base64 24) echo "export NANSEN_WALLET_PASSWORD=\"$NANSEN_WALLET_PASSWORD\"" >> ~/.nansen/.env chmod 600 ~/.nansen/.env fi ``` Key rules: - **Generate + persist is fine** — the password lives in `~/.nansen/.env`, not in agent memory - If `~/.nansen/.env` already has a password, **always use the existing one** — never overwrite - If the file already exists but has no password, **append** (don't overwrite other vars) ### For all wallet commands Always source the env file before running wallet operations: ```bash source ~/.nansen/.env && nansen wallet <command> ``` ## Create ```bash # Source password from .env (auto-generated if needed), then create source ~/.nansen/.env && nansen wallet create ``` ## List & Show ```bash nansen wallet list nansen wallet show <name> nansen wallet default <name> ``` ## Send ```bash # Send native token (SOL, ETH) nansen wallet send --to <addr> --...
human-pages-ai
Search and hire real humans for tasks — photography, delivery, research, and more
zseven-w
Reusable skill templates for OpenClaw AI agents. Templates for API integration, data processing, web scraping, CLI tools, and file processing.
capt-marbles
Attio CRM integration for managing companies, people, deals, notes, tasks, and custom objects. Use when working with Attio CRM data, searching contacts, managing sales pipelines, adding notes to records, creating tasks, or syncing prospect information.
capt-marbles
Web scraping and crawling with Firecrawl API. Fetch webpage content as markdown, take screenshots, extract structured data, search the web, and crawl documentation sites. Use when the user needs to scrape a URL, get current web info, capture a screenshot, extract specific data from pages, or crawl docs for a framework/library.
caqlayan
Tweet Processor Skill
carlosarturoleon
Connect to Windsor.ai MCP for natural language access to 325+ data sources including Facebook Ads, GA4, HubSpot, Shopify, and more.