alchemy-common-errors

Featured

Diagnose and fix common Alchemy SDK and Web3 API errors. Use when encountering rate limits, RPC failures, invalid parameters, or blockchain query errors with the Alchemy SDK. Trigger: "alchemy error", "alchemy not working", "alchemy 429", "alchemy debug", "fix alchemy issue".

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 Common Errors ## Overview Troubleshooting guide for Alchemy SDK errors covering rate limits, RPC failures, invalid parameters, and network-specific issues. ## Error Reference ### Authentication & Rate Limits | HTTP Code | Error | Root Cause | Fix | |-----------|-------|-----------|-----| | `401` | Unauthorized | Invalid or missing API key | Verify key in Alchemy Dashboard | | `403` | Forbidden | API key disabled or app deleted | Create new app in Dashboard | | `429` | Too Many Requests | Rate limit exceeded | Implement backoff; upgrade plan | | `429` | Compute Units exceeded | CU quota depleted | Check CU usage in Dashboard | ### Alchemy Rate Limits by Plan | Plan | Compute Units/sec | Throughput | |------|-------------------|------------| | Free | 330 CU/s | ~25 requests/s | | Growth | 660 CU/s | ~50 requests/s | | Scale | Custom | Custom | ### RPC & Query Errors ```typescript // Common RPC error handler import { Alchemy, Network } from 'alchemy-sdk'; async function safeAlchemyCall<T>( operation: () => Promise<T>, context: string ): Promise<T | null> { try { return await operation(); } catch (error: any) { const code = error.code || error.response?.status; switch (code) { case -32602: // Invalid params console.error(`[${context}] Invalid parameters: ${error.message}`); console.error('Common causes: wrong address format, invalid block number, missing 0x prefix'); break; case -32600: // Invalid reque...

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-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-rate-limits

Implement Alchemy Compute Unit (CU) rate limiting and request throttling. Use when handling 429 errors, optimizing CU usage, or managing concurrent blockchain queries within plan limits. Trigger: "alchemy rate limit", "alchemy 429", "alchemy compute units", "alchemy throttling", "alchemy CU budget".

2,266 Updated today
jeremylongshore
AI & Automation Featured

alchemy-security-basics

Apply Web3 security best practices for Alchemy-powered applications. Use when securing API keys, validating blockchain inputs, preventing private key exposure, or hardening dApp infrastructure. Trigger: "alchemy security", "web3 security", "protect private key", "alchemy API key security", "dApp security".

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

apollo-common-errors

Diagnose and fix common Apollo.io API errors. Use when encountering Apollo API errors, debugging integration issues, or troubleshooting failed requests. Trigger with phrases like "apollo error", "apollo api error", "debug apollo", "apollo 401", "apollo 429", "apollo troubleshoot".

2,266 Updated today
jeremylongshore