npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@phantom/phantom-openclaw-plugin

v1.2.7

Published

Phantom Embedded Wallet — sign transactions, transfer tokens, and swap on Solana and Ethereum. Powered by Phantom.

Readme

Phantom OpenClaw Plugin

Direct integration with Phantom wallet for OpenClaw agents. This plugin wraps the Phantom MCP Server to provide seamless wallet operations including address retrieval, message signing, transaction signing, token transfers, token approval checks, transaction simulations, and token swaps.

Overview

The Phantom OpenClaw Plugin provides native integration with Phantom wallet functionality. Instead of being a generic MCP bridge, it directly integrates the Phantom MCP Server tools as OpenClaw tools, providing a seamless experience for AI agents.

Quick Start

Get up and running in under 5 minutes:

Installation Checklist

  • [ ] Step 1: Install the plugin

    openclaw plugins install @phantom/phantom-openclaw-plugin
  • [ ] Step 2: Enable it in ~/.openclaw/openclaw.json

    {
      "plugins": {
        "enabled": true,
        "entries": {
          "phantom-openclaw-plugin": {
            "enabled": true
          }
        }
      }
    }
  • [ ] Step 3: Restart OpenClaw

  • [ ] Step 4: Test with your agent

    Ask: "What are my Phantom wallet addresses?"

See Prerequisites below for detailed setup instructions.

Features

  • Direct Integration: Built on top of @phantom/mcp-server for reliable wallet operations
  • Automatic Authentication: Uses Phantom device-code authentication and persists the session automatically
  • Type-Safe: Full TypeScript support with proper type definitions
  • Simple Setup: Minimal configuration - just enable the plugin and use
  • Simulation-First Flows: Preview transfers and transaction sends before submitting them
  • Token Approval Checks: Check ERC-20 allowances before EVM swaps or contract interactions
  • Perpetuals Trading: Full Hyperliquid perps support — swap and deposit funds, manage positions, and trade perpetuals

Prerequisites

Before using this plugin, install it in OpenClaw and make sure the host can open a browser for the Phantom device-code login flow the first time a wallet action is requested.

Installation

openclaw plugins install @phantom/phantom-openclaw-plugin

Configuration

Configure the plugin in your OpenClaw configuration file (~/.openclaw/openclaw.json):

{
  "plugins": {
    "enabled": true,
    "entries": {
      "phantom-openclaw-plugin": {
        "enabled": true
      }
    }
  }
}

Configuration Options

The OpenClaw plugin uses Phantom's device-code authentication flow.

Supported optional config keys mirror the MCP server environment surface used by the plugin:

  • PHANTOM_AUTH_BASE_URL: Auth service base URL. Default: https://auth.phantom.app
  • PHANTOM_CONNECT_BASE_URL: Connect/device authorization base URL. Default: https://connect.phantom.app
  • PHANTOM_WALLETS_API_BASE_URL: Wallets/KMS API base URL. Default: https://api.phantom.app/v1/wallets
  • PHANTOM_API_BASE_URL: Phantom API base URL for swaps, balances, and related tool calls. Default: https://api.phantom.app
  • PHANTOM_VERSION: Optional version header override
  • PHANTOM_MCP_DEBUG: Enable debug logging (set to "1" or "true")

Available Tools

The plugin exposes the following tools from the Phantom MCP Server:

phantom_logout

Log out by clearing the stored session and credentials from disk. Does not require an active session. The next tool call will require re-authentication.

Parameters: None

Response: { "success": true }

get_connection_status

Lightweight local check of the wallet connection state. No network call — reads session state only. Use this first to confirm the user is authenticated.

Parameters: None

get_wallet_addresses

Retrieve wallet addresses for all supported blockchain chains (Solana, Ethereum, Bitcoin, Sui).

Parameters:

  • derivationIndex (number, optional): Derivation index for the wallet (default: 0)

Example:

{
  "derivationIndex": 0
}

get_token_balances

Get all fungible token balances for the authenticated wallet with live USD prices and 24h price change.

Parameters: None

get_token_price

Fetch the current price of a specific token by its contract or mint address. Pass address='native' for the chain's native token (SOL, ETH, MATIC, etc.).

Parameters:

  • address (string, required): Token contract/mint address, or 'native' for the chain's native token
  • chain (string, required): Chain the token lives on — one of solana, ethereum, base, polygon, arbitrum, bitcoin, sui, monad
  • currency (string, optional): ISO 4217 currency code (default: "USD")

Example (native SOL price):

{
  "address": "native",
  "chain": "solana"
}

Example (USDC on Solana):

{
  "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
  "chain": "solana",
  "currency": "USD"
}

Response: { name, symbol, caip19, price, priceChange24h, currency, lastUpdatedAt?, marketCap }

send_solana_transaction

Sign and broadcast a pre-built Solana transaction. By default this follows a two-step flow: first simulate, then submit only after explicit approval.

Parameters:

  • transaction (string, required): Base64-encoded serialized Solana transaction
  • networkId (string, optional): Solana network (default: "solana:mainnet")
  • walletId (string, optional): Wallet ID (defaults to authenticated wallet)
  • derivationIndex (number, optional): Derivation index (default: 0)
  • confirmed (boolean, optional): Set to true only after the user has reviewed and approved the simulation

Example:

{
  "transaction": "AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAQABAgME..."
}

sign_solana_message

Sign a UTF-8 message with the Solana wallet. Returns a base58-encoded signature.

Parameters:

  • message (string, required): The UTF-8 message to sign
  • networkId (string, required): Solana network (e.g., "solana:mainnet")
  • derivationIndex (number, optional): Derivation index (default: 0)

Example:

{
  "message": "Verify ownership of my wallet",
  "networkId": "solana:mainnet"
}

send_evm_transaction

Sign and broadcast an EVM transaction. By default this follows a two-step flow: first simulate, then submit only after explicit approval. Nonce, gas, and gasPrice are optional — fetched from the network if omitted.

Parameters:

  • chainId (number, required): EVM chain ID (e.g., 1 for Ethereum, 8453 for Base, 137 for Polygon, 42161 for Arbitrum, 143 for Monad)
  • to (string, optional): Recipient address
  • value (string, optional): Amount in wei as hex (e.g., "0x38D7EA4C68000")
  • data (string, optional): Encoded calldata (0x-prefixed hex)
  • gas, gasPrice, maxFeePerGas, maxPriorityFeePerGas, nonce (string, optional): All auto-fetched if omitted
  • derivationIndex (number, optional): Derivation index (default: 0)
  • confirmed (boolean, optional): Set to true only after the user has reviewed and approved the simulation

Example:

{
  "chainId": 1,
  "to": "0x742d35Cc6634C0532925a3b8D4C8db86fB5C4A7E",
  "value": "0x38D7EA4C68000"
}

sign_evm_personal_message

Sign a UTF-8 message using EIP-191 personal_sign with the EVM wallet. Returns a hex-encoded signature.

Parameters:

  • message (string, required): The UTF-8 message to sign
  • chainId (number, required): EVM chain ID (e.g., 1 for Ethereum, 8453 for Base, 137 for Polygon, 143 for Monad)
  • derivationIndex (number, optional): Derivation index (default: 0)

Example:

{
  "message": "Sign in to My App\nNonce: 12345",
  "chainId": 1
}

sign_evm_typed_data

Sign EIP-712 typed structured data. Used for DeFi permit signatures, order signing (0x, Seaport), and other structured off-chain approvals.

Parameters:

  • typedData (object, required): EIP-712 typed data with types, primaryType, domain, and message fields
  • chainId (number, required): EVM chain ID (e.g., 1 for Ethereum, 8453 for Base, 137 for Polygon, 143 for Monad)
  • derivationIndex (number, optional): Derivation index (default: 0)

get_token_allowance

Check the ERC-20 allowance granted by an owner address to a spender address on any supported EVM chain. Use this before an EVM swap or contract interaction to determine whether an approve() transaction is needed.

Parameters:

  • chainId (number|string, required): EVM chain ID (e.g., 8453, "8453", or "0x2105" for Base)
  • tokenAddress (string, required): ERC-20 token contract address
  • spenderAddress (string, required): Address of the spender to check allowance for
  • ownerAddress (string, optional): Token owner address. Defaults to the authenticated wallet address
  • walletId (string, optional): Wallet ID, only used when ownerAddress is omitted
  • derivationIndex (number, optional): Derivation index (default: 0)
  • rpcUrl (string, optional): Custom EVM RPC URL override

simulate_transaction

Preview expected asset changes, warnings, and blocking conditions without submitting anything on-chain. Supports Solana, EVM, Sui, Bitcoin, and EVM message signing flows.

Parameters:

  • chainId (string, required): CAIP-2 chain ID such as "solana:mainnet" or "eip155:8453"
  • type (string, required): "transaction" or "message"
  • params (object, required): Chain-specific simulation payload
  • url (string, optional): dApp origin URL for additional context
  • context (string, optional): "swap", "bridge", "send", or "gaslessSwap"
  • userAccount (string, optional): Wallet address to simulate for. Auto-derived for Solana and EVM
  • language (string, optional): Response language code (default: "en")
  • derivationIndex (number, optional): HD derivation index (default: 0)
  • walletId (string, optional): Wallet ID override

transfer_tokens

Transfer native tokens or fungible tokens on Solana and EVM chains. By default this uses a two-step flow: first simulate and preview, then submit only after explicit approval.

Parameters:

  • networkId (string, required): Network — Solana ("solana:mainnet", "solana:devnet") or EVM ("eip155:1", "eip155:8453", "eip155:137", "eip155:42161", "eip155:143")
  • to (string, required): Recipient — Solana base58 address or EVM 0x-prefixed address
  • amount (string, required): Transfer amount (e.g., "0.1" or "1000000")
  • amountUnit (string, optional): "ui" for human-readable units or "base" for atomic units. Default: "ui"
  • tokenMint (string, optional): Token contract — Solana SPL mint or EVM ERC-20 0x address. Omit for native token.
  • decimals (number, optional): Token decimals — optional on Solana (auto-fetched); required for ERC-20 with amountUnit: "ui"
  • derivationIndex (number, optional): Derivation index (default: 0)
  • createAssociatedTokenAccount (boolean, optional): Solana only — create destination ATA if missing (default: true)
  • confirmed (boolean, optional): Set to true only after the user has reviewed and approved the simulation

Example (SOL):

{
  "networkId": "solana:mainnet",
  "to": "H8FpYTgx4Uy9aF9Nk9fCTqKKFLYQ9KfC6UJhMkMDzCBh",
  "amount": "0.1",
  "amountUnit": "ui"
}

Example (ETH on Base):

{
  "networkId": "eip155:8453",
  "to": "0x742d35Cc6634C0532925a3b8D4C8db86fB5C4A7E",
  "amount": "0.01",
  "amountUnit": "ui"
}

Example (ERC-20 USDC on Ethereum):

{
  "networkId": "eip155:1",
  "to": "0x742d35Cc6634C0532925a3b8D4C8db86fB5C4A7E",
  "tokenMint": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
  "amount": "100",
  "amountUnit": "ui",
  "decimals": 6
}

Simulation response: When confirmed is omitted, the tool returns status: "pending_confirmation" with simulation.expectedChanges, warnings, and optional block.

buy_token

Fetch a swap quote from Phantom's routing engine. Supports same-chain Solana, same-chain EVM, and cross-chain swaps between Solana and EVM chains. Optionally execute immediately.

Parameters:

  • sellChainId (string, optional): CAIP-2 chain for the sell token (default: "solana:mainnet"). Supported: solana:* and eip155:* (e.g. "eip155:1", "eip155:8453").
  • buyChainId (string, optional): CAIP-2 chain for the buy token (defaults to sellChainId). Supported: solana:* and eip155:*. Set differently for cross-chain.
  • sellTokenIsNative (boolean, optional): Sell the native token (default: true if sellTokenMint not provided)
  • sellTokenMint (string, optional): Token to sell — Solana mint or EVM 0x contract
  • buyTokenIsNative (boolean, optional): Buy the native token
  • buyTokenMint (string, optional): Token to buy — Solana mint or EVM 0x contract
  • amount (string, required): Swap amount
  • amountUnit (string, optional): "ui" for token units or "base" for atomic units. Default: "base"
  • slippageTolerance (number, optional): Slippage tolerance in percent (0-100)
  • execute (boolean, optional): Sign and send the initiation transaction immediately. For cross-chain swaps (sellChainIdbuyChainId) this sends the source-chain transaction; the bridge completes the destination side automatically. Default: false
  • derivationIndex (number, optional): Derivation index (default: 0)
  • quoteApiUrl (string, optional): Phantom-compatible quotes API override. Leave unset for normal use.

For EVM swaps, use get_token_allowance when you need to check whether the sell token requires an ERC-20 approval before execution. Quote responses may also include requiredApprovals for relevant steps.

Example (Solana swap):

{
  "sellChainId": "solana:mainnet",
  "sellTokenIsNative": true,
  "buyTokenMint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
  "amount": "0.5",
  "amountUnit": "ui",
  "slippageTolerance": 1,
  "execute": true
}

Example (EVM swap — ETH → USDC on Base):

{
  "sellChainId": "eip155:8453",
  "sellTokenIsNative": true,
  "buyTokenMint": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
  "amount": "1000000000000000000",
  "slippageTolerance": 1,
  "execute": true
}

Perpetuals Tools (Hyperliquid)

The plugin exposes 13 tools for perpetuals trading on Hyperliquid via Phantom's backend. All signing uses the wallet's EVM key (Arbitrum EIP-712).

Read-only

get_perp_account

Returns perp account balance: accountValue, availableBalance, availableToTrade.

Parameters: walletId (optional), derivationIndex (optional, default 0)

get_perp_markets

Returns all available perpetual markets with current price, funding rate, open interest, 24h volume, and max leverage.

Parameters: walletId (optional)

get_perp_positions

Returns all open positions with direction, size, entry price, leverage, unrealized PnL, and liquidation price.

Parameters: walletId (optional), derivationIndex (optional, default 0)

get_perp_orders

Returns all open orders (limit, take-profit, stop-loss) with order ID, type, price, size, and reduce-only flag.

Parameters: walletId (optional), derivationIndex (optional, default 0)

get_perp_trade_history

Returns historical trades with price, size, trade value, fee, and closed PnL.

Parameters: walletId (optional), derivationIndex (optional, default 0)

Write

deposit_to_hyperliquid

Swaps tokens to USDC via Phantom's routing engine and transfers the USDC into the Hyperliquid perp account.

Parameters:

  • sourceChainId (string, required): Source chain — "solana:mainnet", "eip155:42161", "eip155:8453", "eip155:1", or "eip155:137"
  • amount (string, required): Amount to deposit in human-readable units
  • tokenAddress (string, optional): ERC-20/SPL token address — omit for native SOL or default USDC per chain
  • walletId (string, optional), derivationIndex (number, optional, default 0)
open_perp_position

Opens a perpetual position. Market orders use 10% slippage (IOC). Limit orders rest on the book (GTC).

Parameters:

  • market (string, required): Market symbol (e.g. "BTC", "ETH", "SOL")
  • direction (string, required): "long" or "short"
  • sizeUsd (string, required): Notional position size in USD (e.g. "500")
  • leverage (number, required): Leverage multiplier (e.g. 10 for 10x)
  • orderType (string, required): "market" or "limit"
  • limitPrice (string, optional): Required for limit orders
  • reduceOnly (boolean, optional): Default false
  • walletId (string, optional), derivationIndex (number, optional, default 0)
close_perp_position

Closes an open position using a market IOC order. Defaults to 100% close.

Parameters:

  • market (string, required): Market symbol (e.g. "BTC")
  • sizePercent (number, optional): Percentage to close (1–100, default 100)
  • walletId (string, optional), derivationIndex (number, optional, default 0)
cancel_perp_order

Cancels an open order by ID. Use get_perp_orders to retrieve order IDs.

Parameters:

  • market (string, required): Market symbol
  • orderId (number, required): Order ID from get_perp_orders
  • walletId (string, optional), derivationIndex (number, optional, default 0)
update_perp_leverage

Updates leverage and margin type for a market. Takes effect on new orders.

Parameters:

  • market (string, required): Market symbol
  • leverage (number, required): New leverage multiplier
  • marginType (string, required): "isolated" or "cross"
  • walletId (string, optional), derivationIndex (number, optional, default 0)
transfer_spot_to_perps

Moves USDC within Hypercore from the spot account to the perp account. Use when USDC is already on Hyperliquid. Does not bridge from external chains.

Parameters:

  • amountUsdc (string, required): Amount of USDC to transfer
  • walletId (string, optional), derivationIndex (number, optional, default 0)
withdraw_from_perps

Bridges USDC from the Hyperliquid perp account to an external chain (Solana, Base, Ethereum, Arbitrum, Polygon).

Parameters:

  • amountUsdc (string, required): Amount of USDC to withdraw
  • destinationChainId (string, required): Destination chain CAIP-2 ID (e.g. "solana:mainnet", "eip155:8453")
  • buyToken (string, optional): CAIP-19 token to receive; defaults to USDC on the destination chain
  • walletId (string, optional), derivationIndex (number, optional, default 0)
withdraw_from_hyperliquid_spot

Bridges USDC from the Hyperliquid spot account to an external chain (Solana, Base, Ethereum, Arbitrum, Polygon) via the Relay V2 bridge. Funds must be in the spot account — use withdraw_from_perps first if they are in the perp account. Use execute: false (default) to preview the quote before broadcasting.

Parameters:

  • amountUsdc (string, required): Amount of USDC to bridge out (e.g. "8.0")
  • destinationChainId (string, required): Destination chain CAIP-2 ID (e.g. "solana:mainnet", "eip155:8453")
  • buyToken (string, optional): CAIP-19 token to receive on the destination chain; defaults to USDC
  • execute (boolean, optional): If false (default), returns a quote only. If true, signs and broadcasts immediately.
  • walletId (string, optional), derivationIndex (number, optional, default 0)

Example:

{ "amountUsdc": "50.0", "destinationChainId": "solana:mainnet", "execute": true }

Response (quote only): { quote: { requestId, details: { amountIn, amountOut, amountOutUsd } } }

Response (executed): { status, txHash?, ... }

Typical Agent Workflow

1. get_perp_markets          → find market, check price
2. get_token_balances        → verify USDC balance on source chain
3. deposit_to_hyperliquid    → bridge to Hyperliquid spot
4. transfer_spot_to_perps    → move USDC from spot into perp account
5. get_perp_account          → confirm balance in perp account
6. open_perp_position        → open long at 10x leverage
7. get_perp_positions        → monitor position
8. close_perp_position       → close when done
9. withdraw_from_perps              → bridge USDC from perp account back to Solana (or any chain)
   (or withdraw_from_hyperliquid_spot → bridge USDC from spot account back to an external chain)

Network IDs Reference

Network identifiers follow the CAIP-2/CAIP-10 format. Here are the supported networks:

Solana

  • Mainnet: solana:mainnet
  • Devnet: solana:devnet
  • Testnet: solana:testnet

Ethereum / EVM Chains

  • Ethereum Mainnet: eip155:1
  • Ethereum Sepolia: eip155:11155111
  • Polygon Mainnet: eip155:137
  • Polygon Amoy: eip155:80002
  • Base Mainnet: eip155:8453
  • Base Sepolia: eip155:84532
  • Arbitrum One: eip155:42161
  • Arbitrum Sepolia: eip155:421614

Bitcoin

  • Mainnet: bip122:000000000019d6689c085ae165831e93

Sui

  • Mainnet: sui:mainnet
  • Testnet: sui:testnet

Authentication

On first use, the plugin will automatically initiate the Phantom device-code authentication flow:

  1. A browser window will open to Phantom Connect
  2. Sign in with your Google or Apple account
  3. Approve the wallet session for OpenClaw
  4. The session will be saved for future use

Sessions are stored securely in ~/.phantom-mcp/session.json with restricted permissions and persist across restarts. The plugin uses stamper keypair authentication which doesn't expire.

Usage Examples

Check Wallet Addresses

User: What are my wallet addresses?
Agent: Let me check your Phantom wallet addresses.
[Calls get_wallet_addresses]

Sign a Message

User: Sign this message: "Verify ownership of my wallet"
Agent: I'll sign that message for you using your Phantom wallet.
[Calls sign_message with the message]

Sign a Transaction

User: Sign this Solana transaction: [transaction data]
Agent: I'll sign that transaction with your Phantom wallet.
[Calls sign_transaction with the transaction data]

Architecture

phantom-openclaw-plugin/
├── src/
│   ├── index.ts              # Plugin entry point
│   ├── session.ts            # Session management wrapper
│   ├── client/
│   │   └── types.ts          # OpenClaw API types
│   └── tools/
│       └── register-tools.ts # Tool registration logic
├── skills/
│   └── phantom-wallet/       # Wallet operations skill
└── openclaw.plugin.json      # Plugin manifest

Development

For contributors or those testing unreleased versions.

Prerequisites

  • Node.js 18+
  • yarn
  • Phantom wallet account for testing

Local Installation

  1. Clone and build the plugin:

    # From the phantom-connect-sdk repository root
    yarn install
    yarn workspace @phantom/mcp-server build
    yarn workspace @phantom/phantom-openclaw-plugin build
  2. Install locally into OpenClaw:

    openclaw plugins install -l ./packages/phantom-openclaw-plugin
  3. Configure in ~/.openclaw/openclaw.json:

    {
      "plugins": {
        "enabled": true,
        "entries": {
          "phantom-openclaw-plugin": {
            "enabled": true
          }
        }
      }
    }
  4. Verify installation:

    openclaw plugins list
  5. Test with an agent:

    openclaw chat
    > What are my Phantom wallet addresses?

Build Commands

# Build the plugin
yarn build

# Development mode with watch
yarn dev

# Type checking
yarn check-types

# Linting
yarn lint

# Format code
yarn prettier

Troubleshooting

Plugin Not Loading

  • Verify the plugin is enabled in openclaw.json
  • Check that the build completed successfully (dist/ directory exists)
  • Ensure both the plugin and @phantom/mcp-server are built

Authentication Fails

  • Check your internet connection
  • Ensure you have a Phantom wallet account
  • Try clearing the session cache: rm -rf ~/.phantom-mcp/session.json
  • Check the console logs for specific error messages

Tool Execution Errors

  • Ensure you're authenticated (the plugin will prompt if not)
  • Verify the tool parameters match the expected schema
  • Check that the Phantom wallet supports the requested operation

Related Projects

Contributing

Contributions are welcome! Please ensure:

  • TypeScript types are properly defined
  • Code follows the existing style (run yarn prettier)
  • All builds pass (yarn build)
  • Type checking passes (yarn check-types)

License

MIT

Support

For issues or questions:

  • GitHub Issues: https://github.com/phantom/phantom-connect-sdk/issues
  • Phantom Support: https://help.phantom.app