Deploying an ERC20
Tutoral on how to deploy an ERC20 on Load Network
Add Load Network Alphanet to MetaMask
ERC20 Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @title Useless Testing Token
/// @notice Just a testing shitcoin
/// @dev SupLoad gmgm
/// @author pepe frog
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract WeaveGM is ERC20 {
constructor(uint256 initialSupply) ERC20("supLoad", "LOAD") {
_mint(msg.sender, initialSupply);
}
}Deployment


Last updated