solana_wallet_transactions
Pack: solana-rpc · Endpoint: https://gateway.pipeworx.io/solana-rpc/mcp
Recent transaction history for a Solana address: signature, slot, block time, success or failure, and memo
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
wallet | string | yes | Base58 Solana wallet address (32-44 chars) |
limit | number | no | Signatures to return, 1-100 (default 20) |
before | string | no | Signature to page backwards from (from next_before) |
until | string | no | Stop when this signature is reached |
Example call
Arguments
{
"wallet": "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9",
"limit": 5
}
curl
curl -X POST https://gateway.pipeworx.io/solana-rpc/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"solana_wallet_transactions","arguments":{"wallet":"5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9","limit":5}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('solana_wallet_transactions', {
"wallet": "5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9",
"limit": 5
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"solana-rpc": {
"url": "https://gateway.pipeworx.io/solana-rpc/mcp"
}
}
}
See Getting Started for client-specific install steps.