crypto-token-minter

Generate, build, and deploy custom ERC20 tokens on EVM networks using Foundry.

Updated May 4, 2026
One-click install
npx skills add https://github.com/luokai25/luo-ai-skills-market --skill crypto-token-minter
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: crypto-token-minter
Source: https://github.com/luokai25/luo-ai-skills-market/tree/main/12-finance-and-trading%20%28by%20Luo%20Kai%29/02-crypto-defi/crypto-token-minter
Command: npx skills add https://github.com/luokai25/luo-ai-skills-market --skill crypto-token-minter

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires python, foundry, forge, cast, and includes scripts (resource) and references (resource) and assets (resource) components.

What problem does it solve?

This Skill solves the problem of manually creating and deploying custom ERC20 tokens on EVM networks, allowing users to quickly and easily deploy tokens with custom parameters.

Core Features & Use Cases

  • Custom Token Deployment: Users can create and deploy ERC20 tokens with custom parameters like name, symbol, decimals, and initial supply.
  • EVM Network Support: Supports deployment to various networks including Sepolia testnet.
  • Foundry Integration: Requires Foundry (forge/cast) for blockchain interactions, providing a seamless development experience.

Quick Start

Use the crypto-token-minter skill to deploy a new ERC20 token with the name 'MyToken', symbol 'MTK', and initial supply of 1000000 tokens to the Sepolia testnet.

Frequently Asked Questions about crypto-token-minter

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy a custom ERC20 token to an EVM network using Foundry?

To deploy a custom ERC20 token, this Skill automates contract generation via Python scripts and uses Foundry (forge and cast) to build and deploy the token to your specified EVM network. You provide custom parameters like name, symbol, and initial supply.

What is the process for creating an ERC20 token with custom parameters like name and initial supply?

Creating an ERC20 token with custom parameters involves generating Solidity contracts using Python scripts based on your specified token name, symbol, decimals, and initial supply, followed by compiling and deploying the contracts using Foundry to a target EVM network.

Do I need Python and Foundry installed to generate and deploy ERC20 tokens?

Yes, you need both Python and Foundry installed. Python is required to run the scripts for Solidity contract generation, while Foundry (specifically the forge and cast tools) is necessary for compiling the contracts and executing the deployment on the blockchain.

Can I use this to deploy ERC20 tokens to the Sepolia testnet?

Yes, you can deploy ERC20 tokens to the Sepolia testnet. The Skill supports various EVM network configurations, allowing you to test your custom token deployment on Sepolia before moving to a mainnet environment.

What's the best way to automate Solidity contract generation for EVM token deployment?

The best way to automate Solidity contract generation for EVM token deployment is using Python scripts to dynamically create the contract code with your custom token parameters, then leveraging Foundry's forge and cast commands for seamless blockchain development and deployment.

Why does my Foundry ERC20 token deployment require Python scripts?

Foundry token deployment requires Python scripts because Python handles the dynamic generation of the Solidity contract files based on your custom parameters. Foundry then takes these generated files to compile and deploy the token to the EVM network.