Skip to main content
PulseScanner.io

Address

0x24c19f7101c1731b85f1127eaa0407732e36ecdd
Current Holdings
$0.00
TXs sent
not counted
First Active
2023-05-13
block 17,249,594
Last Active
15 days ago
block 27,434,975
Funded By
not identified

Net worth historyi

2 snapshots · to block 27,472,043coverage change 26 Augcoverage change 27 Augcoverage change 27 Augcoverage change 27 Augcoverage change 27 Aug
exact matchSGTv2solc 0.8.7+commit.e28d00a7runtime exact · creation exact
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;

// Inherit permit to allow a permit signed approval for gas savings
import "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol";
// Token needs to be burnable to allow the voteEscrow to burn self tokens as early withdraw penalyu
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";

contract SGTv2 is ERC20Burnable, ERC20Permit {
    constructor(
        string memory name,
        string memory symbol,
        uint256 initialSupply,
        address owner
    ) ERC20(name, symbol) ERC20Permit(name) {
        _mint(owner, initialSupply);
    }
}