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"
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Overview
- Prerequisites
- Instructions
- Step 1: Create a Stream via Dashboard
- Step 2: Handle Stream Events
- Step 3: Filter by Contract Events
- Output
- Error Handling
- Resources
- Next Steps
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.