thienphanexcalibur / standard-bep20

Latlest standard of BEP20 contract (unflatten)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Standard BEP20 Contract

  • Unflatten contract, ready to be consumed for fresh project using BEP20 standard

💡 Use Flattener Plugin to flatten the build code 💡 Example when deploying new token:

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "./BEP20.sol";

contract MyToken is BEP20Token {
    constructor() BEP20Token(<token_name>, <symbol>, <decimal>, <total_supply>) {
    }
}

About

Latlest standard of BEP20 contract (unflatten)


Languages

Language:Solidity 100.0%