alchemy-core-workflow-b

Featured

Build NFT collection explorer and smart contract interaction with Alchemy. Use when fetching NFT metadata, building galleries, reading contract state, or implementing NFT marketplace features. Trigger: "alchemy NFT", "alchemy smart contract", "alchemy collection", "alchemy NFT metadata", "alchemy contract read".

AI & Automation 2,266 stars 315 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

# Alchemy Core Workflow B — NFT & Smart Contract Interaction ## Overview Build NFT collection explorers and smart contract read operations using Alchemy's NFT API and core JSON-RPC methods. ## Prerequisites - Completed `alchemy-install-auth` setup - Familiarity with `alchemy-core-workflow-a` - Understanding of ERC-721 and ERC-1155 standards ## Instructions ### Step 1: NFT Collection Explorer ```typescript // src/nft/collection-explorer.ts import { Alchemy, Network } from 'alchemy-sdk'; const alchemy = new Alchemy({ apiKey: process.env.ALCHEMY_API_KEY, network: Network.ETH_MAINNET, }); async function exploreCollection(contractAddress: string) { const metadata = await alchemy.nft.getContractMetadata(contractAddress); return { address: contractAddress, name: metadata.name || 'Unknown', symbol: metadata.symbol || '', totalSupply: metadata.totalSupply || '0', tokenType: metadata.tokenType, floorPrice: metadata.openSeaMetadata?.floorPrice || null, description: metadata.openSeaMetadata?.description || '', imageUrl: metadata.openSeaMetadata?.imageUrl || null, }; } async function getCollectionNfts(contractAddress: string, limit: number = 20) { const response = await alchemy.nft.getNftsForContract(contractAddress, { limit }); return response.nfts.map(nft => ({ tokenId: nft.tokenId, name: nft.name || `#${nft.tokenId}`, description: nft.description, image: nft.image?.cachedUrl || nft.image?.originalUrl, attribut...

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

alchemy-core-workflow-a

Build a complete wallet portfolio tracker using Alchemy Enhanced APIs. Use when implementing token balance dashboards, NFT galleries, transaction history views, or wallet analytics applications. Trigger: "alchemy wallet tracker", "alchemy portfolio", "alchemy token dashboard", "alchemy transaction history", "build dApp with alchemy".

2,266 Updated today
jeremylongshore
AI & Automation Featured

alchemy-hello-world

Create a minimal Alchemy Web3 example: get ETH balance, fetch NFTs, read token balances. Use when starting blockchain development, testing Alchemy setup, or learning basic blockchain query patterns. Trigger: "alchemy hello world", "alchemy example", "alchemy quick start", "get ETH balance", "fetch NFTs alchemy".

2,266 Updated today
jeremylongshore
AI & Automation Featured

alchemy-reference-architecture

Implement reference architecture for Alchemy-powered Web3 applications. Use when designing dApp infrastructure, planning multi-chain deployments, or structuring a production blockchain application. Trigger: "alchemy architecture", "dApp architecture", "alchemy project structure", "web3 system design", "alchemy multi-chain design".

2,266 Updated today
jeremylongshore
AI & Automation Featured

alchemy-install-auth

Install the Alchemy SDK and configure API key authentication for Web3 development. Use when setting up blockchain API access, creating an Alchemy app, or configuring multi-chain RPC endpoints. Trigger: "install alchemy", "setup alchemy", "alchemy auth", "alchemy API key".

2,266 Updated today
jeremylongshore
AI & Automation Featured

alchemy-local-dev-loop

Set up local Web3 development workflow with Alchemy, Hardhat, and testnets. Use when configuring local blockchain dev, testing with Sepolia faucets, or setting up hot-reload for smart contract development. Trigger: "alchemy local dev", "alchemy hardhat", "alchemy testnet setup".

2,266 Updated today
jeremylongshore