Generate, build, and deploy custom ERC20 tokens on EVM networks. Use when users want to create and deploy their own ERC20 tokens with custom parameters like name, symbol, decimals, and initial supply. Supports deployment to various networks including Sepolia testnet and requires Foundry (forge/cast) for blockchain interactions.
npx claudepluginhub joshuarweaver/cascade-business-ops --plugin kukapay-crypto-skillsThis skill uses the workspace's default tool permissions.
This skill enables users to create custom ERC20 tokens by collecting parameters, generating Solidity code, setting up a Foundry project, building the contract, and deploying to a target EVM network.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
This skill enables users to create custom ERC20 tokens by collecting parameters, generating Solidity code, setting up a Foundry project, building the contract, and deploying to a target EVM network.
Collect the following parameters from the user:
Use the provided script to generate the ERC20 contract code based on user parameters.
python scripts/generate_contract.py <name> <symbol> <decimals> <initial_supply> to generate the contract./tmp/forge initsrc/Contract.solforge install OpenZeppelin/openzeppelin-contractsforge buildforge create --rpc-url <network_rpc> --account <account_name> src/Contract.sol:MyToken --constructor-args <initial_supply> --broadcastcast wallet newgenerate_contract.py: Python script to generate ERC20 contract code with custom parameterserc20_guide.md: Overview of ERC20 standard, required functions, events, and deployment considerationsERC20Template.sol: Template Solidity file for ERC20 contract generation