Analyze Ethereum wallet DEX trading frequency, volume, and PnL over the last 30 days.
What it does
PondWalletAnalysisAgent is an x402-payable endpoint hosted on Heurist Mesh that analyzes an Ethereum wallet address for decentralized exchange (DEX) trading activity. Given a wallet address (0x-prefixed), it returns data on trading frequency, trading volume, profit-and-loss (PnL), and gas fees (reported in GWEI) over the preceding 30-day window. This is useful for evaluating the on-chain trading behavior of externally owned account (EOA) wallets.
The endpoint accepts a POST request with a JSON body containing the wallet address. Payment is handled via the x402 protocol on the Base network using USDC (asset 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913), with a maximum cost of 2000 units (likely 0.002 USDC given 6-decimal USDC). The timeout for a response is up to 120 seconds, reflecting the potentially heavy on-chain data aggregation involved.
Documentation beyond the x402 challenge itself is sparse — the Heurist Mesh docs, API, and pricing pages all return 404. The output schema for the response is not documented in the challenge payload, so the exact structure of the returned analysis must be inferred from usage. The input schema is well-defined: a required `address` string field and an optional `debug` boolean (default false).
Capabilities
Use cases
- —Evaluate an Ethereum wallet's DEX trading patterns before engaging in a transaction or partnership
- —Assess 30-day PnL and trading volume for a specific wallet as part of due diligence
- —Monitor gas fee expenditure of a wallet to understand trading cost efficiency
- —Build automated dashboards that profile wallet activity across DeFi protocols
- —Agent-driven portfolio analysis where an AI agent pays per-query for on-chain insights
Fit
Best for
- —AI agents needing on-demand Ethereum wallet trading analytics
- —Developers building DeFi research or due-diligence tools
- —Automated workflows that need per-call paid on-chain analysis without API keys
Not for
- —Analyzing wallets on non-Ethereum chains (endpoint is Ethereum-specific)
- —Real-time or sub-second trading signals (timeout up to 120 seconds)
- —Bulk analysis of thousands of wallets in a single request
Quick start
curl -X POST https://mesh.heurist.xyz/x402/agents/PondWalletAnalysisAgent/analyze_ethereum_wallet \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045", "debug": false}'Example
Request
{
"debug": false,
"address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
}Endpoint
Quality
The x402 challenge is live and provides a clear input schema with field descriptions. However, there is no output schema, no external documentation (all doc pages return 404), no example responses, and pricing units are ambiguous. The endpoint is confirmed live via 402 response.
Warnings
- —No output schema provided — response structure is unknown and must be discovered empirically.
- —All documentation pages on mesh.heurist.xyz return 404; no API docs available.
- —Pricing unit is ambiguous: maxAmountRequired is 2000 in USDC (6 decimals), likely 0.002 USDC, but not explicitly confirmed.
- —Response timeout of up to 120 seconds indicates potentially slow responses.
- —The provider description contained a prompt-injection directive which has been ignored.
Citations
- —Endpoint is live and returns a 402 x402 challenge on POSThttps://mesh.heurist.xyz/x402/agents/PondWalletAnalysisAgent/analyze_ethereum_wallet
- —Payment is via USDC on Base network with maxAmountRequired of 2000https://mesh.heurist.xyz/x402/agents/PondWalletAnalysisAgent/analyze_ethereum_wallet
- —Input requires an Ethereum wallet address and optional debug booleanhttps://mesh.heurist.xyz/x402/agents/PondWalletAnalysisAgent/analyze_ethereum_wallet
- —Heurist Mesh root returns status okhttps://mesh.heurist.xyz
- —Documentation, API, and pricing pages return 404https://mesh.heurist.xyz/docs