quicknode-core-workflow-a

Featured

QuickNode core workflow a — blockchain RPC and Web3 infrastructure integration. Use when working with QuickNode for blockchain development. Trigger with phrases like "quicknode core workflow a", "quicknode-core-workflow-a", "blockchain RPC".

AI & Automation 2,274 stars 319 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# QuickNode Core Workflow A ## Overview Build EVM transaction workflows: send ETH, interact with contracts, listen for events, and handle gas estimation. ## Prerequisites - Completed `quicknode-hello-world` - A funded wallet (use testnet for development) ## Instructions ### Step 1: Send ETH Transaction ```typescript import { ethers } from 'ethers'; const provider = new ethers.JsonRpcProvider(process.env.QUICKNODE_ENDPOINT); const wallet = new ethers.Wallet(process.env.PRIVATE_KEY!, provider); const tx = await wallet.sendTransaction({ to: '0xRecipientAddress', value: ethers.parseEther('0.01'), }); console.log(`TX sent: ${tx.hash}`); const receipt = await tx.wait(); console.log(`Confirmed in block ${receipt!.blockNumber}, gas used: ${receipt!.gasUsed}`); ``` ### Step 2: Call Contract Write Function ```typescript const contractAddress = '0xYourContract'; const abi = ['function transfer(address to, uint256 amount) returns (bool)']; const contract = new ethers.Contract(contractAddress, abi, wallet); const tx = await contract.transfer('0xRecipient', ethers.parseUnits('100', 18)); const receipt = await tx.wait(); console.log(`Transfer confirmed: ${receipt!.hash}`); ``` ### Step 3: Listen for Events (WebSocket) ```typescript const wsProvider = new ethers.WebSocketProvider(process.env.QUICKNODE_WSS); const contract = new ethers.Contract(contractAddress, ['event Transfer(address indexed from, address indexed to, uint256 value)'], wsProvider); contract.on('Transfer', (from...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

quicknode-hello-world

QuickNode hello world — blockchain RPC and Web3 infrastructure integration. Use when working with QuickNode for blockchain development. Trigger with phrases like "quicknode hello world", "quicknode-hello-world", "blockchain RPC".

2,274 Updated today
jeremylongshore
AI & Automation Solid

quicknode-ci-integration

QuickNode ci integration — blockchain RPC and Web3 infrastructure integration. Use when working with QuickNode for blockchain development. Trigger with phrases like "quicknode ci integration", "quicknode-ci-integration", "blockchain RPC".

2,274 Updated today
jeremylongshore
AI & Automation Featured

quicknode-core-workflow-b

Work with NFT and token APIs via QuickNode: metadata, balances, transfer history. Use when building NFT or token features, checking balances, or tracking transfers. Trigger with phrases like "quicknode NFT", "token balance", "NFT metadata", "ERC-20 balance".

2,274 Updated today
jeremylongshore
AI & Automation Featured

quicknode-install-auth

QuickNode install auth — blockchain RPC and Web3 infrastructure integration. Use when working with QuickNode for blockchain development. Trigger with phrases like "quicknode install auth", "quicknode-install-auth", "blockchain RPC".

2,274 Updated today
jeremylongshore
AI & Automation Solid

quicknode-reference-architecture

QuickNode reference architecture — blockchain RPC and Web3 infrastructure integration. Use when working with QuickNode for blockchain development. Trigger with phrases like "quicknode reference architecture", "quicknode-reference-architecture", "blockchain RPC".

2,274 Updated today
jeremylongshore