// SPDX-License-Identifier: MIT
pragma solidity 0.8.26;
/// @title CleanERC20 — a plain, fixed-supply ERC20 with nothing hidden.
///
/// What this contract can and cannot do, so a buyer reading the verified source
/// can trust it at a glance:
/// • Entire supply is minted ONCE to the deployer in the constructor.
/// • There is NO mint function — supply can never increase.
/// • There is NO transfer tax, fee, blacklist, max-wallet, max-tx, cooldown,
/// pause, or trading switch. Transfers are always open and 1:1.
/// • The owner has EXACTLY ONE power: renounceOwnership() / transferOwnership().
/// The owner cannot touch balances, cannot mint, cannot freeze anyone.
/// • Renouncing sets the owner to the zero address, on-chain and irreversible.
contract CleanERC20 {
string public name;
string public symbol;
uint8 public immutable decimals;
uint256 public totalSupply;
address public owner;
mapping(address => uint256) public balanceOf;
mapping(address => mapping(address => uint256)) public allowance;
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
error NotOwner();
error ZeroAddress();
error InsufficientBalance();
error InsufficientAllowance();
modifier onlyOwner() {
if (msg.sender != owner) revert NotOwner();
_;
}
constructor(
string memory _name,
string memory _symbol,
uint8 _decimals,
uint256 _totalSupply
) {
name = _name;
symbol = _symbol;
decimals = _decimals;
totalSupply = _totalSupply;
balanceOf[msg.sender] = _totalSupply;
owner = msg.sender;
emit Transfer(address(0), msg.sender, _totalSupply);
emit OwnershipTransferred(address(0), msg.sender);
}
function transfer(address to, uint256 amount) external returns (bool) {
_transfer(msg.sender, to, amount);
return true;
}
function approve(address spender, uint256 amount) external returns (bool) {
allowance[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
function transferFrom(address from, address to, uint256 amount) external returns (bool) {
uint256 allowed = allowance[from][msg.sender];
if (allowed != type(uint256).max) {
if (allowed < amount) revert InsufficientAllowance();
allowance[from][msg.sender] = allowed - amount;
}
_transfer(from, to, amount);
return true;
}
function _transfer(address from, address to, uint256 amount) internal {
if (to == address(0)) revert ZeroAddress();
uint256 bal = balanceOf[from];
if (bal < amount) revert InsufficientBalance();
unchecked {
balanceOf[from] = bal - amount;
balanceOf[to] += amount;
}
emit Transfer(from, to, amount);
}
/// Give up ownership permanently. After this, owner() is the zero address and
/// no owner-only function can ever be called again.
function renounceOwnership() external onlyOwner {
emit OwnershipTransferred(owner, address(0));
owner = address(0);
}
function transferOwnership(address newOwner) external onlyOwner {
if (newOwner == address(0)) revert ZeroAddress();
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "_name",
"type": "string",
"internalType": "string"
},
{
"name": "_symbol",
"type": "string",
"internalType": "string"
},
{
"name": "_decimals",
"type": "uint8",
"internalType": "uint8"
},
{
"name": "_totalSupply",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "nonpayable"
},
{
"name": "InsufficientAllowance",
"type": "error",
"inputs": []
},
{
"name": "InsufficientBalance",
"type": "error",
"inputs": []
},
{
"name": "NotOwner",
"type": "error",
"inputs": []
},
{
"name": "ZeroAddress",
"type": "error",
"inputs": []
},
{
"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": "OwnershipTransferred",
"type": "event",
"inputs": [
{
"name": "previousOwner",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "newOwner",
"type": "address",
"indexed": true,
"internalType": "address"
}
],
"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": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "approve",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "balanceOf",
"type": "function",
"inputs": [
{
"name": "",
"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": "owner",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "renounceOwnership",
"type": "function",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"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": "amount",
"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": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "nonpayable"
},
{
"name": "transferOwnership",
"type": "function",
"inputs": [
{
"name": "newOwner",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
}
]0x60a060405234801561001057600080fd5b50604051610aea380380610aea83398101604081905261002f9161019a565b600061003b85826102ac565b50600161004884826102ac565b5060ff82166080526002819055336000818152600460209081526040808320859055600380546001600160a01b03191685179055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a360405133906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050505061036a565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261010857600080fd5b81516001600160401b03811115610121576101216100e1565b604051601f8201601f19908116603f011681016001600160401b038111828210171561014f5761014f6100e1565b60405281815283820160200185101561016757600080fd5b60005b828110156101865760208186018101518383018201520161016a565b506000918101602001919091529392505050565b600080600080608085870312156101b057600080fd5b84516001600160401b038111156101c657600080fd5b6101d2878288016100f7565b602087015190955090506001600160401b038111156101f057600080fd5b6101fc878288016100f7565b935050604085015160ff8116811461021357600080fd5b6060959095015193969295505050565b600181811c9082168061023757607f821691505b60208210810361025757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156102a757806000526020600020601f840160051c810160208510156102845750805b601f840160051c820191505b818110156102a45760008155600101610290565b50505b505050565b81516001600160401b038111156102c5576102c56100e1565b6102d9816102d38454610223565b8461025d565b6020601f82116001811461030d57600083156102f55750848201515b600019600385901b1c1916600184901b1784556102a4565b600084815260208120601f198516915b8281101561033d578785015182556020948501946001909201910161031d565b508482101561035b5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b608051610765610385600039600061012901526107656000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c8063715018a611610071578063715018a61461017d5780638da5cb5b1461018757806395d89b41146101b2578063a9059cbb146101ba578063dd62ed3e146101cd578063f2fde38b146101f857600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd14610111578063313ce5671461012457806370a082311461015d575b600080fd5b6100c161020b565b6040516100ce91906105ae565b60405180910390f35b6100ea6100e5366004610618565b610299565b60405190151581526020016100ce565b61010360025481565b6040519081526020016100ce565b6100ea61011f366004610642565b610306565b61014b7f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff90911681526020016100ce565b61010361016b36600461067f565b60046020526000908152604090205481565b610185610399565b005b60035461019a906001600160a01b031681565b6040516001600160a01b0390911681526020016100ce565b6100c161040e565b6100ea6101c8366004610618565b61041b565b6101036101db3660046106a1565b600560209081526000928352604080842090915290825290205481565b61018561020636600461067f565b610431565b60008054610218906106d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610244906106d4565b80156102915780601f1061026657610100808354040283529160200191610291565b820191906000526020600020905b81548152906001019060200180831161027457829003601f168201915b505050505081565b3360008181526005602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102f49086815260200190565b60405180910390a35060015b92915050565b6001600160a01b038316600090815260056020908152604080832033845290915281205460001981146103835782811015610354576040516313be252b60e01b815260040160405180910390fd5b61035e838261070e565b6001600160a01b03861660009081526005602090815260408083203384529091529020555b61038e8585856104df565b506001949350505050565b6003546001600160a01b031633146103c4576040516330cd747160e01b815260040160405180910390fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b60018054610218906106d4565b60006104283384846104df565b50600192915050565b6003546001600160a01b0316331461045c576040516330cd747160e01b815260040160405180910390fd5b6001600160a01b0381166104835760405163d92e233d60e01b815260040160405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166105065760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b0383166000908152600460205260409020548181101561054057604051631e9acf1760e31b815260040160405180910390fd5b6001600160a01b0380851660008181526004602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906105a09086815260200190565b60405180910390a350505050565b602081526000825180602084015260005b818110156105dc57602081860181015160408684010152016105bf565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461061357600080fd5b919050565b6000806040838503121561062b57600080fd5b610634836105fc565b946020939093013593505050565b60008060006060848603121561065757600080fd5b610660846105fc565b925061066e602085016105fc565b929592945050506040919091013590565b60006020828403121561069157600080fd5b61069a826105fc565b9392505050565b600080604083850312156106b457600080fd5b6106bd836105fc565b91506106cb602084016105fc565b90509250929050565b600181811c908216806106e857607f821691505b60208210810361070857634e487b7160e01b600052602260045260246000fd5b50919050565b8181038181111561030057634e487b7160e01b600052601160045260246000fdfea2646970667358221220523806d94b2332f6a479b78d58466f9ec14271cb3907bc589b451dd32ddb6bba64736f6c634300081a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000000000000000000000000004414750540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044147505400000000000000000000000000000000000000000000000000000000
0x608060405234801561001057600080fd5b50600436106100b45760003560e01c8063715018a611610071578063715018a61461017d5780638da5cb5b1461018757806395d89b41146101b2578063a9059cbb146101ba578063dd62ed3e146101cd578063f2fde38b146101f857600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd14610111578063313ce5671461012457806370a082311461015d575b600080fd5b6100c161020b565b6040516100ce91906105ae565b60405180910390f35b6100ea6100e5366004610618565b610299565b60405190151581526020016100ce565b61010360025481565b6040519081526020016100ce565b6100ea61011f366004610642565b610306565b61014b7f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff90911681526020016100ce565b61010361016b36600461067f565b60046020526000908152604090205481565b610185610399565b005b60035461019a906001600160a01b031681565b6040516001600160a01b0390911681526020016100ce565b6100c161040e565b6100ea6101c8366004610618565b61041b565b6101036101db3660046106a1565b600560209081526000928352604080842090915290825290205481565b61018561020636600461067f565b610431565b60008054610218906106d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610244906106d4565b80156102915780601f1061026657610100808354040283529160200191610291565b820191906000526020600020905b81548152906001019060200180831161027457829003601f168201915b505050505081565b3360008181526005602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906102f49086815260200190565b60405180910390a35060015b92915050565b6001600160a01b038316600090815260056020908152604080832033845290915281205460001981146103835782811015610354576040516313be252b60e01b815260040160405180910390fd5b61035e838261070e565b6001600160a01b03861660009081526005602090815260408083203384529091529020555b61038e8585856104df565b506001949350505050565b6003546001600160a01b031633146103c4576040516330cd747160e01b815260040160405180910390fd5b6003546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600380546001600160a01b0319169055565b60018054610218906106d4565b60006104283384846104df565b50600192915050565b6003546001600160a01b0316331461045c576040516330cd747160e01b815260040160405180910390fd5b6001600160a01b0381166104835760405163d92e233d60e01b815260040160405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382166105065760405163d92e233d60e01b815260040160405180910390fd5b6001600160a01b0383166000908152600460205260409020548181101561054057604051631e9acf1760e31b815260040160405180910390fd5b6001600160a01b0380851660008181526004602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906105a09086815260200190565b60405180910390a350505050565b602081526000825180602084015260005b818110156105dc57602081860181015160408684010152016105bf565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461061357600080fd5b919050565b6000806040838503121561062b57600080fd5b610634836105fc565b946020939093013593505050565b60008060006060848603121561065757600080fd5b610660846105fc565b925061066e602085016105fc565b929592945050506040919091013590565b60006020828403121561069157600080fd5b61069a826105fc565b9392505050565b600080604083850312156106b457600080fd5b6106bd836105fc565b91506106cb602084016105fc565b90509250929050565b600181811c908216806106e857607f821691505b60208210810361070857634e487b7160e01b600052602260045260246000fd5b50919050565b8181038181111561030057634e487b7160e01b600052601160045260246000fdfea2646970667358221220523806d94b2332f6a479b78d58466f9ec14271cb3907bc589b451dd32ddb6bba64736f6c634300081a0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| 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 | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| no token transfers for this address yet | |||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x8f41d4…39511a | 32 days agoTue, 14 Jul 2026 09:17:47 UTC | Transfer | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…41c94366 data: 0x000000000000000000…6cd18f4a |
| 0xf702b5…53e746 | 32 days agoTue, 14 Jul 2026 07:45:47 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…eb649eba data: 0x000000000000000000…00000000 |
| 0xf6f5ad…9aa5e4 | 32 days agoTue, 14 Jul 2026 07:45:42 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…eb649eba data: 0x000000000000000000…6d000000 |
| 0x47c864…8c1e06 | 32 days agoTue, 14 Jul 2026 07:45:39 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…00000000 |
| 0xe41297…f45bdc | 32 days agoTue, 14 Jul 2026 07:45:35 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…6cd18f4a |
| 0x36618a…8d3ed7 | 32 days agoTue, 14 Jul 2026 07:42:07 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…00000000 |
| 0xb4bc72…70bf9d | 32 days agoTue, 14 Jul 2026 07:42:03 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…6cd18f4a |
| 0x9d978d…b0f123 | 32 days agoTue, 14 Jul 2026 07:39:59 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…00000000 |
| 0x039fba…521830 | 32 days agoTue, 14 Jul 2026 07:39:55 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…6cd18f4a |
| 0xe2dbee…8ea8a9 | 32 days agoTue, 14 Jul 2026 07:37:51 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…00000000 |
| 0x826e53…d26fb2 | 32 days agoTue, 14 Jul 2026 07:37:47 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…6cd18f4a |
| 0x298dd0…89e952 | 32 days agoTue, 14 Jul 2026 07:35:43 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…00000000 |
| 0x8398e1…9ed31f | 32 days agoTue, 14 Jul 2026 07:35:39 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…6cd18f4a |
| 0x820d1e…a82261 | 32 days agoTue, 14 Jul 2026 07:33:35 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…00000000 |
| 0x2a3405…7c7698 | 32 days agoTue, 14 Jul 2026 07:33:32 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…6cd18f4a |
| 0xd99efc…d7d700 | 32 days agoTue, 14 Jul 2026 07:31:28 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…00000000 |
| 0x74218d…e818db | 32 days agoTue, 14 Jul 2026 07:31:24 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…6cd18f4a |
| 0x1eedec…8ce1e6 | 32 days agoTue, 14 Jul 2026 07:29:20 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…00000000 |
| 0xb69f89…b44ab1 | 32 days agoTue, 14 Jul 2026 07:29:16 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…6cd18f4a |
| 0x7d038a…2c6e09 | 32 days agoTue, 14 Jul 2026 07:27:12 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…00000000 |
| 0xa322fc…6b8d84 | 32 days agoTue, 14 Jul 2026 07:27:08 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…6cd18f4a |
| 0x339b6b…2439c4 | 32 days agoTue, 14 Jul 2026 07:25:04 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…00000000 |
| 0xc481a1…ddef7a | 32 days agoTue, 14 Jul 2026 07:25:01 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…6cd18f4a |
| 0xe5b32d…c7a73e | 32 days agoTue, 14 Jul 2026 07:22:57 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…00000000 |
| 0xe19ba4…3895d8 | 32 days agoTue, 14 Jul 2026 07:22:53 UTC | Approval | [0] 0x000000000000…ddedbd40 [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…6cd18f4a |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x8f41d4…39511a | Transfer | 9,415,052 | 32 days agoTue, 14 Jul 2026 09:17:47 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000215 | |
| 0xf702b5…53e746 | Approve | 9,360,027 | 32 days agoTue, 14 Jul 2026 07:45:47 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000112 | |
| 0xf6f5ad…9aa5e4 | Approve | 9,359,981 | 32 days agoTue, 14 Jul 2026 07:45:42 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000216 | |
| 0x47c864…8c1e06 | Approve | 9,359,951 | 32 days agoTue, 14 Jul 2026 07:45:39 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000112 | |
| 0xe41297…f45bdc | Approve | 9,359,906 | 32 days agoTue, 14 Jul 2026 07:45:35 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000215 | |
| 0x36618a…8d3ed7 | Approve | 9,357,832 | 32 days agoTue, 14 Jul 2026 07:42:07 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000113 | |
| 0xb4bc72…70bf9d | Approve | 9,357,791 | 32 days agoTue, 14 Jul 2026 07:42:03 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000216 | |
| 0x9d978d…b0f123 | Approve | 9,356,560 | 32 days agoTue, 14 Jul 2026 07:39:59 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000113 | |
| 0x039fba…521830 | Approve | 9,356,519 | 32 days agoTue, 14 Jul 2026 07:39:55 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000217 | |
| 0xe2dbee…8ea8a9 | Approve | 9,355,274 | 32 days agoTue, 14 Jul 2026 07:37:51 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000116 | |
| 0x826e53…d26fb2 | Approve | 9,355,235 | 32 days agoTue, 14 Jul 2026 07:37:47 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000220 | |
| 0x298dd0…89e952 | Approve | 9,354,001 | 32 days agoTue, 14 Jul 2026 07:35:43 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000114 | |
| 0x8398e1…9ed31f | Approve | 9,353,960 | 32 days agoTue, 14 Jul 2026 07:35:39 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000219 | |
| 0x820d1e…a82261 | Approve | 9,352,727 | 32 days agoTue, 14 Jul 2026 07:33:35 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000115 | |
| 0x2a3405…7c7698 | Approve | 9,352,691 | 32 days agoTue, 14 Jul 2026 07:33:32 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000219 | |
| 0xd99efc…d7d700 | Approve | 9,351,445 | 32 days agoTue, 14 Jul 2026 07:31:28 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000112 | |
| 0x74218d…e818db | Approve | 9,351,404 | 32 days agoTue, 14 Jul 2026 07:31:24 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000218 | |
| 0x1eedec…8ce1e6 | Approve | 9,350,174 | 32 days agoTue, 14 Jul 2026 07:29:20 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000113 | |
| 0xb69f89…b44ab1 | Approve | 9,350,132 | 32 days agoTue, 14 Jul 2026 07:29:16 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000214 | |
| 0x7d038a…2c6e09 | Approve | 9,348,903 | 32 days agoTue, 14 Jul 2026 07:27:12 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000112 | |
| 0xa322fc…6b8d84 | Approve | 9,348,865 | 32 days agoTue, 14 Jul 2026 07:27:08 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000217 | |
| 0x339b6b…2439c4 | Approve | 9,347,622 | 32 days agoTue, 14 Jul 2026 07:25:04 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000114 | |
| 0xc481a1…ddef7a | Approve | 9,347,586 | 32 days agoTue, 14 Jul 2026 07:25:01 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000215 | |
| 0xe5b32d…c7a73e | Approve | 9,346,354 | 32 days agoTue, 14 Jul 2026 07:22:57 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000113 | |
| 0xe19ba4…3895d8 | Approve | 9,346,317 | 32 days agoTue, 14 Jul 2026 07:22:53 UTC | 0xbbc4…bd40 | IN | AGPT | $0.000 ETH | 0.00000216 |
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||