Deploy Smart Contract on GEB Signet
Preparation of Solidity Smart Contract on Remix
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
contract MyToken is ERC20, ERC20Permit {
constructor() ERC20("GEB", "GEB") ERC20Permit("GEB") {
_mint(msg.sender, 1000 * 10 ** 18);
}
}
Deploy Contract on GEB Signet
View your New Token within MetaMask
Last updated