Use Remix
Compile a Solidity Contract using Remix Comment
1. Launch Remix
2. Compile the Solidity code
pragma solidity ^0.7.0;
import 'https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.2.0-solc-0.7/contracts/token/ERC20/ERC20.sol';
// This ERC-20 contract mints the specified amount of tokens to the contract creator.
contract BasicToken is ERC20 {
constructor(uint256 initialSupply) ERC20("BASICT", "BAT") public {
_mint(msg.sender, initialSupply);
}
}3. Get the ABI File

Last updated
Was this helpful?
