Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Evalanche

Multi-EVM agent wallet SDK with onchain identity (ERC-8004), payment rails (x402), cross-chain liquidity (Li.Fi bridging + DEX aggregation + DeFi Composer),...

MIT-0 · Free to use, modify, and redistribute. No attribution required.
1 · 378 · 0 current installs · 0 all-time installs
byGiacomo Barbieri@iJaack
MIT-0
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name/description, required binary (node), and runtime instructions (npm package, CLI/server, boot() API) are coherent for a wallet/DeFi SDK that interacts with many EVM chains and external services.
Instruction Scope
SKILL.md instructs installing the npm package, running boot() to auto‑generate and store keys, and optionally launching an MCP HTTP server on localhost:3402. Instructions reference writing keystore files (~/.evalanche/keys/agent.json), deriving encryption entropy, and using platform secrets. There are no explicit exfiltration steps, but the agent will be able to sign transactions and make broad network calls (RPCs, Li.Fi, CoinGecko, dYdX, Polymarket, etc.), which is intrinsic to its purpose but high‑impact if the code is untrusted.
!
Install Mechanism
Install spec is a global npm package (evalanche → evalanche-mcp). npm installs execute arbitrary JS; this skill is instruction‑only (no code bundled in the skill archive) so installing will fetch remote code you cannot audit from the skill files. This is a moderate‑to‑high risk for a component that manages private keys.
Credentials
No required env vars declared in registry, but SKILL.md documents optional sensitive envs (AGENT_PRIVATE_KEY, AGENT_MNEMONIC) and a keystore dir config path (~/.evalanche/keys/agent.json). These are relevant to a wallet SDK and therefore proportionate — but providing them gives full signing power, so treat them like high‑value secrets.
Persistence & Privilege
always:false (good). The skill will create local keystore files by default and can run a background MCP server bound to localhost; SKILL.md warns not to expose HTTP mode publicly. No claim to modify other skills or system-wide configs, but the agent's autonomous signing/network ability is high‑privilege for funds/security.
What to consider before installing
This skill is coherent with its stated purpose but handles extremely sensitive operations (key generation, signing, cross‑chain transfers). Before installing: (1) Verify and review the npm package source (GitHub repo, commit history, package contents) — do not install blind from the registry; (2) Prefer using your platform's secret store rather than setting AGENT_PRIVATE_KEY in plain env vars; (3) Run first in an isolated environment or VM and on testnets with small funds; (4) Inspect what files are written to ~/.evalanche/keys and back them up or sandbox them; (5) Avoid enabling HTTP mode on publicly reachable interfaces; (6) Consider using a hardware wallet or limiting the agent's signing scope if possible; (7) If you cannot audit the package, treat this installation as high risk.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.5.2
Download zip
latestvk9708jhar19kc2029g8xvcgv41838qjv

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

⛓️ Clawdis
Binsnode
Environment variables
AGENT_PRIVATE_KEYoptionalHex-encoded private key (EVM). Optional if using boot() or AGENT_MNEMONIC.
AGENT_MNEMONICoptionalBIP-39 mnemonic phrase (required for Avalanche multi-VM X/P-Chain). Optional if using boot() or AGENT_PRIVATE_KEY.
AGENT_IDoptionalERC-8004 agent token ID for identity resolution (Avalanche C-Chain only).
AGENT_KEYSTORE_DIRoptionalDirectory for encrypted keystore in boot() mode. Default: ~/.evalanche/keys
AVALANCHE_NETWORKoptionalEVM chain alias: 'ethereum', 'base', 'arbitrum', 'optimism', 'polygon', 'bsc', 'avalanche', 'fuji', etc. Default: avalanche.
EVM_CHAINoptionalAlias for AVALANCHE_NETWORK. EVM chain to connect to.

Install

Install evalanche (npm)
Bins: evalanche-mcp
npm i -g evalanche

SKILL.md

Evalanche — Multi-EVM Agent Wallet

Headless wallet SDK with ERC-8004 identity, x402 payments, Li.Fi cross-chain liquidity (bridging + DEX aggregation + DeFi Composer), Gas.zip gas funding, dYdX v4 perpetuals, CoinGecko market intelligence, Polymarket market discovery, contract interaction helpers (approve-and-call + UUPS upgrade), and DeFi operations (liquid staking + EIP-4626 vaults). Works on 21+ EVM chains. 91 MCP tools. Works as CLI or MCP server.

Source: https://github.com/iJaack/evalanche License: MIT

Supported Chains

Ethereum, Base, Arbitrum, Optimism, Polygon, BSC, Avalanche, Fantom, Gnosis, zkSync Era, Linea, Scroll, Blast, Mantle, Celo, Moonbeam, Cronos, Berachain, + testnets (Fuji, Sepolia, Base Sepolia).

Routescan RPCs preferred where available, with public fallback RPCs.

Security Model

Key Storage & Encryption

Evalanche.boot() manages keys autonomously with encrypted-at-rest storage:

  1. First run: Generates a BIP-39 mnemonic via ethers.HDNodeWallet.createRandom()
  2. Encryption: AES-128-CTR + scrypt KDF (geth-compatible keystore format)
  3. Password derivation: 32-byte random entropy file via crypto.randomBytes(32)
  4. File permissions: chmod 0o600 (owner read/write only)
  5. Storage location: ~/.evalanche/keys/ by default

MCP Server Access Controls

  • Stdio mode (default): stdin/stdout only. No network exposure.
  • HTTP mode (--http): localhost:3402. Do not expose publicly without auth.

OpenClaw External Secrets (Preferred when available)

Priority: OpenClaw secrets → raw env vars → encrypted keystore.

Setup

1. Install

npm install -g evalanche

2. Boot on any chain

import { Evalanche } from 'evalanche';

// Base
const { agent } = await Evalanche.boot({ network: 'base' });

// Ethereum
const { agent: eth } = await Evalanche.boot({ network: 'ethereum' });

// Arbitrum
const { agent: arb } = await Avalanche.boot({ network: 'arbitrum' });

// Avalanche (with identity)
const { agent: avax } = await Evalanche.boot({
  network: 'avalanche',
  identity: { agentId: '1599' },
});

3. Run as MCP server

AVALANCHE_NETWORK=base evalanche-mcp

Available Tools (MCP)

Wallet

ToolDescription
get_addressGet agent wallet address
get_balanceGet native token balance
sign_messageSign arbitrary message
send_avaxSend native tokens
call_contractCall a contract method

Identity (ERC-8004)

ToolDescription
resolve_identityResolve agent identity + reputation
resolve_agentLook up any agent by ID

Payments (x402)

ToolDescription
pay_and_fetchx402 payment-gated HTTP request

Reputation

ToolDescription
submit_feedbackSubmit on-chain reputation feedback

Network & Chains

ToolDescription
get_networkGet current network config
get_supported_chainsList all 21+ supported chains
get_chain_infoGet details for a specific chain
switch_networkSwitch to different EVM chain

Arena DEX (Avalanche)

ToolDescription
arena_buyBuy Arena community tokens via bonding curve (spends $ARENA)
arena_sellSell Arena community tokens for $ARENA
arena_token_infoGet token info (fees, curve params) by address
arena_buy_costCalculate $ARENA cost for a given buy amount (read-only)

Contract Interaction Helpers (v0.9.0)

ToolDescription
approve_and_callApprove ERC-20 spending, then execute a follow-up contract call
upgrade_proxyUpgrade a UUPS proxy via upgradeToAndCall

Bridging & Cross-Chain

ToolDescription
get_bridge_quoteGet cross-chain bridge quote (Li.Fi)
get_bridge_routesGet all bridge route options
bridge_tokensBridge tokens between chains
check_bridge_statusPoll cross-chain transfer status (PENDING/DONE/FAILED)
fund_destination_gasFund gas via Gas.zip

Li.Fi Liquidity SDK (v0.8.0)

ToolDescription
lifi_swap_quoteGet same-chain DEX swap quote (31+ aggregators)
lifi_swapExecute same-chain DEX swap
lifi_get_tokensList tokens with prices on specified chains
lifi_get_tokenGet specific token info (symbol, decimals, priceUSD)
lifi_get_chainsList all Li.Fi supported chains
lifi_get_toolsList available bridges and DEX aggregators
lifi_gas_pricesGet gas prices across all chains
lifi_gas_suggestionGet gas suggestion for a specific chain
lifi_get_connectionsDiscover possible transfer paths between chains
lifi_composeCross-chain DeFi Composer (bridge + deposit into Morpho/Aave/Pendle/Lido/etc in one tx)

Platform CLI (requires platform-cli binary — go install github.com/ava-labs/platform-cli@latest)

ToolDescription
platform_cli_availableCheck if platform-cli is installed
subnet_createCreate a new Avalanche subnet
subnet_convert_l1Convert subnet to L1 blockchain
subnet_transfer_ownershipTransfer subnet ownership
add_validatorAdd validator with BLS keys to Primary Network
l1_register_validatorRegister a new L1 validator
l1_add_balanceAdd balance to L1 validator
l1_disable_validatorDisable an L1 validator
node_infoGet NodeID + BLS keys from running node
pchain_sendSend AVAX on P-Chain (P→P)

dYdX v4 Perpetuals (v0.7.0 — requires mnemonic)

ToolDescription
dydx_get_marketsList all dYdX perpetual markets with prices/leverage
dydx_has_marketCheck if a specific perp market exists (e.g. AKT-USD)
dydx_get_balanceGet USDC equity on dYdX subaccount
dydx_get_positionsGet all open perpetual positions
dydx_place_market_orderPlace a market order (BUY/SELL)
dydx_place_limit_orderPlace a limit order
dydx_cancel_orderCancel an open order
dydx_close_positionClose position with reduce-only market order
dydx_get_ordersList orders (optionally filter by status)
find_perp_marketSearch for a market across all connected perp venues

Programmatic Usage

Check balance on Base

node -e "
const { Evalanche } = require('evalanche');
const agent = new Evalanche({ privateKey: process.env.AGENT_PRIVATE_KEY, network: 'base' });
agent.provider.getBalance(agent.address).then(b => {
  const { formatEther } = require('ethers');
  console.log(formatEther(b) + ' ETH');
});
"

Bridge tokens (Ethereum → Arbitrum)

node -e "
const { Evalanche } = require('evalanche');
const agent = new Evalanche({ privateKey: process.env.AGENT_PRIVATE_KEY, network: 'ethereum' });
agent.bridgeTokens({
  fromChainId: 1, toChainId: 42161,
  fromToken: '0x0000000000000000000000000000000000000000',
  toToken: '0x0000000000000000000000000000000000000000',
  fromAmount: '0.1', fromAddress: agent.address,
}).then(r => console.log('tx:', r.txHash));
"

Same-chain DEX swap (ETH → USDC on Base)

node -e "
const { Evalanche } = require('evalanche');
const agent = new Evalanche({ privateKey: process.env.AGENT_PRIVATE_KEY, network: 'base' });
agent.swap({
  fromChainId: 8453, toChainId: 8453,
  fromToken: '0x0000000000000000000000000000000000000000',
  toToken: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913',
  fromAmount: '0.05', fromAddress: agent.address,
}).then(r => console.log('swap tx:', r.txHash));
"

Track bridge transfer status

node -e "
const { Evalanche } = require('evalanche');
const agent = new Evalanche({ privateKey: process.env.AGENT_PRIVATE_KEY, network: 'ethereum' });
agent.checkBridgeStatus({ txHash: '0x...', fromChainId: 1, toChainId: 8453 })
  .then(s => console.log(s.status, s.substatus));
"

Token discovery

node -e "
const { Evalanche } = require('evalanche');
const agent = new Evalanche({ privateKey: process.env.AGENT_PRIVATE_KEY, network: 'base' });
agent.getToken(8453, '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913')
  .then(t => console.log(t.symbol, t.priceUSD));
"

Cross-chain transfer on Avalanche (requires mnemonic)

node -e "
const { Evalanche } = require('evalanche');
const agent = new Evalanche({ mnemonic: process.env.AGENT_MNEMONIC, multiVM: true });
agent.transfer({ from: 'C', to: 'P', amount: '25' })
  .then(r => console.log('export:', r.exportTxId, 'import:', r.importTxId));
"

Key Concepts

ERC-8004 Agent Identity (Avalanche only)

  • On-chain agent identity registry on Avalanche C-Chain
  • Agent ID → tokenURI, owner, reputation score (0-100), trust level
  • Trust levels: high (≥75), medium (≥40), low (<40)

Li.Fi Cross-Chain Liquidity (v0.8.0)

  • Bridging: Aggregated routes across 27+ bridges (Across, Stargate, Hop, etc.)
  • DEX Aggregation: Same-chain swaps via 31+ DEX aggregators (1inch, Paraswap, Jupiter, etc.)
  • DeFi Composer: One-tx cross-chain DeFi (bridge + deposit into Morpho, Aave V3, Euler, Pendle, Lido wstETH, EtherFi, etc.)
  • Status Tracking: Poll transfer status (PENDING → DONE/FAILED with substatus)
  • Token Discovery: List/lookup tokens with prices across all chains
  • Gas Pricing: Gas prices and suggestions per chain
  • Uses Li.Fi REST API (no SDK dependency needed)

Gas.zip

  • Cheap cross-chain gas funding
  • Send gas to any destination chain via deposit addresses

x402 Payment Protocol

  • HTTP 402 Payment Required → parse requirements → sign payment → retry
  • maxPayment prevents overspending

Multi-VM (Avalanche X-Chain, P-Chain)

  • Requires mnemonic and network: 'avalanche' or 'fuji'
  • C-Chain: EVM (ethers v6), X-Chain: AVM (UTXO), P-Chain: PVM (staking)

Contracts

ContractAddressChain
Identity Registry0x8004A169FB4a3325136EB29fA0ceB6D2e539a432AVAX C-Chain (43114)
Reputation Registry0x8004BAa17C55a88189AE136b182e5fdA19dE9b63AVAX C-Chain (43114)
sAVAX (Benqi)0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bEAVAX C-Chain (43114)
yoUSD Vault0x0000000f2eb9f69274678c76222b35eec7588a65Base (8453)

DeFi — Liquid Staking & EIP-4626 Vaults (v1.2.0)

const { agent } = await Evalanche.boot({ network: 'avalanche' });
const { staking, vaults } = agent.defi();

// sAVAX unstake (instant if pool available, delayed otherwise)
const q = await staking.sAvaxUnstakeQuote('5');
// { avaxOut, isInstant, poolBalance, minOutput }
await staking.sAvaxUnstakeInstant('5');   // redeemInstant on Benqi
await staking.sAvaxUnstakeDelayed('5');   // requestRedeem (no pool needed)

// Stake AVAX → sAVAX
await staking.sAvaxStake('10', 50);  // 50bps slippage

// EIP-4626 vault deposit (any chain)
const YOUSD = '0x0000000f2eb9f69274678c76222b35eec7588a65';
const baseAgent = new Evalanche({ privateKey: '0x...', network: 'base' });
const { vaults: baseVaults } = baseAgent.defi();
await baseVaults.deposit(YOUSD, '1000', 'base');   // approve + deposit
await baseVaults.withdraw(YOUSD, '998', 'base');    // redeem shares

MCP tools (defi): savax_stake_quote, savax_stake, savax_unstake_quote, savax_unstake, vault_info, vault_deposit_quote, vault_deposit, vault_withdraw_quote, vault_withdraw

Files

1 total
Select a file
Select a file to preview.

Comments

Loading comments…