Wallet Auth Setup
Save API key (non-interactive)
nansen login --api-key < key
Or via env var:
NANSEN_API_KEY
< key
nansen login
Verify
nansen research profiler labels
--address
0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045
--chain
ethereum
Wallet Creation (Two-Step Agent Flow)
Wallet creation requires a password from the
human user
. The agent must NOT generate or store the password itself.
Step 1 (Agent → Human):
Ask the user to provide a wallet password (minimum 12 characters).
Step 2 (Agent executes):
Run the create command with the password the user gave you.
NANSEN_WALLET_PASSWORD
=
"
Ask the user for a password first, then:
NANSEN_WALLET_PASSWORD
"
Or with a custom name:
NANSEN_WALLET_PASSWORD
"
nansen wallet default < name
Send
Send native token (SOL, ETH) — password auto-resolved from keychain
nansen wallet send --to < addr
--amount 1.5 --chain solana
Send entire balance
nansen wallet send --to < addr
--chain evm --max
Dry run (preview, no broadcast)
nansen wallet send --to < addr
--amount 1.0 --chain evm --dry-run Export & Delete
Password auto-resolved from keychain
nansen wallet export < name
nansen wallet delete < name
Forget Password
Remove saved password from all stores (keychain + .credentials file)
nansen wallet forget-password
Migrate to Secure Storage
nansen wallet secure
For detailed migration steps (from
~/.nansen/.env
,
.credentials
, or env-var-only setups), see the
nansen-wallet-migration
skill.
Flags
Flag
Purpose
--to
Recipient address
--amount
Amount to send
--chain
evm
or
solana
--max
Send entire balance
--dry-run
Preview without broadcasting
--human
Enable interactive prompts (human terminal use only — agents must NOT use this)
--unsafe-no-password
Skip encryption (keys stored in plaintext — NOT recommended)
Environment Variables
Var
Purpose
NANSEN_WALLET_PASSWORD
Wallet encryption password — only needed for initial
wallet create
. After that, the OS keychain handles it.
NANSEN_API_KEY
API key (also set via
nansen login --api-key