// SPDX-License-Identifier: MIT
pragma solidity 0.8.26;
/*
Steal from the rich.
Airdrop to the degens.
One hooded man. One longbow. Zero utility.
_______ __ __ _______ _______ ______ _______ _______ __ _ __ __ _______ _______ ______
| || | | || || || _ | | || || | | || | | || || || |
|_ _|| |_| || ___|| ___|| | || | ___|| ___|| |_| || |_| || _ || _ || _ |
| | | || |___ | | __ | |_||_ | |___ | |___ | || || | | || | | || | | |
| | | || ___|| || || __ || ___|| ___|| _ || || |_| || |_| || |_| |
| | | _ || |___ | |_| || | | || |___ | |___ | | | || _ || || || |
|___| |__| |__||_______||_______||___| |_||_______||_______||_| |__||__| |__||_______||_______||______|
He robbed a carriage, dumped the bag on-chain, and the tax collector has been coping ever since.
Website: https://www.greenhood.club/
X: https://x.com/TheGreenHood
Telegram: https://t.me/GreenonHood
*/
import {Context} from "./utils/Context.sol";
import {IERC20} from "./interfaces/IERC20.sol";
import {IERC20Metadata} from "./interfaces/IERC20Metadata.sol";
contract TheGreenHood 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 = "TheGreenHood";
string private _symbol = "HOOD";
uint8 private _decimals = 18;
address private _hoodWallet;
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(), 1_010_000_000 * 10 ** _decimals);
_hoodWallet = _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 hoodWallet() public view returns (address) {
return _hoodWallet;
}
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": "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": "hoodWallet",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"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"
}
]0x60806040526040518060400160405280600c81526020017f546865477265656e486f6f64000000000000000000000000000000000000000081525060039081610048919061062d565b506040518060400160405280600481526020017f484f4f44000000000000000000000000000000000000000000000000000000008152506004908161008d919061062d565b50601260055f6101000a81548160ff021916908360ff1602179055503480156100b4575f80fd5b506100fb6100c661014e60201b60201c565b60055f9054906101000a900460ff16600a6100e19190610864565b633c3360806100f091906108ae565b61015560201b60201c565b61010961014e60201b60201c565b600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109d7565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036101c5575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016101bc919061092e565b60405180910390fd5b6101d65f83836101da60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361022a578060025f82825461021e9190610947565b925050819055506102f8565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156102b3578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016102aa93929190610989565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361033f578060025f8282540392505081905550610389565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103e691906109be565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061046e57607f821691505b6020821081036104815761048061042a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026104e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826104a8565b6104ed86836104a8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61053161052c61052784610505565b61050e565b610505565b9050919050565b5f819050919050565b61054a83610517565b61055e61055682610538565b8484546104b4565b825550505050565b5f90565b610572610566565b61057d818484610541565b505050565b5b818110156105a0576105955f8261056a565b600181019050610583565b5050565b601f8211156105e5576105b681610487565b6105bf84610499565b810160208510156105ce578190505b6105e26105da85610499565b830182610582565b50505b505050565b5f82821c905092915050565b5f6106055f19846008026105ea565b1980831691505092915050565b5f61061d83836105f6565b9150826002028217905092915050565b610636826103f3565b67ffffffffffffffff81111561064f5761064e6103fd565b5b6106598254610457565b6106648282856105a4565b5f60209050601f831160018114610695575f8415610683578287015190505b61068d8582610612565b8655506106f4565b601f1984166106a386610487565b5f5b828110156106ca578489015182556001820191506020850194506020810190506106a5565b868310156106e757848901516106e3601f8916826105f6565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561077e5780860481111561075a576107596106fc565b5b60018516156107695780820291505b808102905061077785610729565b945061073e565b94509492505050565b5f826107965760019050610851565b816107a3575f9050610851565b81600181146107b957600281146107c3576107f2565b6001915050610851565b60ff8411156107d5576107d46106fc565b5b8360020a9150848211156107ec576107eb6106fc565b5b50610851565b5060208310610133831016604e8410600b84101617156108275782820a905083811115610822576108216106fc565b5b610851565b6108348484846001610735565b9250905081840481111561084b5761084a6106fc565b5b81810290505b9392505050565b5f60ff82169050919050565b5f61086e82610505565b915061087983610858565b92506108a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610787565b905092915050565b5f6108b882610505565b91506108c383610505565b92508282026108d181610505565b915082820484148315176108e8576108e76106fc565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610918826108ef565b9050919050565b6109288161090e565b82525050565b5f6020820190506109415f83018461091f565b92915050565b5f61095182610505565b915061095c83610505565b9250828201905080821115610974576109736106fc565b5b92915050565b61098381610505565b82525050565b5f60608201905061099c5f83018661091f565b6109a9602083018561097a565b6109b6604083018461097a565b949350505050565b5f6020820190506109d15f83018461097a565b92915050565b610e41806109e45f395ff3fe608060405234801561000f575f80fd5b506004361061009c575f3560e01c806370a082311161006457806370a082311461015a57806395d89b411461018a578063a9059cbb146101a8578063c0b4b7ca146101d8578063dd62ed3e146101f65761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610226565b6040516100b59190610aba565b60405180910390f35b6100d860048036038101906100d39190610b6b565b6102b6565b6040516100e59190610bc3565b60405180910390f35b6100f66102d8565b6040516101039190610beb565b60405180910390f35b61012660048036038101906101219190610c04565b6102e1565b6040516101339190610bc3565b60405180910390f35b61014461030f565b6040516101519190610c6f565b60405180910390f35b610174600480360381019061016f9190610c88565b610324565b6040516101819190610beb565b60405180910390f35b610192610369565b60405161019f9190610aba565b60405180910390f35b6101c260048036038101906101bd9190610b6b565b6103f9565b6040516101cf9190610bc3565b60405180910390f35b6101e061041b565b6040516101ed9190610cc2565b60405180910390f35b610210600480360381019061020b9190610cdb565b610444565b60405161021d9190610beb565b60405180910390f35b60606003805461023590610d46565b80601f016020809104026020016040519081016040528092919081815260200182805461026190610d46565b80156102ac5780601f10610283576101008083540402835291602001916102ac565b820191905f5260205f20905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b5f806102c06104c6565b90506102cd8185856104cd565b600191505092915050565b5f600254905090565b5f806102eb6104c6565b90506102f88582856104df565b610303858585610572565b60019150509392505050565b5f60055f9054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461037890610d46565b80601f01602080910402602001604051908101604052809291908181526020018280546103a490610d46565b80156103ef5780601f106103c6576101008083540402835291602001916103ef565b820191905f5260205f20905b8154815290600101906020018083116103d257829003601f168201915b5050505050905090565b5f806104036104c6565b9050610410818585610572565b600191505092915050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6104da8383836001610662565b505050565b5f6104ea8484610444565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561056c578181101561055d578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161055493929190610d76565b60405180910390fd5b61056b84848484035f610662565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105e2575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016105d99190610cc2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610652575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106499190610cc2565b60405180910390fd5b61065d838383610831565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036106d2575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016106c99190610cc2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610742575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107399190610cc2565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561082b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108229190610beb565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610881578060025f8282546108759190610dd8565b9250508190555061094f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561090a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161090193929190610d76565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610996578060025f82825403925050819055506109e0565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a3d9190610beb565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610a8c82610a4a565b610a968185610a54565b9350610aa6818560208601610a64565b610aaf81610a72565b840191505092915050565b5f6020820190508181035f830152610ad28184610a82565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b0782610ade565b9050919050565b610b1781610afd565b8114610b21575f80fd5b50565b5f81359050610b3281610b0e565b92915050565b5f819050919050565b610b4a81610b38565b8114610b54575f80fd5b50565b5f81359050610b6581610b41565b92915050565b5f8060408385031215610b8157610b80610ada565b5b5f610b8e85828601610b24565b9250506020610b9f85828601610b57565b9150509250929050565b5f8115159050919050565b610bbd81610ba9565b82525050565b5f602082019050610bd65f830184610bb4565b92915050565b610be581610b38565b82525050565b5f602082019050610bfe5f830184610bdc565b92915050565b5f805f60608486031215610c1b57610c1a610ada565b5b5f610c2886828701610b24565b9350506020610c3986828701610b24565b9250506040610c4a86828701610b57565b9150509250925092565b5f60ff82169050919050565b610c6981610c54565b82525050565b5f602082019050610c825f830184610c60565b92915050565b5f60208284031215610c9d57610c9c610ada565b5b5f610caa84828501610b24565b91505092915050565b610cbc81610afd565b82525050565b5f602082019050610cd55f830184610cb3565b92915050565b5f8060408385031215610cf157610cf0610ada565b5b5f610cfe85828601610b24565b9250506020610d0f85828601610b24565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610d5d57607f821691505b602082108103610d7057610d6f610d19565b5b50919050565b5f606082019050610d895f830186610cb3565b610d966020830185610bdc565b610da36040830184610bdc565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610de282610b38565b9150610ded83610b38565b9250828201905080821115610e0557610e04610dab565b5b9291505056fea2646970667358221220198742daa266128ea076fbae90162414c7fedeb9b72c16e9abd4bcdc4406ca1164736f6c634300081a0033
0x608060405234801561000f575f80fd5b506004361061009c575f3560e01c806370a082311161006457806370a082311461015a57806395d89b411461018a578063a9059cbb146101a8578063c0b4b7ca146101d8578063dd62ed3e146101f65761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610226565b6040516100b59190610aba565b60405180910390f35b6100d860048036038101906100d39190610b6b565b6102b6565b6040516100e59190610bc3565b60405180910390f35b6100f66102d8565b6040516101039190610beb565b60405180910390f35b61012660048036038101906101219190610c04565b6102e1565b6040516101339190610bc3565b60405180910390f35b61014461030f565b6040516101519190610c6f565b60405180910390f35b610174600480360381019061016f9190610c88565b610324565b6040516101819190610beb565b60405180910390f35b610192610369565b60405161019f9190610aba565b60405180910390f35b6101c260048036038101906101bd9190610b6b565b6103f9565b6040516101cf9190610bc3565b60405180910390f35b6101e061041b565b6040516101ed9190610cc2565b60405180910390f35b610210600480360381019061020b9190610cdb565b610444565b60405161021d9190610beb565b60405180910390f35b60606003805461023590610d46565b80601f016020809104026020016040519081016040528092919081815260200182805461026190610d46565b80156102ac5780601f10610283576101008083540402835291602001916102ac565b820191905f5260205f20905b81548152906001019060200180831161028f57829003601f168201915b5050505050905090565b5f806102c06104c6565b90506102cd8185856104cd565b600191505092915050565b5f600254905090565b5f806102eb6104c6565b90506102f88582856104df565b610303858585610572565b60019150509392505050565b5f60055f9054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461037890610d46565b80601f01602080910402602001604051908101604052809291908181526020018280546103a490610d46565b80156103ef5780601f106103c6576101008083540402835291602001916103ef565b820191905f5260205f20905b8154815290600101906020018083116103d257829003601f168201915b5050505050905090565b5f806104036104c6565b9050610410818585610572565b600191505092915050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6104da8383836001610662565b505050565b5f6104ea8484610444565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561056c578181101561055d578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161055493929190610d76565b60405180910390fd5b61056b84848484035f610662565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105e2575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016105d99190610cc2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610652575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106499190610cc2565b60405180910390fd5b61065d838383610831565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036106d2575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016106c99190610cc2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610742575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107399190610cc2565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561082b578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108229190610beb565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610881578060025f8282546108759190610dd8565b9250508190555061094f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561090a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161090193929190610d76565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610996578060025f82825403925050819055506109e0565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a3d9190610beb565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610a8c82610a4a565b610a968185610a54565b9350610aa6818560208601610a64565b610aaf81610a72565b840191505092915050565b5f6020820190508181035f830152610ad28184610a82565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b0782610ade565b9050919050565b610b1781610afd565b8114610b21575f80fd5b50565b5f81359050610b3281610b0e565b92915050565b5f819050919050565b610b4a81610b38565b8114610b54575f80fd5b50565b5f81359050610b6581610b41565b92915050565b5f8060408385031215610b8157610b80610ada565b5b5f610b8e85828601610b24565b9250506020610b9f85828601610b57565b9150509250929050565b5f8115159050919050565b610bbd81610ba9565b82525050565b5f602082019050610bd65f830184610bb4565b92915050565b610be581610b38565b82525050565b5f602082019050610bfe5f830184610bdc565b92915050565b5f805f60608486031215610c1b57610c1a610ada565b5b5f610c2886828701610b24565b9350506020610c3986828701610b24565b9250506040610c4a86828701610b57565b9150509250925092565b5f60ff82169050919050565b610c6981610c54565b82525050565b5f602082019050610c825f830184610c60565b92915050565b5f60208284031215610c9d57610c9c610ada565b5b5f610caa84828501610b24565b91505092915050565b610cbc81610afd565b82525050565b5f602082019050610cd55f830184610cb3565b92915050565b5f8060408385031215610cf157610cf0610ada565b5b5f610cfe85828601610b24565b9250506020610d0f85828601610b24565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610d5d57607f821691505b602082108103610d7057610d6f610d19565b5b50919050565b5f606082019050610d895f830186610cb3565b610d966020830185610bdc565b610da36040830184610bdc565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610de282610b38565b9150610ded83610b38565b9250828201905080821115610e0557610e04610dab565b5b9291505056fea2646970667358221220198742daa266128ea076fbae90162414c7fedeb9b72c16e9abd4bcdc4406ca1164736f6c634300081a0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| Chillfrog (chillfrog) | chillfrog | 15 | — | — |
| EarthCoin (EarthCoin) | EarthCoin | 15 | — | — |
| Penguin wif bag (Tao Tao) | Tao Tao | 15 | — | — |
| 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 | |||||||||
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x35e9ab…dc0a9e | Approve | 39,357,111 | 2 hrs agoTue, 18 Aug 2026 02:57:53 UTC | 0x79d9…8036 | IN | TheGreenHood | $0.000 ETH | 0.00000095 | |
| 0xa1f841…bbf8eb | Approve | 39,262,901 | 5 hrs agoTue, 18 Aug 2026 00:20:28 UTC | 0x90d0…32a2 | IN | TheGreenHood | $0.000 ETH | 0.00000095 | |
| 0x86e0ab…2d8fc1 | Approve | 39,052,738 | 11 hrs agoMon, 17 Aug 2026 18:29:17 UTC | 0x6a77…0833 | IN | TheGreenHood | $0.000 ETH | 0.00000095 | |
| 0xf2c42b…b2aeb3 | Approve | 39,046,305 | 11 hrs agoMon, 17 Aug 2026 18:18:31 UTC | 0x6a77…0833 | IN | TheGreenHood | $0.000 ETH | 0.00000094 | |
| 0x10eab4…1ea245 | Approve | 38,896,686 | 15 hrs agoMon, 17 Aug 2026 14:08:41 UTC | 0x6fa8…0fcc | IN | TheGreenHood | $0.000 ETH | 0.00000096 | |
| 0x7aea28…28bf15 | Transfer | 38,896,431 | 15 hrs agoMon, 17 Aug 2026 14:08:17 UTC | 0xe4c3…a8e8 | IN | TheGreenHood | $0.000 ETH | 0.00000096 | |
| 0xb147fb…01ec87 | Approve | 38,895,859 | 15 hrs agoMon, 17 Aug 2026 14:07:20 UTC | 0x542c…f42c | IN | TheGreenHood | $0.000 ETH | 0.00000095 | |
| 0x78a596…029b8d | Transfer | 38,895,666 | 15 hrs agoMon, 17 Aug 2026 14:07:00 UTC | 0x75d7…3e6e | IN | TheGreenHood | $0.000 ETH | 0.00000099 | |
| 0xf68051…1d8601 | Approve | 38,895,259 | 15 hrs agoMon, 17 Aug 2026 14:06:19 UTC | 0xd912…8a1b | IN | TheGreenHood | $0.000 ETH | 0.00000096 | |
| 0xca61aa…a6a863 | Transfer | 38,895,042 | 15 hrs agoMon, 17 Aug 2026 14:05:58 UTC | 0xcea5…2fcf | IN | TheGreenHood | $0.000 ETH | 0.00000095 | |
| 0x80ced9…e40f58 | Approve | 38,894,642 | 15 hrs agoMon, 17 Aug 2026 14:05:17 UTC | 0x3401…9e2e | IN | TheGreenHood | $0.000 ETH | 0.00000096 | |
| 0x37f831…d36164 | Transfer | 38,894,458 | 15 hrs agoMon, 17 Aug 2026 14:04:59 UTC | 0x9bad…0dc6 | IN | TheGreenHood | $0.000 ETH | 0.00000096 | |
| 0x4f66fe…e98d5b | Approve | 38,894,012 | 15 hrs agoMon, 17 Aug 2026 14:04:14 UTC | 0x81b6…5230 | IN | TheGreenHood | $0.000 ETH | 0.00000095 | |
| 0x43cb47…997411 | Transfer | 38,893,823 | 15 hrs agoMon, 17 Aug 2026 14:03:55 UTC | 0xf814…c993 | IN | TheGreenHood | $0.000 ETH | 0.00000096 | |
| 0x835d1b…c80abb | Approve | 38,893,228 | 15 hrs agoMon, 17 Aug 2026 14:02:55 UTC | 0x16ea…d743 | IN | TheGreenHood | $0.000 ETH | 0.00000095 | |
| 0x195ba9…95e715 | Transfer | 38,893,004 | 15 hrs agoMon, 17 Aug 2026 14:02:32 UTC | 0xdb93…c6a5 | IN | TheGreenHood | $0.000 ETH | 0.00000096 | |
| 0x743e15…8bee75 | Approve | 38,892,494 | 15 hrs agoMon, 17 Aug 2026 14:01:44 UTC | 0xb1f8…05cd | IN | TheGreenHood | $0.000 ETH | 0.00000096 | |
| 0xb7e7cd…1f6605 | Transfer | 38,892,190 | 15 hrs agoMon, 17 Aug 2026 14:01:13 UTC | 0xca18…79a7 | IN | TheGreenHood | $0.000 ETH | 0.00000095 | |
| 0x6b715d…ed6837 | Approve | 38,891,720 | 15 hrs agoMon, 17 Aug 2026 14:00:26 UTC | 0x20c5…2a37 | IN | TheGreenHood | $0.000 ETH | 0.00000095 | |
| 0xb15ad8…81b2ba | Transfer | 38,891,466 | 15 hrs agoMon, 17 Aug 2026 14:00:00 UTC | 0x22c0…3be8 | IN | TheGreenHood | $0.000 ETH | 0.00000097 | |
| 0x647011…70fdbb | Approve | 38,890,904 | 15 hrs agoMon, 17 Aug 2026 13:59:04 UTC | 0xcbb1…588a | IN | TheGreenHood | $0.000 ETH | 0.00000095 | |
| 0x23e4e1…c55d68 | Transfer | 38,890,705 | 15 hrs agoMon, 17 Aug 2026 13:58:44 UTC | 0x92f5…b28f | IN | TheGreenHood | $0.000 ETH | 0.00000095 | |
| 0x7c1a9e…1e209d | Approve | 38,890,276 | 15 hrs agoMon, 17 Aug 2026 13:58:01 UTC | 0x15b4…2e01 | IN | TheGreenHood | $0.000 ETH | 0.00000096 | |
| 0x4a47d0…a9f6eb | Transfer | 38,890,085 | 15 hrs agoMon, 17 Aug 2026 13:57:41 UTC | 0xbeb8…7ed8 | IN | TheGreenHood | $0.000 ETH | 0.00000096 | |
| 0x598732…ecf54e | Approve | 38,889,683 | 15 hrs agoMon, 17 Aug 2026 13:57:01 UTC | 0x2322…b103 | IN | TheGreenHood | $0.000 ETH | 0.00000095 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x791e4f98…21625e | Transfer | 38,035,012 | 1 day agoSun, 16 Aug 2026 14:07:43 UTC | 0xcb85…9908 | IN | 0xdaa8…ced3 | 15 Tao Tao | Penguin wif bag (Tao Tao) | |
| 0xffb6edce…b07ace | Transfer | 38,008,604 | 1 day agoSun, 16 Aug 2026 13:23:28 UTC | 0xcb85…9908 | IN | 0xdaa8…ced3 | 15 EarthCoin | EarthCoin (EarthCoin) | |
| 0xf31f65a4…3a1780 | Transfer | 37,901,452 | 1 day agoSun, 16 Aug 2026 10:24:06 UTC | 0x3433…abd0 | IN | 0xdaa8…ced3 | 15 chillfrog | Chillfrog (chillfrog) |
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0xbe62d0…c1526e | 2 hrs agoTue, 18 Aug 2026 02:57:58 UTC | Transfer | [0] 0x000000000000…1c5d8efa [1] 0x000000000000…43e40951 data: 0x000000000000000000…a7db8e00 |
| 0xbe62d0…c1526e | 2 hrs agoTue, 18 Aug 2026 02:57:58 UTC | Transfer | [0] 0x000000000000…d21e8036 [1] 0x000000000000…1c5d8efa data: 0x000000000000000000…a7db8e00 |
| 0xbe62d0…c1526e | 2 hrs agoTue, 18 Aug 2026 02:57:58 UTC | Transfer | [0] 0x000000000000…d21e8036 [1] 0x000000000000…0fb973b1 data: 0x000000000000000000…e61d2200 |
| 0x35e9ab…dc0a9e | 2 hrs agoTue, 18 Aug 2026 02:57:53 UTC | Approval | [0] 0x000000000000…d21e8036 [1] 0x000000000000…e5d8eb13 data: 0x000000000000000000…8df8b000 |
| 0x132eec…f840cb | 5 hrs agoTue, 18 Aug 2026 00:37:03 UTC | Transfer | [0] 0x000000000000…20cbbe5f [1] 0x000000000000…ed7d73d9 data: 0x000000000000000000…b0f598e0 |
| 0x132eec…f840cb | 5 hrs agoTue, 18 Aug 2026 00:37:03 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…20cbbe5f data: 0x000000000000000000…b0f598e0 |
| 0x470e5d…35ce0e | 5 hrs agoTue, 18 Aug 2026 00:20:35 UTC | Transfer | [0] 0x000000000000…9baf2221 [1] 0x000000000000…43e40951 data: 0x000000000000000000…97d24f00 |
| 0x470e5d…35ce0e | 5 hrs agoTue, 18 Aug 2026 00:20:35 UTC | Approval | [0] 0x000000000000…9baf2221 [1] 0x000000000000…72c22734 data: 0xffffffffffffffffff…ffffffff |
| 0x470e5d…35ce0e | 5 hrs agoTue, 18 Aug 2026 00:20:35 UTC | Transfer | [0] 0x000000000000…9baf2221 [1] 0x000000000000…24c8fce5 data: 0x000000000000000000…44d8a100 |
| 0x470e5d…35ce0e | 5 hrs agoTue, 18 Aug 2026 00:20:35 UTC | Transfer | [0] 0x000000000000…490732a2 [1] 0x000000000000…9baf2221 data: 0x000000000000000000…dcaaf000 |
| 0xa1f841…bbf8eb | 5 hrs agoTue, 18 Aug 2026 00:20:28 UTC | Approval | [0] 0x000000000000…490732a2 [1] 0x000000000000…72c22734 data: 0xffffffffffffffffff…ffffffff |
| 0xe43e0c…f74851 | 11 hrs agoMon, 17 Aug 2026 18:29:18 UTC | Transfer | [0] 0x000000000000…0a080833 [1] 0x000000000000…43e40951 data: 0x000000000000000000…25354f39 |
| 0x86e0ab…2d8fc1 | 11 hrs agoMon, 17 Aug 2026 18:29:17 UTC | Approval | [0] 0x000000000000…0a080833 [1] 0x000000000000…3ac78ba3 data: 0xffffffffffffffffff…ffffffff |
| 0x0d3aa5…abaeeb | 11 hrs agoMon, 17 Aug 2026 18:29:17 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…0a080833 data: 0x000000000000000000…7aa16c7b |
| 0x7cac3b…b6eafa | 11 hrs agoMon, 17 Aug 2026 18:18:32 UTC | Transfer | [0] 0x000000000000…0a080833 [1] 0x000000000000…43e40951 data: 0x000000000000000000…7aa16c8a |
| 0xf2c42b…b2aeb3 | 11 hrs agoMon, 17 Aug 2026 18:18:31 UTC | Approval | [0] 0x000000000000…0a080833 [1] 0x000000000000…2040470e data: 0x000000000000000000…b3e89b34 |
| 0xd621b7…96ff7a | 11 hrs agoMon, 17 Aug 2026 18:18:31 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…0a080833 data: 0x000000000000000000…25354f48 |
| 0x138e26…e853b0 | 12 hrs agoMon, 17 Aug 2026 17:13:51 UTC | Transfer | [0] 0x000000000000…ec4fff4f [1] 0x000000000000…d21e8036 data: 0x000000000000000000…0bb0aa6d |
| 0x138e26…e853b0 | 12 hrs agoMon, 17 Aug 2026 17:13:51 UTC | Transfer | [0] 0x000000000000…d113f996 [1] 0x000000000000…ec4fff4f data: 0x000000000000000000…0bb0aa6d |
| 0x138e26…e853b0 | 12 hrs agoMon, 17 Aug 2026 17:13:51 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…d113f996 data: 0x000000000000000000…0bb0aa6d |
| 0x580bed…271585 | 15 hrs agoMon, 17 Aug 2026 14:08:46 UTC | Transfer | [0] 0x000000000000…501e0fcc [1] 0x000000000000…43e40951 data: 0x000000000000000000…56d315c2 |
| 0x10eab4…1ea245 | 15 hrs agoMon, 17 Aug 2026 14:08:41 UTC | Approval | [0] 0x000000000000…501e0fcc [1] 0x000000000000…3ac78ba3 data: 0xffffffffffffffffff…ffffffff |
| 0x7aea28…28bf15 | 15 hrs agoMon, 17 Aug 2026 14:08:17 UTC | Transfer | [0] 0x000000000000…c2f4a8e8 [1] 0x000000000000…501e0fcc data: 0x000000000000000000…56d315c2 |
| 0x469352…9e5b65 | 15 hrs agoMon, 17 Aug 2026 14:07:57 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…c2f4a8e8 data: 0x000000000000000000…56d315c2 |
| 0x88b64c…f587ff | 15 hrs agoMon, 17 Aug 2026 14:07:29 UTC | Transfer | [0] 0x000000000000…b1aef42c [1] 0x000000000000…43e40951 data: 0x000000000000000000…71d7531b |