Agent skill · Workflow & Productivity

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". '

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

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

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Version: 1.5.0
Declared author: Jeremy Longshore <jeremy@intentsolutions.io>
Allowed tools: ReadWriteEditBash(npm:*)Grep
Requires: Designed for Claude Code, also compatible with Codex and OpenClaw
Path: skills/.curated/quicknode-core-workflow-b/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,596
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 Core Workflow B — NFT & Token APIs ## Overview Use QuickNode's NFT and Token APIs to fetch metadata, check balances, and track transfer history. These are QuickNode-specific add-on APIs beyond standard EVM RPC. ## Prerequisites - Completed `quicknode-core-workflow-a` - Token and NFT add-ons enabled on your QuickNode endpoint ## Instructions ### Step 1: Get Token Balances (QuickNode SDK) ```typescript import { Core } from '@quicknode/sdk'; const core = new Core({ endpointUrl: process.env.QUICKNODE_ENDPOINT }); // Get all ERC-20 token balances for a wallet const balances = await core.client.request({ method: 'qn_getWalletTokenBalance', params: [{ wallet: '0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045' }], }); for (const token of balances.result) { console.log(`${token.name} (${token.symbol}): ${token.quantity}`); } ``` ### Step 2: Get NFT Metadata ```typescript const nfts = await core.client.request({ method: 'qn_fetchNFTs', params: [{ wallet: '0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045', contracts: ['0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D'], // BAYC page: 1, perPage: 10, }], }); for (const nft of nfts.result.assets) { console.log(`${nft.name} — Token ID: ${nft.tokenId}`

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Instructions
  4. Step 1: Get Token Balances (QuickNode SDK)
  5. Step 2: Get NFT Metadata
  6. Step 3: Track ERC-20 Transfers
  7. Step 4: Standard ERC-20 Balance (No Add-on Required)
  8. Output
  9. Error Handling
  10. Resources
  11. Next Steps
More from claude-code-plugins-plus-skills
All skills →
About this skill
What does the quicknode-core-workflow-b skill do?

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". '

How do I install it?

Run `npx skills add jeremylongshore/claude-code-plugins-plus-skills --skill quicknode-core-workflow-b --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,596 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