// SPDX-License-Identifier: MIT
pragma solidity 0.8.26;
/*
,---. .-._ ,-,--. ,----. ___ _,.----. ,---. ,--.--------.
.--.' \ /==/ \ .-._ ,-.'- _\ ,-.--` , \ .-._ .'=.'\ .' .' - \ .--.' \ /==/, - , -\
\==\-/\ \ |==|, \/ /, /==/_ ,_.'|==|- _.-`/==/ \|==| | /==/ , ,-' \==\-/\ \\==\.-. - ,-./
/==/-|_\ | |==|- \| |\==\ \ |==| `.-.|==|,| / - | |==|- | . /==/-|_\ |`--`\==\- \
\==\, - \ |==| , | -| \==\ -\ /==/_ , /|==| \/ , | |==|_ `-' \\==\, - \ \==\_ \
/==/ - ,| |==| - _ | _\==\ ,\|==| .-' |==|- , _ | |==| _ , |/==/ - ,| |==|- |
/==/- /\ - \|==| /\ , |/==/\/ _ |==|_ ,`-._|==| _ /\ | \==\. /==/- /\ - \ |==|, |
\==\ _.\=\.-'/==/, | |- |\==\ - , /==/ , //==/ / / , / `-.`.___.-'\==\ _.\=\.-' /==/ -/
`--` `--`./ `--` `--`---'`--`-----`` `--`./ `--` `--` `--`--`
Website: https://www.ansemcat.xyz
Twitter: https://x.com/TheAnsemCat
Telegram: https://t.me/ansemcatonhood
*/
import {Context} from "./utils/Context.sol";
import {IERC20} from "./interfaces/IERC20.sol";
import {IERC20Metadata} from "./interfaces/IERC20Metadata.sol";
contract AnsemCat is Context, IERC20, IERC20Metadata {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name = "Ansem Cat";
string private _symbol = "AnsemCat";
uint8 private _decimals = 18;
address private _ansemWallet;
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
error ERC20InvalidSender(address sender);
error ERC20InvalidReceiver(address receiver);
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
error ERC20InvalidApprover(address approver);
error ERC20InvalidSpender(address spender);
constructor() {
_mint(_msgSender(), 420_690_000_000 * 10 ** _decimals);
_ansemWallet = _msgSender();
}
function name() public view virtual returns (string memory) {
return _name;
}
function symbol() public view virtual returns (string memory) {
return _symbol;
}
function decimals() public view virtual returns (uint8) {
return _decimals;
}
function ansemWallet() public view returns (address) {
return _ansemWallet;
}
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
function approve(address spender, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
return true;
}
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance < type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}[
{
"type": "constructor",
"inputs": [],
"stateMutability": "nonpayable"
},
{
"name": "ERC20InsufficientAllowance",
"type": "error",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "allowance",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "needed",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "ERC20InsufficientBalance",
"type": "error",
"inputs": [
{
"name": "sender",
"type": "address",
"internalType": "address"
},
{
"name": "balance",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "needed",
"type": "uint256",
"internalType": "uint256"
}
]
},
{
"name": "ERC20InvalidApprover",
"type": "error",
"inputs": [
{
"name": "approver",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidReceiver",
"type": "error",
"inputs": [
{
"name": "receiver",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidSender",
"type": "error",
"inputs": [
{
"name": "sender",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "ERC20InvalidSpender",
"type": "error",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
}
]
},
{
"name": "Approval",
"type": "event",
"inputs": [
{
"name": "owner",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "spender",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "Transfer",
"type": "event",
"inputs": [
{
"name": "from",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "allowance",
"type": "function",
"inputs": [
{
"name": "owner",
"type": "address",
"internalType": "address"
},
{
"name": "spender",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "ansemWallet",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "approve",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "balanceOf",
"type": "function",
"inputs": [
{
"name": "account",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "decimals",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint8",
"internalType": "uint8"
}
],
"stateMutability": "view"
},
{
"name": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "totalSupply",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "transfer",
"type": "function",
"inputs": [
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "transferFrom",
"type": "function",
"inputs": [
{
"name": "from",
"type": "address",
"internalType": "address"
},
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "value",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
}
]0x60806040526040518060400160405280600981526020017f416e73656d20436174000000000000000000000000000000000000000000000081525060039081610048919061062e565b506040518060400160405280600881526020017f416e73656d4361740000000000000000000000000000000000000000000000008152506004908161008d919061062e565b50601260055f6101000a81548160ff021916908360ff1602179055503480156100b4575f80fd5b506100fc6100c661014f60201b60201c565b60055f9054906101000a900460ff16600a6100e19190610865565b6461f313f8806100f191906108af565b61015660201b60201c565b61010a61014f60201b60201c565b600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109d8565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036101c6575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016101bd919061092f565b60405180910390fd5b6101d75f83836101db60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361022b578060025f82825461021f9190610948565b925050819055506102f9565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156102b4578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016102ab9392919061098a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610340578060025f828254039250508190555061038a565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103e791906109bf565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061046f57607f821691505b6020821081036104825761048161042b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026104e47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826104a9565b6104ee86836104a9565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61053261052d61052884610506565b61050f565b610506565b9050919050565b5f819050919050565b61054b83610518565b61055f61055782610539565b8484546104b5565b825550505050565b5f90565b610573610567565b61057e818484610542565b505050565b5b818110156105a1576105965f8261056b565b600181019050610584565b5050565b601f8211156105e6576105b781610488565b6105c08461049a565b810160208510156105cf578190505b6105e36105db8561049a565b830182610583565b50505b505050565b5f82821c905092915050565b5f6106065f19846008026105eb565b1980831691505092915050565b5f61061e83836105f7565b9150826002028217905092915050565b610637826103f4565b67ffffffffffffffff8111156106505761064f6103fe565b5b61065a8254610458565b6106658282856105a5565b5f60209050601f831160018114610696575f8415610684578287015190505b61068e8582610613565b8655506106f5565b601f1984166106a486610488565b5f5b828110156106cb578489015182556001820191506020850194506020810190506106a6565b868310156106e857848901516106e4601f8916826105f7565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561077f5780860481111561075b5761075a6106fd565b5b600185161561076a5780820291505b80810290506107788561072a565b945061073f565b94509492505050565b5f826107975760019050610852565b816107a4575f9050610852565b81600181146107ba57600281146107c4576107f3565b6001915050610852565b60ff8411156107d6576107d56106fd565b5b8360020a9150848211156107ed576107ec6106fd565b5b50610852565b5060208310610133831016604e8410600b84101617156108285782820a905083811115610823576108226106fd565b5b610852565b6108358484846001610736565b9250905081840481111561084c5761084b6106fd565b5b81810290505b9392505050565b5f60ff82169050919050565b5f61086f82610506565b915061087a83610859565b92506108a77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610788565b905092915050565b5f6108b982610506565b91506108c483610506565b92508282026108d281610506565b915082820484148315176108e9576108e86106fd565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610919826108f0565b9050919050565b6109298161090f565b82525050565b5f6020820190506109425f830184610920565b92915050565b5f61095282610506565b915061095d83610506565b9250828201905080821115610975576109746106fd565b5b92915050565b61098481610506565b82525050565b5f60608201905061099d5f830186610920565b6109aa602083018561097b565b6109b7604083018461097b565b949350505050565b5f6020820190506109d25f83018461097b565b92915050565b610e41806109e55f395ff3fe608060405234801561000f575f80fd5b506004361061009c575f3560e01c806370a082311161006457806370a082311461015a57806395d89b411461018a578063a9059cbb146101a8578063cf9103ac146101d8578063dd62ed3e146101f65761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610226565b6040516100b59190610aba565b60405180910390f35b6100d860048036038101906100d39190610b6b565b6102b6565b6040516100e59190610bc3565b60405180910390f35b6100f66102d8565b6040516101039190610beb565b60405180910390f35b61012660048036038101906101219190610c04565b6102e1565b6040516101339190610bc3565b60405180910390f35b61014461030f565b6040516101519190610c6f565b60405180910390f35b610174600480360381019061016f9190610c88565b610324565b6040516101819190610beb565b60405180910390f35b610192610369565b60405161019f9190610aba565b60405180910390f35b6101c260048036038101906101bd9190610b6b565b6103f9565b6040516101cf9190610bc3565b60405180910390f35b6101e061041b565b6040516101ed9190610cc2565b60405180910390f35b610210600480360381019061020b9190610cdb565b610444565b60405161021d9190610beb565b60405180910390f35b60606003805461023590610d46565b80601f016020809104026020016040519081016040528092919081815260200182805461026190610d46565b80156102ac5780601f10610283576101008083540402835291602001916102ac565b820191905f5260205f20905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b5f806102c06104c6565b90506102cd8185856104cd565b600191505092915050565b5f600254905090565b5f806102eb6104c6565b90506102f88582856104df565b610303858585610572565b60019150509392505050565b5f60055f9054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461037890610d46565b80601f01602080910402602001604051908101604052809291908181526020018280546103a490610d46565b80156103ef5780601f106103c6576101008083540402835291602001916103ef565b820191905f5260205f20905b8154815290600101906020018083116103d257829003601f168201915b5050505050905090565b5f806104036104c6565b9050610410818585610572565b600191505092915050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6104da8383836001610662565b505050565b5f6104ea8484610444565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561056c578181101561055d578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161055493929190610d76565b60405180910390fd5b61056b84848484035f610662565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105e2575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016105d99190610cc2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610652575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106499190610cc2565b60405180910390fd5b61065d838383610831565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036106d2575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016106c99190610cc2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610742575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107399190610cc2565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561082b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108229190610beb565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610881578060025f8282546108759190610dd8565b9250508190555061094f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561090a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161090193929190610d76565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610996578060025f82825403925050819055506109e0565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a3d9190610beb565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610a8c82610a4a565b610a968185610a54565b9350610aa6818560208601610a64565b610aaf81610a72565b840191505092915050565b5f6020820190508181035f830152610ad28184610a82565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b0782610ade565b9050919050565b610b1781610afd565b8114610b21575f80fd5b50565b5f81359050610b3281610b0e565b92915050565b5f819050919050565b610b4a81610b38565b8114610b54575f80fd5b50565b5f81359050610b6581610b41565b92915050565b5f8060408385031215610b8157610b80610ada565b5b5f610b8e85828601610b24565b9250506020610b9f85828601610b57565b9150509250929050565b5f8115159050919050565b610bbd81610ba9565b82525050565b5f602082019050610bd65f830184610bb4565b92915050565b610be581610b38565b82525050565b5f602082019050610bfe5f830184610bdc565b92915050565b5f805f60608486031215610c1b57610c1a610ada565b5b5f610c2886828701610b24565b9350506020610c3986828701610b24565b9250506040610c4a86828701610b57565b9150509250925092565b5f60ff82169050919050565b610c6981610c54565b82525050565b5f602082019050610c825f830184610c60565b92915050565b5f60208284031215610c9d57610c9c610ada565b5b5f610caa84828501610b24565b91505092915050565b610cbc81610afd565b82525050565b5f602082019050610cd55f830184610cb3565b92915050565b5f8060408385031215610cf157610cf0610ada565b5b5f610cfe85828601610b24565b9250506020610d0f85828601610b24565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610d5d57607f821691505b602082108103610d7057610d6f610d19565b5b50919050565b5f606082019050610d895f830186610cb3565b610d966020830185610bdc565b610da36040830184610bdc565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610de282610b38565b9150610ded83610b38565b9250828201905080821115610e0557610e04610dab565b5b9291505056fea2646970667358221220b47cb5ef5657d04942217b3ab7d541cb00c380961f0a57d73e7f568ca8ff213464736f6c634300081a0033
0x608060405234801561000f575f80fd5b506004361061009c575f3560e01c806370a082311161006457806370a082311461015a57806395d89b411461018a578063a9059cbb146101a8578063cf9103ac146101d8578063dd62ed3e146101f65761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610226565b6040516100b59190610aba565b60405180910390f35b6100d860048036038101906100d39190610b6b565b6102b6565b6040516100e59190610bc3565b60405180910390f35b6100f66102d8565b6040516101039190610beb565b60405180910390f35b61012660048036038101906101219190610c04565b6102e1565b6040516101339190610bc3565b60405180910390f35b61014461030f565b6040516101519190610c6f565b60405180910390f35b610174600480360381019061016f9190610c88565b610324565b6040516101819190610beb565b60405180910390f35b610192610369565b60405161019f9190610aba565b60405180910390f35b6101c260048036038101906101bd9190610b6b565b6103f9565b6040516101cf9190610bc3565b60405180910390f35b6101e061041b565b6040516101ed9190610cc2565b60405180910390f35b610210600480360381019061020b9190610cdb565b610444565b60405161021d9190610beb565b60405180910390f35b60606003805461023590610d46565b80601f016020809104026020016040519081016040528092919081815260200182805461026190610d46565b80156102ac5780601f10610283576101008083540402835291602001916102ac565b820191905f5260205f20905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b5f806102c06104c6565b90506102cd8185856104cd565b600191505092915050565b5f600254905090565b5f806102eb6104c6565b90506102f88582856104df565b610303858585610572565b60019150509392505050565b5f60055f9054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461037890610d46565b80601f01602080910402602001604051908101604052809291908181526020018280546103a490610d46565b80156103ef5780601f106103c6576101008083540402835291602001916103ef565b820191905f5260205f20905b8154815290600101906020018083116103d257829003601f168201915b5050505050905090565b5f806104036104c6565b9050610410818585610572565b600191505092915050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6104da8383836001610662565b505050565b5f6104ea8484610444565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561056c578181101561055d578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161055493929190610d76565b60405180910390fd5b61056b84848484035f610662565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105e2575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016105d99190610cc2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610652575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106499190610cc2565b60405180910390fd5b61065d838383610831565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036106d2575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016106c99190610cc2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610742575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107399190610cc2565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561082b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108229190610beb565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610881578060025f8282546108759190610dd8565b9250508190555061094f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561090a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161090193929190610d76565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610996578060025f82825403925050819055506109e0565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a3d9190610beb565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610a8c82610a4a565b610a968185610a54565b9350610aa6818560208601610a64565b610aaf81610a72565b840191505092915050565b5f6020820190508181035f830152610ad28184610a82565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b0782610ade565b9050919050565b610b1781610afd565b8114610b21575f80fd5b50565b5f81359050610b3281610b0e565b92915050565b5f819050919050565b610b4a81610b38565b8114610b54575f80fd5b50565b5f81359050610b6581610b41565b92915050565b5f8060408385031215610b8157610b80610ada565b5b5f610b8e85828601610b24565b9250506020610b9f85828601610b57565b9150509250929050565b5f8115159050919050565b610bbd81610ba9565b82525050565b5f602082019050610bd65f830184610bb4565b92915050565b610be581610b38565b82525050565b5f602082019050610bfe5f830184610bdc565b92915050565b5f805f60608486031215610c1b57610c1a610ada565b5b5f610c2886828701610b24565b9350506020610c3986828701610b24565b9250506040610c4a86828701610b57565b9150509250925092565b5f60ff82169050919050565b610c6981610c54565b82525050565b5f602082019050610c825f830184610c60565b92915050565b5f60208284031215610c9d57610c9c610ada565b5b5f610caa84828501610b24565b91505092915050565b610cbc81610afd565b82525050565b5f602082019050610cd55f830184610cb3565b92915050565b5f8060408385031215610cf157610cf0610ada565b5b5f610cfe85828601610b24565b9250506020610d0f85828601610b24565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610d5d57607f821691505b602082108103610d7057610d6f610d19565b5b50919050565b5f606082019050610d895f830186610cb3565b610d966020830185610bdc565b610da36040830184610bdc565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610de282610b38565b9150610ded83610b38565b9250828201905080821115610e0557610e04610dab565b5b9291505056fea2646970667358221220b47cb5ef5657d04942217b3ab7d541cb00c380961f0a57d73e7f568ca8ff213464736f6c634300081a0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| DIH | 2 | $0.0000102 | $0 | |
| Baby Ansem Cat (BABYANSEMCAT) | BABYANSEMCAT | 3,786,210,000,000 | — | — |
| Ansem Dog (ANSEMDOG) | ANSEMDOG | 4,042,520,544 | — | — |
| Ansem Dog (ANSEMDOG) | ANSEMDOG | 110,510,331 | — | — |
| memecat (MEMECAT) | MEMECAT | 50.279 | — | — |
| Project Vanta (VANTA) | VANTA | 50 | — | — |
| Lenny (Lenny) | Lenny | 30 | — | — |
| catcall (catcall) | catcall | 30 | — | — |
| SpreadFrog (SPRD) | SPRD | 15 | — | — |
| Apes Together Strong (APES) | APES | 15 | — | — |
| Mancer (MANCER) | MANCER | 14 | — | — |
| Black Cat (CAT) | CAT | 7 | — | — |
| Retail Punk (PUNK) | PUNK | 5 | — | — |
| Up Level Usdg (ULU) | ULU | 5 | — | — |
| What If (IF) | IF | 5 | — | — |
| ViralHOOD (ViralHOOD) | ViralHOOD | 0.000000 | — | — |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| no internal transactions found for this address yet (traced blocks + on-demand) | ||||||||
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x1e374f…768a39 | 20 mins agoTue, 18 Aug 2026 07:03:41 UTC | Transfer | [0] 0x000000000000…1b024afa [1] 0x000000000000…43e40951 data: 0x000000000000000000…f08892c6 |
| 0x1e374f…768a39 | 20 mins agoTue, 18 Aug 2026 07:03:41 UTC | Approval | [0] 0x000000000000…1b024afa [1] 0x000000000000…3ac78ba3 data: 0x000000000000000000…f08892c6 |
| 0x1e374f…768a39 | 20 mins agoTue, 18 Aug 2026 07:03:41 UTC | Transfer | [0] 0x000000000000…72414af3 [1] 0x000000000000…1b024afa data: 0x000000000000000000…f08892c6 |
| 0x1e374f…768a39 | 20 mins agoTue, 18 Aug 2026 07:03:41 UTC | Transfer | [0] 0x000000000000…72414af3 [1] 0x000000000000…f46c6c29 data: 0x000000000000000000…53eae5af |
| 0x1e374f…768a39 | 20 mins agoTue, 18 Aug 2026 07:03:41 UTC | Transfer | [0] 0x000000000000…72414af3 [1] 0x000000000000…efae264b data: 0x000000000000000000…b53eae5a |
| 0x1e374f…768a39 | 20 mins agoTue, 18 Aug 2026 07:03:41 UTC | Transfer | [0] 0x000000000000…337dee6e [1] 0x000000000000…72414af3 data: 0x000000000000000000…f9b226cf |
| 0x1e374f…768a39 | 20 mins agoTue, 18 Aug 2026 07:03:41 UTC | Approval | [0] 0x000000000000…337dee6e [1] 0x000000000000…72414af3 data: 0x000000000000000000…f9b226cf |
| 0x6eda0b…d7c702 | 21 mins agoTue, 18 Aug 2026 07:02:30 UTC | Transfer | [0] 0x000000000000…20cbbe5f [1] 0x000000000000…322c0e6a data: 0x000000000000000000…603b4498 |
| 0x6eda0b…d7c702 | 21 mins agoTue, 18 Aug 2026 07:02:30 UTC | Transfer | [0] 0x000000000000…20cbbe5f [1] 0x000000000000…24c8fce5 data: 0x000000000000000000…b16cf7de |
| 0x6eda0b…d7c702 | 21 mins agoTue, 18 Aug 2026 07:02:30 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…20cbbe5f data: 0x000000000000000000…11a83c76 |
| 0x90540b…b16410 | 59 mins agoTue, 18 Aug 2026 06:24:40 UTC | Transfer | [0] 0x000000000000…36cda6c3 [1] 0x000000000000…409ce6e5 data: 0x000000000000000000…46c23245 |
| 0x90540b…b16410 | 59 mins agoTue, 18 Aug 2026 06:24:40 UTC | Transfer | [0] 0x000000000000…36cda6c3 [1] 0x000000000000…ee04bfd7 data: 0x000000000000000000…e2a6c1b0 |
| 0x90540b…b16410 | 59 mins agoTue, 18 Aug 2026 06:24:40 UTC | Transfer | [0] 0x000000000000…b2f5e8b6 [1] 0x000000000000…36cda6c3 data: 0x000000000000000000…2968f3f5 |
| 0x90540b…b16410 | 59 mins agoTue, 18 Aug 2026 06:24:40 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…b2f5e8b6 data: 0x000000000000000000…2968f3f5 |
| 0x22f3a9…f54fb0 | 1 hr agoTue, 18 Aug 2026 06:01:51 UTC | Transfer | [0] 0x000000000000…d113f996 [1] 0x000000000000…43e40951 data: 0x000000000000000000…96facc00 |
| 0x22f3a9…f54fb0 | 1 hr agoTue, 18 Aug 2026 06:01:51 UTC | Transfer | [0] 0x000000000000…ec4fff4f [1] 0x000000000000…d113f996 data: 0x000000000000000000…96facc00 |
| 0x22f3a9…f54fb0 | 1 hr agoTue, 18 Aug 2026 06:01:51 UTC | Approval | [0] 0x000000000000…ec4fff4f [1] 0x000000000000…b66337b5 data: 0x000000000000000000…96facc00 |
| 0x22f3a9…f54fb0 | 1 hr agoTue, 18 Aug 2026 06:01:51 UTC | Transfer | [0] 0x000000000000…1dc849fb [1] 0x000000000000…ec4fff4f data: 0x000000000000000000…96facc00 |
| 0x4d86ed…4613ee | 1 hr agoTue, 18 Aug 2026 06:01:38 UTC | Approval | [0] 0x000000000000…1dc849fb [1] 0x000000000000…f1c315be data: 0x000000000000000000…96facc00 |
| 0x0c3428…e362ae | 1 hr agoTue, 18 Aug 2026 05:56:03 UTC | Transfer | [0] 0x000000000000…ec4fff4f [1] 0x000000000000…cb9044dc data: 0x000000000000000000…97c3557a |
| 0x0c3428…e362ae | 1 hr agoTue, 18 Aug 2026 05:56:03 UTC | Transfer | [0] 0x000000000000…d113f996 [1] 0x000000000000…ec4fff4f data: 0x000000000000000000…97c3557a |
| 0x0c3428…e362ae | 1 hr agoTue, 18 Aug 2026 05:56:03 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…d113f996 data: 0x000000000000000000…97c3557a |
| 0x8bd3d8…b9f30b | 1 hr agoTue, 18 Aug 2026 05:53:34 UTC | Transfer | [0] 0x000000000000…ec4fff4f [1] 0x000000000000…43128337 data: 0x000000000000000000…8c81bde8 |
| 0x8bd3d8…b9f30b | 1 hr agoTue, 18 Aug 2026 05:53:34 UTC | Transfer | [0] 0x000000000000…20cbbe5f [1] 0x000000000000…ec4fff4f data: 0x000000000000000000…8c81bde8 |
| 0x8bd3d8…b9f30b | 1 hr agoTue, 18 Aug 2026 05:53:34 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…20cbbe5f data: 0x000000000000000000…8c81bde8 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x7aa78841…e7b455 | Transfer | 39,470,197 | 1 hr agoTue, 18 Aug 2026 06:07:02 UTC | 0x1673…13db | IN | 0x9727…5065 | 15 SPRD | SpreadFrog (SPRD) | |
| 0x978987e0…174741 | Transfer | 35,640,195 | 4 days agoThu, 13 Aug 2026 19:25:36 UTC | 0xcb85…9908 | IN | 0x9727…5065 | 14 MANCER | Mancer (MANCER) | |
| 0x96188ac9…6242b6 | Transfer | 34,683,927 | 5 days agoWed, 12 Aug 2026 16:47:54 UTC | 0xcb85…9908 | IN | 0x9727…5065 | 5 PUNK | Retail Punk (PUNK) | |
| 0x842efc79…ec2ce1 | Transfer | 34,129,538 | 6 days agoWed, 12 Aug 2026 01:26:05 UTC | 0xc7a7…cec7 | IN | 0x9727…5065 | 30 Lenny | Lenny (Lenny) | |
| 0xe8a7e9c9…fe359d | Transfer | 33,356,697 | 7 days agoTue, 11 Aug 2026 03:59:43 UTC | 0xcb85…9908 | IN | 0x9727…5065 | 5 ULU | Up Level Usdg (ULU) | |
| 0x0cd19264…b8129b | Transfer | 28,283,800 | 13 days agoWed, 05 Aug 2026 06:50:51 UTC | 0x0f32…717e | IN | 0x9727…5065 | 50 VANTA | Project Vanta (VANTA) | |
| 0xc7603e81…b5077c | Transfer | 28,061,935 | 13 days agoWed, 05 Aug 2026 00:40:04 UTC | 0x2757…221a | IN | 0x9727…5065 | 5 IF | What If (IF) | |
| 0xa295fa32…134ff0 | Transfer | 27,294,984 | 14 days agoTue, 04 Aug 2026 03:17:59 UTC | 0x1673…13db | IN | 0x9727…5065 | 15 APES | Apes Together Strong (APES) | |
| 0xaf1c8f30…dd3f71 | Transfer | 25,404,214 | 16 days agoSat, 01 Aug 2026 22:38:32 UTC | 0x2757…221a | IN | 0x9727…5065 | 30 catcall | catcall (catcall) | |
| 0x4ce34736…d31222 | Transfer | 24,437,755 | 17 days agoFri, 31 Jul 2026 19:43:09 UTC | 0xc7a7…cec7 | IN | 0x9727…5065 | 50.279 MEMECAT | memecat (MEMECAT) | |
| 0x1b0cb3cd…66edac | Transfer | 22,436,339 | 19 days agoWed, 29 Jul 2026 11:59:37 UTC | 0x3cc1…2245 | IN | 0x9727…5065 | 0.000000 ViralHOOD | ViralHOOD (ViralHOOD) | |
| 0xefd97aa5…183874 | Transfer | 20,111,762 | 22 days agoSun, 26 Jul 2026 19:10:59 UTC | 0x8a40…741e | IN | 0x9727…5065 | 4,042,520,544 ANSEMDOG | Ansem Dog (ANSEMDOG) | |
| 0x3c6789d4…38adde | Transfer | 17,492,076 | 25 days agoThu, 23 Jul 2026 18:10:12 UTC | 0x567b…cc36 | IN | 0x9727…5065 | 110,510,331 ANSEMDOG | Ansem Dog (ANSEMDOG) | |
| 0x261e111c…4394d2 | Transfer | 17,337,975 | 25 days agoThu, 23 Jul 2026 13:52:52 UTC | 0xcaf7…5d11 | IN | 0x9727…5065 | $0.001 DIH | ||
| 0xfaef9877…762ee6 | Transfer | 17,296,655 | 25 days agoThu, 23 Jul 2026 12:43:52 UTC | 0xcaf7…5d11 | IN | 0x9727…5065 | $0.001 DIH | ||
| 0xedaae569…a9d059 | Transfer | 16,627,187 | 26 days agoWed, 22 Jul 2026 18:05:13 UTC | 0x0130…a8c3 | IN | 0x9727…5065 | 3,786,210,000,000.000196 BABYANSEMCAT | Baby Ansem Cat (BABYANSEMCAT) | |
| 0xee572828…181292 | Transfer | 14,595,188 | 28 days agoMon, 20 Jul 2026 09:31:11 UTC | 0xaa7f…ddf9 | IN | 0x9727…5065 | 7 CAT | Black Cat (CAT) |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x4d86ed…4613ee | Approve | 39,466,961 | 1 hr agoTue, 18 Aug 2026 06:01:38 UTC | 0xb974…49fb | IN | Ansem Cat | $0.000 ETH | 0.00000060 | |
| 0xd43601…066645 | Approve | 39,241,621 | 7 hrs agoMon, 17 Aug 2026 23:44:55 UTC | 0x270d…21f1 | IN | Ansem Cat | $0.000 ETH | 0.00000096 | |
| 0x3f0357…5d6937 | Approve | 39,123,127 | 10 hrs agoMon, 17 Aug 2026 20:26:59 UTC | 0x9259…287e | IN | Ansem Cat | $0.000 ETH | 0.00000094 | |
| 0x81f39e…5f1278 | Approve | 38,976,364 | 15 hrs agoMon, 17 Aug 2026 16:21:41 UTC | 0x2ab5…4034 | IN | Ansem Cat | $0.000 ETH | 0.00000094 | |
| 0xee09cc…e41691 | Transfer | 38,976,182 | 15 hrs agoMon, 17 Aug 2026 16:21:22 UTC | 0xb3da…319b | IN | Ansem Cat | $0.000 ETH | 0.00000096 | |
| 0x0ab85a…9db98c | Approve | 38,975,781 | 15 hrs agoMon, 17 Aug 2026 16:20:42 UTC | 0x0c70…28f9 | IN | Ansem Cat | $0.000 ETH | 0.00000095 | |
| 0x5fa540…b96854 | Transfer | 38,975,591 | 15 hrs agoMon, 17 Aug 2026 16:20:23 UTC | 0x1b59…fe2b | IN | Ansem Cat | $0.000 ETH | 0.00000095 | |
| 0xd20590…4023b4 | Approve | 38,975,198 | 15 hrs agoMon, 17 Aug 2026 16:19:44 UTC | 0x3cb2…f255 | IN | Ansem Cat | $0.000 ETH | 0.00000096 | |
| 0x00e19a…887f18 | Transfer | 38,975,005 | 15 hrs agoMon, 17 Aug 2026 16:19:24 UTC | 0x4907…2b30 | IN | Ansem Cat | $0.000 ETH | 0.00000095 | |
| 0x99c005…badba7 | Approve | 38,974,606 | 15 hrs agoMon, 17 Aug 2026 16:18:44 UTC | 0x76c1…aceb | IN | Ansem Cat | $0.000 ETH | 0.00000095 | |
| 0xb5aa1d…864059 | Transfer | 38,974,418 | 15 hrs agoMon, 17 Aug 2026 16:18:25 UTC | 0x7537…dd43 | IN | Ansem Cat | $0.000 ETH | 0.00000096 | |
| 0x87edbe…36e266 | Approve | 38,974,024 | 15 hrs agoMon, 17 Aug 2026 16:17:45 UTC | 0xd8c6…7fe3 | IN | Ansem Cat | $0.000 ETH | 0.00000095 | |
| 0xda8d34…f07120 | Transfer | 38,973,836 | 15 hrs agoMon, 17 Aug 2026 16:17:27 UTC | 0xf09a…559a | IN | Ansem Cat | $0.000 ETH | 0.00000096 | |
| 0x2350dd…bbd4cb | Approve | 38,973,423 | 15 hrs agoMon, 17 Aug 2026 16:16:45 UTC | 0x4df5…856d | IN | Ansem Cat | $0.000 ETH | 0.00000094 | |
| 0xc5a79f…76ab35 | Transfer | 38,973,210 | 15 hrs agoMon, 17 Aug 2026 16:16:26 UTC | 0x73f4…3225 | IN | Ansem Cat | $0.000 ETH | 0.00000098 | |
| 0xde1a02…60e715 | Approve | 38,972,804 | 15 hrs agoMon, 17 Aug 2026 16:15:45 UTC | 0x3de9…841f | IN | Ansem Cat | $0.000 ETH | 0.00000096 | |
| 0x902520…2a18cd | Transfer | 38,972,620 | 15 hrs agoMon, 17 Aug 2026 16:15:26 UTC | 0x6ed4…f99d | IN | Ansem Cat | $0.000 ETH | 0.00000098 | |
| 0x24496b…1f666b | Approve | 38,972,224 | 15 hrs agoMon, 17 Aug 2026 16:14:46 UTC | 0x7bb1…f334 | IN | Ansem Cat | $0.000 ETH | 0.00000098 | |
| 0x2a4090…e81fe7 | Transfer | 38,972,037 | 15 hrs agoMon, 17 Aug 2026 16:14:28 UTC | 0xe41a…5bcb | IN | Ansem Cat | $0.000 ETH | 0.00000100 | |
| 0xfc1871…a1c939 | Approve | 38,971,626 | 15 hrs agoMon, 17 Aug 2026 16:13:46 UTC | 0x46f9…0df5 | IN | Ansem Cat | $0.000 ETH | 0.00000097 | |
| 0xc31721…4cca07 | Transfer | 38,971,436 | 15 hrs agoMon, 17 Aug 2026 16:13:27 UTC | 0x4df1…b741 | IN | Ansem Cat | $0.000 ETH | 0.00000098 | |
| 0x90f6f3…238cc7 | Approve | 38,971,028 | 15 hrs agoMon, 17 Aug 2026 16:12:46 UTC | 0xa2d8…5307 | IN | Ansem Cat | $0.000 ETH | 0.00000096 | |
| 0x7f38b7…06bfd7 | Transfer | 38,970,838 | 15 hrs agoMon, 17 Aug 2026 16:12:27 UTC | 0x6983…ed42 | IN | Ansem Cat | $0.000 ETH | 0.00000097 | |
| 0x7caa8d…1caab6 | Approve | 38,970,423 | 15 hrs agoMon, 17 Aug 2026 16:11:45 UTC | 0x58d6…b24d | IN | Ansem Cat | $0.000 ETH | 0.00000097 | |
| 0xa84d03…5d5157 | Transfer | 38,970,201 | 15 hrs agoMon, 17 Aug 2026 16:11:23 UTC | 0xa3ca…3ec2 | IN | Ansem Cat | $0.000 ETH | 0.00000097 |