Deployment
Obtain LUMIA token from the Faucet
Deploy Contract on Lumia TestnNet
Token Contract
// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
contract Sportimex is ERC20, ERC20Permit {
constructor() ERC20("Hello Lumia", "HelloLumia") ERC20Permit("HelloLumia") {
_mint(msg.sender, 100000000 * 10 ** decimals());
}
}
Last updated
Was this helpful?