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

https://github.com/init4tech/simple-erc20

Simple ERC20 token - Burnable with Ownable Mint
https://github.com/init4tech/simple-erc20

Last synced: about 1 month ago
JSON representation

Simple ERC20 token - Burnable with Ownable Mint

Awesome Lists containing this project

README

          

## Simple ERC20

A simple ERC20 token utilizing [OpenZeppelin libraries](https://github.com/OpenZeppelin/openzeppelin-contracts).

- [Burnable](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/ERC20Burnable.sol)
- [Ownable Mint](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol), uncapped Minting
- Configurable decimals
- Otherwise, [generic ERC20](https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol) functionality

## Usage

### Build

```shell
$ forge build
```

### Test

```shell
$ forge test
```

### Format

```shell
$ forge fmt
```

### Gas Snapshots

```shell
$ forge snapshot
```