Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

erc20 token openzeppelin example github

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";


contract ERC20_Token_Sample is ERC20, ERC20Burnable {
    constructor() ERC20("ERC20 Token Sample1", "Sample 1") {
        _mint(msg.sender, 100_000_000_000 * 10**18 );
    }
}
Comment

PREVIOUS NEXT
Code Example
Shell :: volatility 3 imageinfo 
Shell :: powershell join-object 
Shell :: Quick start: Use as a GitHub Pages remote theme 
Shell :: powershell or bash 
Shell :: Display curl output in readable JSON format in Unix shell script 
Shell :: error: failed to init transaction 
Shell :: how to install threejs debugger 
Shell :: search class in all files used 
Shell :: window build tools linux 
Shell :: odoo web/static 404 
Shell :: https://arxiv.org/abs/2111.09395 
Shell :: powershell read registry value remote computer 
Shell :: cargo new bin 
Shell :: go back to a folder in git 
Shell :: Provide file / folder access to a user in Linux 
Shell :: view files added to next commit after running git add 
Shell :: how to install and use aws cli and setup the user from the .csv file 
Shell :: install bpytop arch linux 
Shell :: Installing craftable 
Shell :: gitlab windows containers build pipeline 
Shell :: ssh: Could not resolve hostname [10.129.84.85]: Name or service not known 
Shell :: grep not like 
Shell :: debian copy directory 
Shell :: Midori rpm install 
Shell :: mixtex 
Shell :: ubuntu sysmon 
Shell :: npm react js package for form factor responsive site development 
Shell :: two sed command together 
Shell :: bitcoin core download 
Shell :: Prerequisite packages installation for Docker 
ADD CONTENT
Topic
Content
Source link
Name
8+7 =