Agent skill

quicknode-webhooks-events

QuickNode webhooks events \u2014 blockchain RPC and Web3 infrastructure\ \ integration.\nUse when working with QuickNode for blockchain development.\nTrigger\ \ with phrases like \"quicknode webhooks events\", \"quicknode-webhooks-events\"\ , \"blockchain RPC\".\n"

intentsolutions.io2,596★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill quicknode-webhooks-events --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Version: 1.5.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEditBash(npm:*)Bash(curl:*)Grep
Requires: Designed for Claude Code, also compatible with Codex and OpenClaw
Path: skills/.curated/quicknode-webhooks-events/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 Webhooks Events ## Overview Set up QuickNode Streams for real-time on-chain event processing with custom filters and webhook delivery. ## Prerequisites - QuickNode account with Streams access - HTTPS webhook endpoint ## Instructions ### Step 1: Create a Stream via Dashboard ```text 1. Dashboard > Streams > Create Stream 2. Select chain: Ethereum Mainnet 3. Filter: Contract events for specific address 4. Destination: Webhook URL 5. Set payload format: JSON ``` ### Step 2: Handle Stream Events ```typescript import express from 'express'; const app = express(); app.post('/webhooks/quicknode', express.json(), async (req, res) => { const events = req.body; for (const event of events) { console.log(`Block: ${event.blockNumber}`); console.log(`TX: ${event.transactionHash}`); console.log(`Topics: ${event.topics}`); // Process on-chain event await processBlockchainEvent(event); } res.status(200).json({ received: true }); }); ``` ### Step 3: Filter by Contract Events ```javascript // Stream filter function (runs on QuickNode infrastructure) function main(data) { const targetContract = '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'; // USDC const transferTopic = '0xddf252ad1be2c89b6

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Instructions
  4. Step 1: Create a Stream via Dashboard
  5. Step 2: Handle Stream Events
  6. Step 3: Filter by Contract Events
  7. Output
  8. Error Handling
  9. Resources
  10. Next Steps
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the quicknode-webhooks-events skill do?

QuickNode webhooks events \u2014 blockchain RPC and Web3 infrastructure\ \ integration.\nUse when working with QuickNode for blockchain development.\nTrigger\ \ with phrases like \"quicknode webhooks events\", \"quicknode-webhooks-events\"\ , \"blockchain RPC\".\n"

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill quicknode-webhooks-events --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