Agent skill

quicknode-common-errors

Diagnose and fix QuickNode RPC errors: nonce issues, gas failures, rate limits. Use when encountering blockchain RPC errors, failed transactions, or connection issues. Trigger with phrases like "quicknode error", "RPC error", "nonce too low", "gas estimation failed". '

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-coderead-onlyMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill quicknode-common-errors --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Version: 1.5.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadGrepBash(curl:*)
Requires: Designed for Claude Code, also compatible with Codex and OpenClaw
Path: skills/.curated/quicknode-common-errors/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,630
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# QuickNode Common Errors ## Overview Quick reference for the top blockchain RPC errors when using QuickNode endpoints with ethers.js or viem. ## Prerequisites - QuickNode endpoint configured - ethers.js or viem installed ## Instructions ### Error 1: Nonce Too Low ``` Error: nonce has already been used (error={"code":-32000,"message":"nonce too low"}) ``` **Fix:** ```typescript // Get the correct nonce before sending const nonce = await provider.getTransactionCount(wallet.address, 'pending'); const tx = await wallet.sendTransaction({ ...txData, nonce }); ``` ### Error 2: Insufficient Funds ``` Error: insufficient funds for intrinsic transaction cost ``` **Fix:** ```typescript const balance = await provider.getBalance(wallet.address); const gasEstimate = await provider.estimateGas(txData); const feeData = await provider.getFeeData(); const totalCost = gasEstimate * feeData.gasPrice! + txData.value; if (balance < totalCost) { console.error(`Need ${ethers.formatEther(totalCost)} ETH, have ${ethers.formatEther(balance)}`); } ``` ### Error 3: Gas Estimation Failed (Call Revert) ``` Error: execution reverted (reason="ERC20: transfer amount exceeds balance") ``` **Fix:** The contract func

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Instructions
  4. Error 1: Nonce Too Low
  5. Error 2: Insufficient Funds
  6. Error 3: Gas Estimation Failed (Call Revert)
  7. Error 4: Rate Limited (429)
  8. Error 5: Method Not Found
  9. Error 6: WebSocket Connection Dropped
  10. Output
  11. Error Handling
  12. Resources
  13. Next Steps
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the quicknode-common-errors skill do?

Diagnose and fix QuickNode RPC errors: nonce issues, gas failures, rate limits. Use when encountering blockchain RPC errors, failed transactions, or connection issues. Trigger with phrases like "quicknode error", "RPC error", "nonce too low", "gas estimation failed". '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill quicknode-common-errors --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From jeremylongshore/claude-code-plugins-plus-skills, a repository with 2,630 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going