https://github.com/topsecretagent007/evm-stablecoin-launch
This project demonstrates the launch of a stablecoin on an EVM-compatible blockchain using Solidity.
https://github.com/topsecretagent007/evm-stablecoin-launch
erc-20 ethereum evm launch stablecoin
Last synced: 4 months ago
JSON representation
This project demonstrates the launch of a stablecoin on an EVM-compatible blockchain using Solidity.
- Host: GitHub
- URL: https://github.com/topsecretagent007/evm-stablecoin-launch
- Owner: topsecretagent007
- Created: 2025-07-25T07:45:09.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-07-25T07:47:52.000Z (11 months ago)
- Last Synced: 2025-08-15T15:06:38.149Z (10 months ago)
- Topics: erc-20, ethereum, evm, launch, stablecoin
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EVM Stablecoin Launch
This project demonstrates the launch of a stablecoin on an EVM-compatible blockchain using Solidity.
## ๐งพ Overview
The repository contains the smart contract code and deployment logic for a basic stablecoin, built and deployed on EVM-compatible networks such as Ethereum or Binance Smart Chain.
## ๐ Tech Stack
- **Solidity** โ Smart contract programming language.
- **Hardhat** or **Truffle** โ For compiling, testing, and deploying contracts (customize based on actual usage).
- **EVM-compatible Chains** โ Ethereum, BSC, Polygon, etc.
## ๐ Features
- ERC-20 compliant stablecoin
- Minting and burning functionality
- Owner-controlled supply mechanisms
- Designed for deployment on any EVM-compatible chain
## ๐ Structure
```
contracts/ # Solidity smart contracts
scripts/ # Deployment and management scripts
test/ # Test cases
README.md # Project overview
```
## ๐งช Usage
1. Install dependencies:
```bash
npm install
```
2. Compile the contracts:
```bash
npx hardhat compile
```
3. Run tests:
```bash
npx hardhat test
```
4. Deploy to a network:
```bash
npx hardhat run scripts/deploy.js --network
```
## ๐ License
This project is licensed under the MIT License.
---
Created by [@topsecretagent007](https://github.com/topsecretagent007)