An open API service indexing awesome lists of open source software.

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.

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)