alchemy-deploy-integration

Featured

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

DevOps & Infrastructure 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 Deploy Integration ## Overview Deploy Alchemy-powered dApps with proper API key security. The API key must stay server-side — never ship it to the browser. ## Instructions ### Step 1: Vercel Deployment ```bash # Add Alchemy API key as Vercel secret vercel secrets add alchemy_api_key "your-api-key" vercel link vercel --prod ``` ```json // vercel.json { "env": { "ALCHEMY_API_KEY": "@alchemy_api_key" }, "functions": { "api/**/*.ts": { "maxDuration": 30 } } } ``` ```typescript // api/balance/[address].ts — Vercel serverless function import { Alchemy, Network } from 'alchemy-sdk'; const alchemy = new Alchemy({ apiKey: process.env.ALCHEMY_API_KEY, network: Network.ETH_MAINNET, }); export default async function handler(req: any, res: any) { const { address } = req.query; if (!/^0x[a-fA-F0-9]{40}$/.test(address)) { return res.status(400).json({ error: 'Invalid address' }); } const balance = await alchemy.core.getBalance(address); res.json({ balance: balance.toString() }); } ``` ### Step 2: Cloud Run Deployment ```bash # Build and deploy gcloud builds submit --tag gcr.io/${PROJECT_ID}/alchemy-dapp gcloud run deploy alchemy-dapp \ --image gcr.io/${PROJECT_ID}/alchemy-dapp \ --region us-central1 \ --set-secrets=ALCHEMY_API_KEY=alchemy-api-key:latest \ --allow-unauthenticated ``` ### Step 3: Health Check ```typescript // api/health.ts import { Alchemy, Network } from 'alchemy-sdk'; export default async function handler(_req: any, res:...

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

algolia-deploy-integration

Deploy Algolia-powered apps to Vercel, Fly.io, and Cloud Run with proper API key management and InstantSearch frontend integration. Trigger: "deploy algolia", "algolia Vercel", "algolia production deploy", "algolia Cloud Run", "algolia Fly.io", "algolia InstantSearch".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-deploy-integration

Deploy Apollo.io integrations to production. Use when deploying Apollo integrations, configuring production environments, or setting up deployment pipelines. Trigger with phrases like "deploy apollo", "apollo production deploy", "apollo deployment pipeline", "apollo to production".

2,266 Updated today
jeremylongshore
AI & Automation Featured

alchemy-ci-integration

Configure CI/CD pipeline for Alchemy-powered Web3 applications. Use when setting up automated testing with Hardhat forks, smart contract verification, or testnet deployment pipelines. Trigger: "alchemy CI", "alchemy GitHub Actions", "web3 CI/CD pipeline".

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