Tokenized agents pump.fun

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: pump-fun-tokenized-agents Version: 1.0.0 The skill bundle provides legitimate instructions and code templates for integrating Solana-based payments using the @pump-fun/agent-payments-sdk. It includes strong safety guidelines, such as prohibiting the handling of private keys by the agent and requiring server-side verification of transactions. The logic and external references (e.g., to GitHub and public Solana RPCs like Solana Tracker) are consistent with the stated purpose of building payment flows for tokenized agents.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A user could pay with real SOL or USDC if they approve the wallet transaction.

Why it was flagged

The skill documents creating and submitting blockchain payment transactions. This is expected for the stated payment-flow purpose, but transactions can move real funds once the user signs.

Skill content
Client reconstructs instructions, signs, and submits the transaction on Solana via `sendTransaction`.
Recommendation

Review wallet prompts carefully, confirm the amount, currency, recipient/program, and network before signing.

What this means

Connecting a wallet lets the app identify the wallet address and ask the user to approve payment transactions.

Why it was flagged

The integration connects to a user's Solana wallet and can request transaction signatures. The artifacts also state the user signs and private keys must not be logged, so this is purpose-aligned rather than suspicious.

Skill content
`useWallet()` gives you the user's `publicKey` and `signTransaction`.
Recommendation

Use a trusted wallet, never share seed phrases or private keys, and approve only transactions that match the intended payment.

What this means

A project using this guide will add third-party dependencies that run in the user's application environment.

Why it was flagged

The workflow depends on external npm packages. Installing these packages is central to the skill's purpose, but users should still verify package provenance and lock versions.

Skill content
npm install @pump-fun/agent-payments-sdk@3.0.0 @solana/web3.js@^1.98.0
Recommendation

Install from trusted registries, review package names carefully, use a lockfile, and follow the skill's own advice to avoid blindly installing incompatible latest versions.

What this means

The chosen RPC provider may see wallet public addresses, transaction submissions, and request metadata.

Why it was flagged

The skill recommends external Solana RPC endpoints for building, sending, and verifying transactions. This is disclosed and expected, but the RPC provider can observe submitted transaction and query data.

Skill content
SOLANA_RPC_URL=https://rpc.solanatracker.io/public
Recommendation

Use an RPC provider you trust, especially for production payment flows.