From quicknode-pack
QuickNode prod checklist — blockchain RPC and Web3 infrastructure integration. Use when working with QuickNode for blockchain development. Trigger with phrases like "quicknode prod checklist", "quicknode-prod-checklist", "blockchain RPC".
npx claudepluginhub flight505/skill-forge --plugin quicknode-packThis skill is limited to using the following tools:
Implementation patterns for QuickNode prod checklist using blockchain RPC endpoints and the QuickNode SDK.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Implementation patterns for QuickNode prod checklist using blockchain RPC endpoints and the QuickNode SDK.
quicknode-install-auth setupimport { ethers } from 'ethers';
const provider = new ethers.JsonRpcProvider(process.env.QUICKNODE_ENDPOINT);
const block = await provider.getBlockNumber();
console.log(`Connected at block ${block}`);
| Error | Cause | Solution |
|---|---|---|
| 401 Unauthorized | Invalid endpoint token | Verify URL from Dashboard |
| Rate limited | Too many requests | Implement backoff or upgrade plan |
| Method not found | Add-on required | Enable in QuickNode Dashboard |
See related QuickNode skills for more workflows.