Address
0xd04e772bc0d591fbd288f2e2a86afa3d3cb647f8Current Holdings
$0.00
TXs sent
not counted
First Active
2023-05-13
block 17,251,608
Last Active
726 days ago
block 21,461,249
Funded By
not identified
Net worth historyi
2 snapshots · to block 27,427,935coverage change 26 Augcoverage change 27 Augcoverage change 27 Augcoverage change 27 Augcoverage change 27 Aug
exact matchCryptoGPTsolc 0.8.9+commit.e5eed63aruntime exact · creation exact
// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
/**
* @title BaseERC20
*
* @notice The BaseERC20 is a simple token template based on OpenZeppelin implementation
* with total token supply initially minted to a single treasury.
*/
contract BaseERC20 is ERC20Burnable {
constructor(
address initialOwner,
string memory name,
string memory symbol,
uint256 initialSupply
) ERC20(name, symbol) {
_mint(initialOwner, initialSupply);
}
}