// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;
/*
███╗ ██╗ ██████╗ ██████╗ ███████╗██████╗ █████╗
████╗ ██║██╔═══██╗██╔══██╗██╔════╝██╔══██╗██╔══██╗
██╔██╗ ██║██║ ██║██║ ██║█████╗ ██████╔╝███████║
██║╚██╗██║██║ ██║██║ ██║██╔══╝ ██╔══██╗██╔══██║
██║ ╚████║╚██████╔╝██████╔╝███████╗██║ ██║██║ ██║
╚═╝ ╚═══╝ ╚═════╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝
$CASTLE — Loot. On Robinhood Chain.
SCANNER-SAFE BY CONSTRUCTION:
• Fixed supply, minted once in the constructor — NO mint function.
• NO owner / admin (not Ownable) — nothing to renounce, nothing to abuse.
• NO tax / fee, NO blacklist, NO pause, NO max-tx, NO trading toggle,
NO upgradeability (not a proxy). Just a plain OZ ERC-20.
100% of supply is seeded single-side into Uniswap V3 — buyers bring the ETH.
x.com/... · t.me/...
*/
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
/// @title Loot
/// @notice Plain, ownerless, fixed-supply ERC-20. The entire supply is pre-minted
/// to the deployer at construction. No privileged roles, no mint, no burn
/// hooks, no fees — the standard OZ ERC-20 surface only. Designed to pass
/// token-safety scanners with a clean "Safe" verdict.
contract Castle is ERC20 {
uint256 public constant MAX_SUPPLY = 1_000_000_000 ether; // 1,000,000,000 CASTLE
constructor() ERC20("CastleHood", "CASTLE") {
_mint(msg.sender, MAX_SUPPLY);
}
}[
{
"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": "MAX_SUPPLY",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"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": "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"
}
]0x6080604052346103b557604080519081016001600160401b038111828210176102c8576040908152600a82526910d85cdd1b19521bdbd960b21b602083015280519081016001600160401b038111828210176102c8576040526006815265434153544c4560d01b602082015281516001600160401b0381116102c857600354600181811c911680156103ab575b60208210146102aa57601f8111610348575b50602092601f82116001146102e757928192935f926102dc575b50508160011b915f199060031b1c1916176003555b80516001600160401b0381116102c857600454600181811c911680156102be575b60208210146102aa57601f8111610247575b50602091601f82116001146101e7579181925f926101dc575b50508160011b915f199060031b1c1916176004555b33156101c9576002546b033b2e3c9fd0803ce800000081018091116101b557600255335f525f60205260405f206b033b2e3c9fd0803ce800000081540190556040516b033b2e3c9fd0803ce800000081525f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60203393a36040516109ce90816103ba8239f35b634e487b7160e01b5f52601160045260245ffd5b63ec442f0560e01b5f525f60045260245ffd5b015190505f80610119565b601f1982169260045f52805f20915f5b85811061022f57508360019510610217575b505050811b0160045561012e565b01515f1960f88460031b161c191690555f8080610209565b919260206001819286850151815501940192016101f7565b60045f527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b601f830160051c810191602084106102a0575b601f0160051c01905b8181106102955750610100565b5f8155600101610288565b909150819061027f565b634e487b7160e01b5f52602260045260245ffd5b90607f16906100ee565b634e487b7160e01b5f52604160045260245ffd5b015190505f806100b8565b601f1982169360035f52805f20915f5b8681106103305750836001959610610318575b505050811b016003556100cd565b01515f1960f88460031b161c191690555f808061030a565b919260206001819286850151815501940192016102f7565b60035f527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b601f830160051c810191602084106103a1575b601f0160051c01905b818110610396575061009e565b5f8155600101610389565b9091508190610380565b90607f169061008c565b5f80fdfe6080806040526004361015610012575f80fd5b5f3560e01c90816306fdde03146106b757508063095ea7b31461060a57806318160ddd146105cf57806323b872dd1461043b578063313ce5671461040257806332cb6b0c146103be57806370a082311461035c57806395d89b4114610169578063a9059cbb1461011a5763dd62ed3e1461008a575f80fd5b346101165760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116576100c1610830565b73ffffffffffffffffffffffffffffffffffffffff6100de610853565b91165f52600160205273ffffffffffffffffffffffffffffffffffffffff60405f2091165f52602052602060405f2054604051908152f35b5f80fd5b346101165760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101165761015e610154610830565b6024359033610876565b602060405160018152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116576040515f600454908160011c60018316928315610352575b6020821084146103255781855284939081156102c5575060011461024b575b5003601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01681019067ffffffffffffffff82118183101761021e5761021a829182604052826107e8565b0390f35b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b60045f90815291507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b8183106102a957505081016020017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06101ce565b6020919350806001915483858801015201910190918392610275565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660208581019190915291151560051b840190910191507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090506101ce565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b90607f16906101af565b346101165760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101165773ffffffffffffffffffffffffffffffffffffffff6103a8610830565b165f525f602052602060405f2054604051908152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101165760206040516b033b2e3c9fd0803ce80000008152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011657602060405160128152f35b346101165760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011657610472610830565b61047a610853565b6044359073ffffffffffffffffffffffffffffffffffffffff831692835f52600160205260405f2073ffffffffffffffffffffffffffffffffffffffff33165f5260205260405f20547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81106104f6575b5061015e9350610876565b83811061059b57841561056f5733156105435761015e945f52600160205260405f2073ffffffffffffffffffffffffffffffffffffffff33165f526020528360405f2091039055846104eb565b7f94280d62000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b7fe602df05000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b83907ffb8f41b2000000000000000000000000000000000000000000000000000000005f523360045260245260445260645ffd5b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116576020600254604051908152f35b346101165760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011657610641610830565b60243590331561056f5773ffffffffffffffffffffffffffffffffffffffff1690811561054357335f52600160205260405f20825f526020528060405f20556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116575f600354908160011c600183169283156107de575b6020821084146103255781855284939081156102c55750600114610764575003601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01681019067ffffffffffffffff82118183101761021e5761021a829182604052826107e8565b60035f90815291507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8183106107c257505081016020017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06101ce565b602091935080600191548385880101520191019091839261078e565b90607f16906106fa565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f602060409481855280519182918282880152018686015e5f8582860101520116010190565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361011657565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361011657565b73ffffffffffffffffffffffffffffffffffffffff1690811561096c5773ffffffffffffffffffffffffffffffffffffffff1691821561094057815f525f60205260405f205481811061090e57817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92602092855f525f84520360405f2055845f525f825260405f20818154019055604051908152a3565b827fe450d38c000000000000000000000000000000000000000000000000000000005f5260045260245260445260645ffd5b7fec442f05000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b7f96c6fd1e000000000000000000000000000000000000000000000000000000005f525f60045260245ffdfea26469706673582212205a16b509367555b25535b4102623d675b8eb08ec0e75406002426eed502fc14264736f6c634300081c0033
0x6080806040526004361015610012575f80fd5b5f3560e01c90816306fdde03146106b757508063095ea7b31461060a57806318160ddd146105cf57806323b872dd1461043b578063313ce5671461040257806332cb6b0c146103be57806370a082311461035c57806395d89b4114610169578063a9059cbb1461011a5763dd62ed3e1461008a575f80fd5b346101165760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116576100c1610830565b73ffffffffffffffffffffffffffffffffffffffff6100de610853565b91165f52600160205273ffffffffffffffffffffffffffffffffffffffff60405f2091165f52602052602060405f2054604051908152f35b5f80fd5b346101165760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101165761015e610154610830565b6024359033610876565b602060405160018152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116576040515f600454908160011c60018316928315610352575b6020821084146103255781855284939081156102c5575060011461024b575b5003601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01681019067ffffffffffffffff82118183101761021e5761021a829182604052826107e8565b0390f35b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b60045f90815291507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b8183106102a957505081016020017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06101ce565b6020919350806001915483858801015201910190918392610275565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660208581019190915291151560051b840190910191507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090506101ce565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b90607f16906101af565b346101165760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101165773ffffffffffffffffffffffffffffffffffffffff6103a8610830565b165f525f602052602060405f2054604051908152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101165760206040516b033b2e3c9fd0803ce80000008152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011657602060405160128152f35b346101165760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011657610472610830565b61047a610853565b6044359073ffffffffffffffffffffffffffffffffffffffff831692835f52600160205260405f2073ffffffffffffffffffffffffffffffffffffffff33165f5260205260405f20547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81106104f6575b5061015e9350610876565b83811061059b57841561056f5733156105435761015e945f52600160205260405f2073ffffffffffffffffffffffffffffffffffffffff33165f526020528360405f2091039055846104eb565b7f94280d62000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b7fe602df05000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b83907ffb8f41b2000000000000000000000000000000000000000000000000000000005f523360045260245260445260645ffd5b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116576020600254604051908152f35b346101165760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011657610641610830565b60243590331561056f5773ffffffffffffffffffffffffffffffffffffffff1690811561054357335f52600160205260405f20825f526020528060405f20556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116575f600354908160011c600183169283156107de575b6020821084146103255781855284939081156102c55750600114610764575003601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01681019067ffffffffffffffff82118183101761021e5761021a829182604052826107e8565b60035f90815291507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8183106107c257505081016020017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06101ce565b602091935080600191548385880101520191019091839261078e565b90607f16906106fa565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f602060409481855280519182918282880152018686015e5f8582860101520116010190565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361011657565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361011657565b73ffffffffffffffffffffffffffffffffffffffff1690811561096c5773ffffffffffffffffffffffffffffffffffffffff1691821561094057815f525f60205260405f205481811061090e57817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92602092855f525f84520360405f2055845f525f825260405f20818154019055604051908152a3565b827fe450d38c000000000000000000000000000000000000000000000000000000005f5260045260245260445260645ffd5b7fec442f05000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b7f96c6fd1e000000000000000000000000000000000000000000000000000000005f525f60045260245ffdfea26469706673582212205a16b509367555b25535b4102623d675b8eb08ec0e75406002426eed502fc14264736f6c634300081c0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
| 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 | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| no token transfers for this address yet | |||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0xab4270…f0d6b5 | 35 days agoMon, 13 Jul 2026 14:33:26 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…eccc2443 data: 0x000000000000000000…11d9f656 |
| 0xdac150…531584 | 35 days agoMon, 13 Jul 2026 14:33:12 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…1730c670 data: 0x000000000000000000…e8ee4b4b |
| 0x37070d…cdcfdc | 35 days agoMon, 13 Jul 2026 14:32:53 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…1730c670 data: 0x000000000000000000…83501a09 |
| 0x4ab92e…5c8ca0 | 35 days agoMon, 13 Jul 2026 14:32:46 UTC | Transfer | [0] 0x000000000000…018d237c [1] 0x000000000000…aa842aff data: 0x000000000000000000…868ed45c |
| 0x4ab92e…5c8ca0 | 35 days agoMon, 13 Jul 2026 14:32:46 UTC | Approval | [0] 0x000000000000…018d237c [1] 0x000000000000…959e5cb2 data: 0x000000000000000000…868ed45c |
| 0x4ab92e…5c8ca0 | 35 days agoMon, 13 Jul 2026 14:32:46 UTC | Transfer | [0] 0x000000000000…1730c670 [1] 0x000000000000…018d237c data: 0x000000000000000000…868ed45c |
| 0x0bf94d…001adc | 35 days agoMon, 13 Jul 2026 14:32:13 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…6cd593fe data: 0x000000000000000000…d3ff69be |
| 0xd41e81…a96246 | 35 days agoMon, 13 Jul 2026 14:31:55 UTC | Approval | [0] 0x000000000000…f0597de6 [1] 0x000000000000…018d237c data: 0xffffffffffffffffff…ffffffff |
| 0x7e69b9…658b9b | 35 days agoMon, 13 Jul 2026 14:31:55 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…d2f2e720 data: 0x000000000000000000…25496ff7 |
| 0x33c9a4…dc1f8e | 35 days agoMon, 13 Jul 2026 14:31:55 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…1730c670 data: 0x000000000000000000…84919587 |
| 0xbb7384…e10aad | 35 days agoMon, 13 Jul 2026 14:31:55 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…7e9dc668 data: 0x000000000000000000…d3637ebf |
| 0xda2570…32dd4d | 35 days agoMon, 13 Jul 2026 14:31:55 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…6f3132e5 data: 0x000000000000000000…15f86112 |
| 0x4cb981…3fc461 | 35 days agoMon, 13 Jul 2026 14:31:55 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…f0597de6 data: 0x000000000000000000…29488484 |
| 0x6b5106…2e5294 | 35 days agoMon, 13 Jul 2026 14:31:54 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…7e3ba02b data: 0x000000000000000000…9388870a |
| 0x6fcf9b…76a908 | 35 days agoMon, 13 Jul 2026 14:31:54 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…6cd593fe data: 0x000000000000000000…88c486ca |
| 0xa3d40d…ab4c67 | 35 days agoMon, 13 Jul 2026 14:30:54 UTC | Transfer | [0] 0x000000000000…ec4fff4f [1] 0x000000000000…1b839522 data: 0x000000000000000000…d7683d2f |
| 0xa3d40d…ab4c67 | 35 days agoMon, 13 Jul 2026 14:30:54 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…ec4fff4f data: 0x000000000000000000…d7683d2f |
| 0x5c7b7f…df1e75 | 35 days agoMon, 13 Jul 2026 14:30:51 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…7e9dc668 data: 0x000000000000000000…c94f7588 |
| 0x11beca…db2854 | 35 days agoMon, 13 Jul 2026 14:29:36 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…60bff279 data: 0x000000000000000000…2e11f1a4 |
| 0xedcf18…93b7ba | 35 days agoMon, 13 Jul 2026 14:29:21 UTC | Transfer | [0] 0x000000000000…60bff279 [1] 0x000000000000…aa842aff data: 0x000000000000000000…10da0281 |
| 0x883842…246316 | 35 days agoMon, 13 Jul 2026 14:29:21 UTC | Approval | [0] 0x000000000000…60bff279 [1] 0x000000000000…262c40dc data: 0xffffffffffffffffff…ffffffff |
| 0x49be5d…988a8a | 35 days agoMon, 13 Jul 2026 14:29:15 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…60bff279 data: 0x000000000000000000…10da0281 |
| 0x9621ae…ec5275 | 35 days agoMon, 13 Jul 2026 14:29:07 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…6cd593fe data: 0x000000000000000000…e2c2f942 |
| 0x483f3b…7365c9 | 35 days agoMon, 13 Jul 2026 14:29:07 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…c4c87746 data: 0x000000000000000000…e9801523 |
| 0x762fad…0be8af | 35 days agoMon, 13 Jul 2026 14:29:06 UTC | Transfer | [0] 0x000000000000…aa842aff [1] 0x000000000000…21533e9a data: 0x000000000000000000…777d4dc2 |
| 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 ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xd41e81…a96246 | Approve | 8,741,342 | 35 days agoMon, 13 Jul 2026 14:31:55 UTC | 0x5d55…7de6 | IN | CastleHood | $0.000 ETH | 0.00000234 | |
| 0x883842…246316 | Approve | 8,739,815 | 35 days agoMon, 13 Jul 2026 14:29:21 UTC | 0x5ae8…f279 | IN | CastleHood | $0.000 ETH | 0.00000231 | |
| 0x3fde4d…c09a0f | Approve | 8,737,037 | 35 days agoMon, 13 Jul 2026 14:24:44 UTC | 0x8e06…079e | IN | CastleHood | $0.000 ETH | 0.00000226 | |
| 0xaea925…3a4c8a | Approve | 8,736,796 | 35 days agoMon, 13 Jul 2026 14:24:19 UTC | 0x1d8a…e720 | IN | CastleHood | $0.000 ETH | 0.00000227 | |
| 0x056edd…6dd1c2 | Approve | 8,736,005 | 35 days agoMon, 13 Jul 2026 14:23:00 UTC | 0x2727…32e5 | IN | CastleHood | $0.000 ETH | 0.00000224 | |
| 0x08e315…795379 | Approve | 8,735,915 | 35 days agoMon, 13 Jul 2026 14:22:51 UTC | 0xefea…cc44 | IN | CastleHood | $0.000 ETH | 0.00000224 | |
| 0x5be1b8…48e961 | Approve | 8,734,028 | 35 days agoMon, 13 Jul 2026 14:19:43 UTC | 0x2bbc…8ba0 | IN | CastleHood | $0.000 ETH | 0.00000229 | |
| 0x2e88ac…3c4ec1 | Approve | 8,734,028 | 35 days agoMon, 13 Jul 2026 14:19:43 UTC | 0x3451…cef6 | IN | CastleHood | $0.000 ETH | 0.00000229 | |
| 0x1d2d19…2200c8 | Approve | 8,734,028 | 35 days agoMon, 13 Jul 2026 14:19:43 UTC | 0x5e9e…81a0 | IN | CastleHood | $0.000 ETH | 0.00000229 | |
| 0xc78955…b6847f | Approve | 8,733,840 | 35 days agoMon, 13 Jul 2026 14:19:24 UTC | 0xaa02…c668 | IN | CastleHood | $0.000 ETH | 0.00000223 | |
| 0x271676…8f2b32 | Approve | 8,733,836 | 35 days agoMon, 13 Jul 2026 14:19:23 UTC | 0xfa42…a02b | IN | CastleHood | $0.000 ETH | 0.00000228 | |
| 0xebbbad…33231b | Approve | 8,733,660 | 35 days agoMon, 13 Jul 2026 14:19:06 UTC | 0x7c65…5be1 | IN | CastleHood | $0.000 ETH | 0.00000225 | |
| 0x7a9559…464297 | Approve | 8,733,589 | 35 days agoMon, 13 Jul 2026 14:18:58 UTC | 0xb03d…7746 | IN | CastleHood | $0.000 ETH | 0.00000231 | |
| 0x05a748…04d240 | Approve | 8,733,588 | 35 days agoMon, 13 Jul 2026 14:18:58 UTC | 0x418f…93fe | IN | CastleHood | $0.000 ETH | 0.00000231 | |
| 0x6a474e…738fd6 | Approve | 8,733,587 | 35 days agoMon, 13 Jul 2026 14:18:58 UTC | 0x7b10…56dc | IN | CastleHood | $0.000 ETH | 0.00000230 | |
| 0x402860…1140b5 | Approve | 8,733,587 | 35 days agoMon, 13 Jul 2026 14:18:58 UTC | 0xec52…c670 | IN | CastleHood | $0.000 ETH | 0.00000230 | |
| 0x72aa0b…a11e9e | Approve | 8,733,587 | 35 days agoMon, 13 Jul 2026 14:18:58 UTC | 0x3a5b…c17d | IN | CastleHood | $0.000 ETH | 0.00000230 | |
| 0xf43faa…b8ddf2 | Approve | 8,733,259 | 35 days agoMon, 13 Jul 2026 14:18:25 UTC | 0xd45a…610a | IN | CastleHood | $0.000 ETH | 0.00000225 | |
| 0x0ebe04…417d84 | Approve | 8,733,252 | 35 days agoMon, 13 Jul 2026 14:18:24 UTC | 0xf8fd…247f | IN | CastleHood | $0.000 ETH | 0.00000231 | |
| 0x861135…9ddced | Approve | 8,733,251 | 35 days agoMon, 13 Jul 2026 14:18:24 UTC | 0xac96…9f4a | IN | CastleHood | $0.000 ETH | 0.00000231 | |
| 0xbcb109…7a8def | Approve | 8,733,250 | 35 days agoMon, 13 Jul 2026 14:18:24 UTC | 0xccf4…a0f9 | IN | CastleHood | $0.000 ETH | 0.00000229 | |
| 0x3a9745…db3474 | Approve | 8,733,154 | 35 days agoMon, 13 Jul 2026 14:18:15 UTC | 0xb38f…c19a | IN | CastleHood | $0.000 ETH | 0.00000223 | |
| 0xa008db…225d9d | Approve | 8,733,013 | 35 days agoMon, 13 Jul 2026 14:18:00 UTC | 0x3387…b678 | IN | CastleHood | $0.000 ETH | 0.00000228 | |
| 0xf00ec0…76b090 | Approve | 8,732,998 | 35 days agoMon, 13 Jul 2026 14:17:59 UTC | 0x3387…b678 | IN | CastleHood | $0.000 ETH | 0.00000128 | |
| 0x8723a7…1f53a6 | Approve | 8,732,992 | 35 days agoMon, 13 Jul 2026 14:17:58 UTC | 0x3387…b678 | IN | CastleHood | $0.000 ETH | 0.00000226 |