alchemy-prod-checklist

Featured

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

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 Production Checklist ## Pre-Launch Checklist ### API & Infrastructure - [ ] API key restricted to production domains in Alchemy Dashboard - [ ] Separate Alchemy apps for dev/staging/prod environments - [ ] Rate limit headroom verified (< 70% of CU/sec budget) - [ ] Retry logic with exponential backoff implemented - [ ] Error monitoring configured (Sentry, Datadog, etc.) - [ ] Webhook endpoints HTTPS-only with signature verification ### Security - [ ] API key NOT in frontend code — proxied through backend - [ ] Private keys in secret manager (not env files) - [ ] All user-supplied addresses validated and checksummed - [ ] No `console.log` of sensitive data in production builds - [ ] npm audit clean — no critical vulnerabilities ### Smart Contracts (if applicable) - [ ] Contracts audited by reputable firm - [ ] Deployed and verified on Etherscan/Polygonscan - [ ] Admin keys secured in multi-sig wallet - [ ] Emergency pause function tested ### Performance - [ ] Response caching for frequently-queried data (balances, metadata) - [ ] Connection pooling for provider instances - [ ] Batch requests where possible (NFT metadata, balances) - [ ] WebSocket reconnection logic for real-time subscriptions ### Validation Script ```typescript // src/prod/readiness.ts import { Alchemy, Network } from 'alchemy-sdk'; async function checkReadiness(): Promise<void> { const checks: Array<{ name: string; pass: boolean; detail: string }> = []; // 1. API connectivity const al...

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

apollo-prod-checklist

Execute Apollo.io production deployment checklist. Use when preparing to deploy Apollo integrations to production, doing pre-launch verification, or auditing production readiness. Trigger with phrases like "apollo production checklist", "deploy apollo", "apollo go-live", "apollo production ready", "apollo launch checklist".

2,266 Updated today
jeremylongshore
DevOps & Infrastructure Featured

alchemy-deploy-integration

Deploy Alchemy-powered Web3 applications to Vercel, Cloud Run, and AWS. Use when deploying dApps with server-side Alchemy SDK access, configuring API key secrets, or setting up RPC proxy endpoints. Trigger: "deploy alchemy", "alchemy Vercel", "alchemy Cloud Run", "alchemy production deploy", "dApp deploy".

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

algolia-prod-checklist

Execute Algolia production readiness checklist: index settings, key security, replica configuration, monitoring, and rollback procedures. Trigger: "algolia production", "deploy algolia", "algolia go-live", "algolia launch checklist", "algolia production ready".

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