Yawti @ Base Ethereum L2 Blockchain
Source code :
Contract info :
https://basescan.org/token/0x755bec20237d995c000a30e668ef54c81235e91c
Yawti @ Base Ethereum L2 Blockchain is a new token for The Family tokens services.
Initially, 0.05 Ether and 102 USDC had been added to the Uniswap liquidity pools.
https://app.uniswap.org/explore/tokens/base/0x755bec20237d995c000a30e668ef54c81235e91c
okchai
Contract 0x75...e91c source code (Solidity)
// SPDX-License-Identifier: MIT
Sep 18, 2024, 9:28:09 AM// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.20;
import "@openzeppelin/contracts@5.0.2/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts@5.0.2/access/Ownable.sol";
contract Yawti is ERC20, Ownable {
constructor(address initialOwner)
ERC20("Yawti", "YAW")
Ownable(initialOwner)
{
_mint(msg.sender, 9999999999 * 10 ** decimals());
}
function mint(address to, uint256 amount) public onlyOwner {
_mint(to, amount);
}
}