Skip to content
Skillv1.0.0

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-

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (skills/.curated/quicknode-install-auth/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill quicknode-install-auth. Copyright stays with the author (MIT).

QuickNode Install Auth

Overview

Set up QuickNode blockchain RPC endpoints and install the QuickNode SDK or ethers.js for blockchain interactions.

Prerequisites

  • QuickNode account at quicknode.com
  • An endpoint created for your target chain (Ethereum, Solana, etc.)
  • Node.js 18+

Instructions

Step 1: Create Endpoint

1. Go to quicknode.com > Dashboard > Create Endpoint
2. Select chain: Ethereum Mainnet (or testnet for development)
3. Copy the HTTP URL and WSS URL
   HTTP: https://xxx-yyy.quiknode.pro/TOKEN/
   WSS: wss://xxx-yyy.quiknode.pro/TOKEN/

Step 2: Install SDK

set -euo pipefail
npm install @quicknode/sdk viem
# Or with ethers.js
npm install ethers

Step 3: Configure Environment

# .env
QUICKNODE_ENDPOINT=https://xxx-yyy.quiknode.pro/YOUR_TOKEN/
QUICKNODE_WSS=wss://xxx-yyy.quiknode.pro/YOUR_TOKEN/

Step 4: Verify Connection (QuickNode SDK)

import { Core } from '@quicknode/sdk';

const core = new Core({ endpointUrl: process.env.QUICKNODE_ENDPOINT });
const blockNumber = await core.client.request({ method: 'eth_blockNumber' });
console.log(`Connected! Current block: ${parseInt(blockNumber, 16)}`);

Step 5: Verify Connection (ethers.js)

import { ethers } from 'ethers';

const provider = new ethers.JsonRpcProvider(process.env.QUICKNODE_ENDPOINT);
const block = await provider.getBlockNumber();
console.log(`Connected! Block: ${block}`);

Output

  • QuickNode endpoint configured
  • SDK installed and verified
  • Successful RPC call confirming connectivity

Error Handling

Error Cause Solution
401 Unauthorized Invalid token in URL Verify endpoint URL from Dashboard
ECONNREFUSED Wrong endpoint URL Check HTTPS URL format
eth method not found Add-on required Enable add-on in QuickNode Dashboard

Resources

Next Steps

First blockchain query: quicknode-hello-world

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-quicknode-ins-49937f/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-quicknode-ins-49937f.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-quicknode-ins-49937f",
  "kind": "skill",
  "name": "quicknode-install-auth",
  "description": "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\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "saas",
      "quicknode",
      "blockchain",
      "web3",
      "rpc",
      "ethereum",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "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\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "skills/.curated/quicknode-install-auth/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/skills/.curated/quicknode-install-auth/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/skills/.curated/quicknode-install-auth/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(npm:*),",
      "Bash(curl:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# QuickNode Install Auth\n\n## Overview\n\nSet up QuickNode blockchain RPC endpoints and install the QuickNode SDK or ethers.js for blockchain interactions.\n\n## Prerequisites\n\n- QuickNode account at quicknode.com\n- An endpoint created for your target chain (Ethereum, Solana, etc.)\n- Node.js 18+\n\n## Instructions\n\n### Step 1: Create Endpoint\n\n```text\n1. Go to quicknode.com > Dashboard > Create Endpoint\n2. Select chain: Ethereum Mainnet (or testnet for development)\n3. Copy the HTTP URL and WSS URL\n   HTTP: https://xxx-yyy.quiknode.pro/TOKEN/\n   WSS: wss://xxx-yyy.quiknode.pro/TOKEN/\n```\n\n### Step 2: ",
  "cost": {
    "context_tokens": 537
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-quicknode-ins-49937f/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.