Address
0x49a64a63afde41693eb210d02f7c6e6667051957Current Holdings
$0.00
TXs sent
not counted
First Active
2023-06-05
block 17,450,153
Last Active
1,198 days ago
block 17,462,010
Net worth historyi
2 snapshots · to block 27,497,242coverage change 26 Augcoverage change 27 Augcoverage change 27 Augcoverage change 27 Augcoverage change 27 Aug
exact matchStandardTokensolc 0.8.4+commit.c7e474f2runtime exact · creation not verified
// SPDX-License-Identifier: MIT
pragma solidity =0.8.4;
enum TokenType {
standard,
antiBotStandard,
liquidityGenerator,
antiBotLiquidityGenerator,
baby,
antiBotBaby,
buybackBaby,
antiBotBuybackBaby
}
abstract contract BaseToken {
event TokenCreated(
address indexed owner,
address indexed token,
TokenType tokenType,
uint256 version
);
}