quicknode

Configure QuickNode RPC endpoints, Streams, and XRPL methods for blockchain development.

Updated Apr 11, 2026
One-click install
npx skills add https://github.com/Current-cmd/TrustMeBRO --skill quicknode-current-cmd
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: quicknode
Source: https://github.com/Current-cmd/TrustMeBRO/tree/main/.claude/skills/quicknode
Command: npx skills add https://github.com/Current-cmd/TrustMeBRO --skill quicknode-current-cmd

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Setting up reliable blockchain node access and choosing the right RPC methods is time-consuming, especially when working across multiple chains like XRPL, Ethereum, and Base. This Skill provides ready-to-use endpoint configuration patterns, a complete XRPL RPC method reference, and guidance for real-time data streaming. ## Core Features & Use Cases - Endpoint Setup: Step-by-step configuration of QuickNode RPC URLs for scaffold-xrp (.env) and boundless (secrets.toml) across XRPL, Ethereum, Base, and testnets. - XRPL RPC Reference: Complete tables of account, ledger, transaction, NFT, DEX, and subscription methods with a working account_info fetch example. - Real-Time Data & AI Integration: Covers Streams, Webhooks, SQL Explorer, Admin API, llms.txt indexes, and the QuickNode MCP server for LLM workflows. - Use Case: You are building an XRPL app with scaffold-xrp and need to query account balances and stream ledger events. Use this Skill to configure your QuickNode endpoint and call account_info and subscribe methods correctly. ## Quick Start Set up a QuickNode RPC endpoint for my XRPL project and show me how to query an account's balance using the account_info method.

Frequently Asked Questions about quicknode

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up a QuickNode RPC endpoint for XRPL?▼

Create an endpoint in the QuickNode dashboard by selecting the XRPL chain and network, then copy the HTTPS URL into your .env file as NEXT_PUBLIC_QUICKNODE_RPC. The endpoint exposes the full XRPL JSON-RPC API including account_info, ledger, and submit methods.

How to call XRPL account_info using QuickNode RPC?▼

Send a POST request to your QuickNode endpoint with a JSON body containing method account_info and params with the account address and ledger_index. The response returns account_data where Balance is expressed in drops, with 1 XRP equal to 1,000,000 drops.

What XRPL RPC methods does QuickNode support?▼

QuickNode exposes the full XRPL JSON-RPC API covering account methods like account_info and account_tx, ledger queries, transaction submission via submit, NFT lookups, DEX order books via book_offers, payment channels, and subscriptions for streaming ledger events.

Does QuickNode support real-time blockchain event streaming?▼

Yes, QuickNode Streams provides reorg-safe, guaranteed-delivery event streaming configurable from the dashboard with destinations like webhooks or Kinesis. It suits monitoring contract events on Base or watching XRPL account activity.

Can I use QuickNode with AI agents or LLM tools?▼

QuickNode publishes llms.txt indexes for its docs and supports appending .md to any docs URL for Markdown output suitable for RAG pipelines. An official QuickNode MCP server is also available for Claude Desktop integration.

How do I configure QuickNode RPC URLs for boundless on Base?▼

Add the endpoint URLs to ~/.boundless/secrets.toml under network keys like base-mainnet and eth-mainnet, or export environment variables such as REQUESTOR_RPC_URL and PROVER_RPC_URL pointing to your QuickNode Base endpoint.