alchemy-core-workflow-a

Featured

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

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 A — Wallet Portfolio Tracker ## Overview Primary workflow: build a wallet portfolio tracker using Alchemy's Enhanced APIs. Combines `getTokenBalances`, `getNftsForOwner`, `getAssetTransfers`, and token metadata to create a complete wallet view across ERC-20, ERC-721, and ERC-1155 assets. ## Prerequisites - Completed `alchemy-install-auth` setup - `alchemy-sdk` installed - Understanding of Ethereum address format and token standards ## Instructions ### Step 1: Portfolio Data Fetcher ```typescript // src/portfolio/fetcher.ts import { Alchemy, Network, AssetTransfersCategory } from 'alchemy-sdk'; const alchemy = new Alchemy({ apiKey: process.env.ALCHEMY_API_KEY, network: Network.ETH_MAINNET, }); interface TokenHolding { contractAddress: string; symbol: string; name: string; balance: number; decimals: number; } interface NftHolding { contractAddress: string; collectionName: string; tokenId: string; name: string; imageUrl: string | null; } interface WalletPortfolio { address: string; ethBalance: string; tokens: TokenHolding[]; nfts: NftHolding[]; recentTransactions: any[]; fetchedAt: string; } async function fetchPortfolio(address: string): Promise<WalletPortfolio> { // Parallel fetch all portfolio data const [ethBalance, tokenBalances, nftResponse, transfers] = await Promise.all([ alchemy.core.getBalance(address), alchemy.core.getTokenBalances(address), alchemy.nft.getNftsForOwner(address, { p...

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-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-core-workflow-b

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

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-prod-checklist

Execute production readiness checklist for Alchemy-powered dApps. Use when deploying Web3 applications, preparing for mainnet launch, or validating blockchain integration before go-live. Trigger: "alchemy production", "alchemy go-live", "alchemy mainnet checklist", "dApp production readiness".

2,266 Updated today
jeremylongshore