/gitcoin-grants-heroku

// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract SoToken is ERC20 { constructor() ERC20("so", "EFM") { _mint(msg.sender, 100000000 * 10 ** decimals()); } }

Primary LanguagePython

Stargazers