npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-quicknode

v0.1.4

Published

n8n node for Quicknode RPC integration

Readme

n8n-nodes-quicknode

This is an n8n community node for interacting with blockchain networks via Quicknode RPC endpoints.

Features

  • 10 Built-in RPC Operations:

    • Get Balance - Check ETH/token balance of any address
    • Get Block Number - Get the latest block number
    • Get Block - Retrieve block details by number or hash
    • Get Transaction - Fetch transaction details
    • Get Transaction Receipt - Get transaction receipt with logs
    • Get Transaction Count - Get nonce for an address
    • Get Code - Check if an address is a contract
    • Get Gas Price - Current network gas price
    • Estimate Gas - Estimate gas for a transaction
    • Call - Execute read-only smart contract calls
  • Custom RPC Support - Call any JSON-RPC method not listed above

  • Multi-network Support - Works with any EVM-compatible chain

  • Human-readable Results - Automatic conversion of hex values to decimal/ETH

Installation

Community Nodes (Recommended)

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-quicknode and confirm

Manual Installation

cd ~/.n8n/nodes
npm install n8n-nodes-quicknode

Prerequisites

  1. Create a Quicknode account
  2. Create an endpoint for your desired network (Ethereum, Polygon, etc.)
  3. Copy your endpoint URL (it includes authentication)

Configuration

Credentials

  1. In n8n, go to Credentials > New
  2. Search for "Quicknode API"
  3. Enter your Quicknode endpoint URL
  4. Select your network (for reference only)

Your endpoint URL should look like:

https://your-endpoint-name.quiknode.pro/your-token-here/

Local Development

Setup

# Clone the repository
git clone https://github.com/quiknode-labs/n8n.git
cd n8n

# Install dependencies
npm install

# Build the node
npm run build

# Link for local testing
npm link

Testing with n8n

# In your n8n installation directory
cd ~/.n8n
npm link n8n-nodes-quicknode

# Start n8n
n8n start

Or use Docker:

docker run -it --rm \
  --name n8n \
  -p 5678:5678 \
  -v ~/.n8n:/home/node/.n8n \
  -v $(pwd):/home/node/.n8n/nodes/n8n-nodes-quicknode \
  n8nio/n8n

Development Commands

npm run dev      # Watch mode for TypeScript
npm run build    # Full production build
npm run lint     # Run ESLint
npm run format   # Format with Prettier

Usage Examples

Get ETH Balance

  1. Add the Quicknode RPC node
  2. Select Get Balance operation
  3. Enter an Ethereum address
  4. Execute to get balance in Wei and ETH

Read Smart Contract

  1. Add the Quicknode RPC node
  2. Select Call operation
  3. Enter the contract address in "To Address"
  4. Enter the encoded function call in "Data"
  5. Execute to get the result

Custom RPC Method

  1. Add the Quicknode RPC node
  2. Select Custom RPC operation
  3. Enter the RPC method (e.g., eth_getLogs)
  4. Enter parameters as JSON array
  5. Execute

Supported Networks

Any Quicknode-supported EVM network:

  • Ethereum (Mainnet, Sepolia, Goerli)
  • Polygon (Mainnet, Mumbai)
  • Arbitrum One
  • Optimism
  • Base
  • BSC
  • Avalanche C-Chain
  • And more...

Error Handling

The node includes:

  • Address validation (0x + 40 hex chars)
  • Transaction hash validation (0x + 64 hex chars)
  • Block tag validation
  • Proper RPC error propagation
  • Continue on fail support

License

MIT

Resources