// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;
/*
███╗ ██╗ ██████╗ ██████╗ ███████╗██████╗ █████╗
████╗ ██║██╔═══██╗██╔══██╗██╔════╝██╔══██╗██╔══██╗
██╔██╗ ██║██║ ██║██║ ██║█████╗ ██████╔╝███████║
██║╚██╗██║██║ ██║██║ ██║██╔══╝ ██╔══██╗██╔══██║
██║ ╚████║╚██████╔╝██████╔╝███████╗██║ ██║██║ ██║
╚═╝ ╚═══╝ ╚═════╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝
$NODA — Nodera. 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 Nodera
/// @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 Nodera is ERC20 {
uint256 public constant MAX_SUPPLY = 1_000_000_000 ether; // 1,000,000,000 NODA
constructor() ERC20("NoderaRobinHood", "NODERA") {
_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"
}
]0x6080604052346103ba57604080519081016001600160401b038111828210176102cd576040908152600f82526e139bd9195c98549bd89a5b921bdbd9608a1b602083015280519081016001600160401b038111828210176102cd5760405260068152654e4f4445524160d01b602082015281516001600160401b0381116102cd57600354600181811c911680156103b0575b60208210146102af57601f811161034d575b50602092601f82116001146102ec57928192935f926102e1575b50508160011b915f199060031b1c1916176003555b80516001600160401b0381116102cd57600454600181811c911680156102c3575b60208210146102af57601f811161024c575b50602091601f82116001146101ec579181925f926101e1575b50508160011b915f199060031b1c1916176004555b33156101ce576002546b033b2e3c9fd0803ce800000081018091116101ba57600255335f525f60205260405f206b033b2e3c9fd0803ce800000081540190556040516b033b2e3c9fd0803ce800000081525f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60203393a36040516109ce90816103bf8239f35b634e487b7160e01b5f52601160045260245ffd5b63ec442f0560e01b5f525f60045260245ffd5b015190505f8061011e565b601f1982169260045f52805f20915f5b8581106102345750836001951061021c575b505050811b01600455610133565b01515f1960f88460031b161c191690555f808061020e565b919260206001819286850151815501940192016101fc565b60045f527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b601f830160051c810191602084106102a5575b601f0160051c01905b81811061029a5750610105565b5f815560010161028d565b9091508190610284565b634e487b7160e01b5f52602260045260245ffd5b90607f16906100f3565b634e487b7160e01b5f52604160045260245ffd5b015190505f806100bd565b601f1982169360035f52805f20915f5b868110610335575083600195961061031d575b505050811b016003556100d2565b01515f1960f88460031b161c191690555f808061030f565b919260206001819286850151815501940192016102fc565b60035f527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b601f830160051c810191602084106103a6575b601f0160051c01905b81811061039b57506100a3565b5f815560010161038e565b9091508190610385565b90607f1690610091565b5f80fdfe6080806040526004361015610012575f80fd5b5f3560e01c90816306fdde03146106b757508063095ea7b31461060a57806318160ddd146105cf57806323b872dd1461043b578063313ce5671461040257806332cb6b0c146103be57806370a082311461035c57806395d89b4114610169578063a9059cbb1461011a5763dd62ed3e1461008a575f80fd5b346101165760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116576100c1610830565b73ffffffffffffffffffffffffffffffffffffffff6100de610853565b91165f52600160205273ffffffffffffffffffffffffffffffffffffffff60405f2091165f52602052602060405f2054604051908152f35b5f80fd5b346101165760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101165761015e610154610830565b6024359033610876565b602060405160018152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116576040515f600454908160011c60018316928315610352575b6020821084146103255781855284939081156102c5575060011461024b575b5003601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01681019067ffffffffffffffff82118183101761021e5761021a829182604052826107e8565b0390f35b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b60045f90815291507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b8183106102a957505081016020017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06101ce565b6020919350806001915483858801015201910190918392610275565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660208581019190915291151560051b840190910191507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090506101ce565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b90607f16906101af565b346101165760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101165773ffffffffffffffffffffffffffffffffffffffff6103a8610830565b165f525f602052602060405f2054604051908152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101165760206040516b033b2e3c9fd0803ce80000008152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011657602060405160128152f35b346101165760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011657610472610830565b61047a610853565b6044359073ffffffffffffffffffffffffffffffffffffffff831692835f52600160205260405f2073ffffffffffffffffffffffffffffffffffffffff33165f5260205260405f20547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81106104f6575b5061015e9350610876565b83811061059b57841561056f5733156105435761015e945f52600160205260405f2073ffffffffffffffffffffffffffffffffffffffff33165f526020528360405f2091039055846104eb565b7f94280d62000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b7fe602df05000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b83907ffb8f41b2000000000000000000000000000000000000000000000000000000005f523360045260245260445260645ffd5b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116576020600254604051908152f35b346101165760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011657610641610830565b60243590331561056f5773ffffffffffffffffffffffffffffffffffffffff1690811561054357335f52600160205260405f20825f526020528060405f20556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116575f600354908160011c600183169283156107de575b6020821084146103255781855284939081156102c55750600114610764575003601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01681019067ffffffffffffffff82118183101761021e5761021a829182604052826107e8565b60035f90815291507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8183106107c257505081016020017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06101ce565b602091935080600191548385880101520191019091839261078e565b90607f16906106fa565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f602060409481855280519182918282880152018686015e5f8582860101520116010190565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361011657565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361011657565b73ffffffffffffffffffffffffffffffffffffffff1690811561096c5773ffffffffffffffffffffffffffffffffffffffff1691821561094057815f525f60205260405f205481811061090e57817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92602092855f525f84520360405f2055845f525f825260405f20818154019055604051908152a3565b827fe450d38c000000000000000000000000000000000000000000000000000000005f5260045260245260445260645ffd5b7fec442f05000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b7f96c6fd1e000000000000000000000000000000000000000000000000000000005f525f60045260245ffdfea2646970667358221220ef501a76dfca5678d856d9384b8e93158a32668a6ac447953e57c50c46df1fba64736f6c634300081c0033
0x6080806040526004361015610012575f80fd5b5f3560e01c90816306fdde03146106b757508063095ea7b31461060a57806318160ddd146105cf57806323b872dd1461043b578063313ce5671461040257806332cb6b0c146103be57806370a082311461035c57806395d89b4114610169578063a9059cbb1461011a5763dd62ed3e1461008a575f80fd5b346101165760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116576100c1610830565b73ffffffffffffffffffffffffffffffffffffffff6100de610853565b91165f52600160205273ffffffffffffffffffffffffffffffffffffffff60405f2091165f52602052602060405f2054604051908152f35b5f80fd5b346101165760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101165761015e610154610830565b6024359033610876565b602060405160018152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116576040515f600454908160011c60018316928315610352575b6020821084146103255781855284939081156102c5575060011461024b575b5003601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01681019067ffffffffffffffff82118183101761021e5761021a829182604052826107e8565b0390f35b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b60045f90815291507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b8183106102a957505081016020017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06101ce565b6020919350806001915483858801015201910190918392610275565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660208581019190915291151560051b840190910191507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090506101ce565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b90607f16906101af565b346101165760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101165773ffffffffffffffffffffffffffffffffffffffff6103a8610830565b165f525f602052602060405f2054604051908152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101165760206040516b033b2e3c9fd0803ce80000008152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011657602060405160128152f35b346101165760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011657610472610830565b61047a610853565b6044359073ffffffffffffffffffffffffffffffffffffffff831692835f52600160205260405f2073ffffffffffffffffffffffffffffffffffffffff33165f5260205260405f20547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81106104f6575b5061015e9350610876565b83811061059b57841561056f5733156105435761015e945f52600160205260405f2073ffffffffffffffffffffffffffffffffffffffff33165f526020528360405f2091039055846104eb565b7f94280d62000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b7fe602df05000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b83907ffb8f41b2000000000000000000000000000000000000000000000000000000005f523360045260245260445260645ffd5b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116576020600254604051908152f35b346101165760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261011657610641610830565b60243590331561056f5773ffffffffffffffffffffffffffffffffffffffff1690811561054357335f52600160205260405f20825f526020528060405f20556040519081527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560203392a3602060405160018152f35b34610116575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610116575f600354908160011c600183169283156107de575b6020821084146103255781855284939081156102c55750600114610764575003601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01681019067ffffffffffffffff82118183101761021e5761021a829182604052826107e8565b60035f90815291507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8183106107c257505081016020017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06101ce565b602091935080600191548385880101520191019091839261078e565b90607f16906106fa565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f602060409481855280519182918282880152018686015e5f8582860101520116010190565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361011657565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361011657565b73ffffffffffffffffffffffffffffffffffffffff1690811561096c5773ffffffffffffffffffffffffffffffffffffffff1691821561094057815f525f60205260405f205481811061090e57817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92602092855f525f84520360405f2055845f525f825260405f20818154019055604051908152a3565b827fe450d38c000000000000000000000000000000000000000000000000000000005f5260045260245260445260645ffd5b7fec442f05000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b7f96c6fd1e000000000000000000000000000000000000000000000000000000005f525f60045260245ffdfea2646970667358221220ef501a76dfca5678d856d9384b8e93158a32668a6ac447953e57c50c46df1fba64736f6c634300081c0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x96096a…625d42 | 36 days agoSun, 12 Jul 2026 17:22:33 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…ff4f0921 data: 0x000000000000000000…5acb8cde |
| 0xfcf6bf…171434 | 36 days agoSun, 12 Jul 2026 17:22:25 UTC | Transfer | [0] 0x000000000000…273eab7f [1] 0x000000000000…1ff71f4e data: 0x000000000000000000…b9c00000 |
| 0xfcf6bf…171434 | 36 days agoSun, 12 Jul 2026 17:22:25 UTC | Approval | [0] 0x000000000000…273eab7f [1] 0x000000000000…72c22734 data: 0xffffffffffffffffff…ffffffff |
| 0xfcf6bf…171434 | 36 days agoSun, 12 Jul 2026 17:22:25 UTC | Transfer | [0] 0x000000000000…851ae12a [1] 0x000000000000…273eab7f data: 0x000000000000000000…b9c00000 |
| 0x743429…2e7213 | 36 days agoSun, 12 Jul 2026 17:22:23 UTC | Approval | [0] 0x000000000000…851ae12a [1] 0x000000000000…e35fd727 data: 0xffffffffffffffffff…ffffffff |
| 0xcef1f5…afa9ea | 36 days agoSun, 12 Jul 2026 17:21:20 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…6cd593fe data: 0x000000000000000000…04c2f413 |
| 0x46a6b9…febfdf | 36 days agoSun, 12 Jul 2026 17:21:20 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…a1981430 data: 0x000000000000000000…93f9b614 |
| 0xcbfe59…b23a87 | 36 days agoSun, 12 Jul 2026 17:21:20 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…bcab247f data: 0x000000000000000000…5dcd6b9e |
| 0xe0d7b8…bae6d0 | 36 days agoSun, 12 Jul 2026 17:20:48 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…1730c670 data: 0x000000000000000000…c330d3b4 |
| 0xeb5b8f…272c2d | 36 days agoSun, 12 Jul 2026 17:20:02 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…3bf8343b data: 0x000000000000000000…3e7e45c9 |
| 0x3ba03f…cb07df | 36 days agoSun, 12 Jul 2026 17:20:02 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…bcab247f data: 0x000000000000000000…1d38e7bf |
| 0xa2b0f7…90e428 | 36 days agoSun, 12 Jul 2026 17:20:02 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…1730c670 data: 0x000000000000000000…22c08a0b |
| 0x785bf9…b7a5a4 | 36 days agoSun, 12 Jul 2026 17:20:02 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…a1981430 data: 0x000000000000000000…bd6869b4 |
| 0xcae539…cc1a48 | 36 days agoSun, 12 Jul 2026 17:20:02 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…f4a0cef6 data: 0x000000000000000000…95f9ab1e |
| 0x4d2344…17763b | 36 days agoSun, 12 Jul 2026 17:20:02 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…6cd593fe data: 0x000000000000000000…54f7b827 |
| 0x455b0b…087e1d | 36 days agoSun, 12 Jul 2026 17:20:02 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…21533e9a data: 0x000000000000000000…48e01793 |
| 0xbcc295…7c64b6 | 36 days agoSun, 12 Jul 2026 17:19:44 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…1730c670 data: 0x000000000000000000…854ae656 |
| 0xcd2616…ec69ae | 36 days agoSun, 12 Jul 2026 17:18:39 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…6cd593fe data: 0x000000000000000000…875e8922 |
| 0xce65e1…3bfe65 | 36 days agoSun, 12 Jul 2026 17:18:27 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…6cd593fe data: 0x000000000000000000…9e260b45 |
| 0xa567cb…9d1615 | 36 days agoSun, 12 Jul 2026 17:18:06 UTC | Transfer | [0] 0x000000000000…273eab7f [1] 0x000000000000…851ae12a data: 0x000000000000000000…47ce07a5 |
| 0xa567cb…9d1615 | 36 days agoSun, 12 Jul 2026 17:18:06 UTC | Transfer | [0] 0x000000000000…a948c83b [1] 0x000000000000…273eab7f data: 0x000000000000000000…47ce07a5 |
| 0xa567cb…9d1615 | 36 days agoSun, 12 Jul 2026 17:18:06 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…a948c83b data: 0x000000000000000000…47ce07a5 |
| 0x0bd2ee…67cb2e | 36 days agoSun, 12 Jul 2026 17:17:54 UTC | Approval | [0] 0x000000000000…c6376358 [1] 0x000000000000…018d237c data: 0xffffffffffffffffff…ffffffff |
| 0x3d95dd…7a5f5c | 36 days agoSun, 12 Jul 2026 17:17:54 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…c6376358 data: 0x000000000000000000…ebc5bc72 |
| 0x922e17…382f03 | 36 days agoSun, 12 Jul 2026 17:17:47 UTC | Transfer | [0] 0x000000000000…1ff71f4e [1] 0x000000000000…1730c670 data: 0x000000000000000000…144e3d93 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| no token transfers for this address yet | |||||||||
| 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) | ||||||||
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x743429…2e7213 | Approve | 7,981,094 | 36 days agoSun, 12 Jul 2026 17:22:23 UTC | 0x81e4…e12a | IN | NoderaRobinHood | $0.000 ETH | 0.00000252 | |
| 0x0bd2ee…67cb2e | Approve | 7,978,403 | 36 days agoSun, 12 Jul 2026 17:17:54 UTC | 0x82a0…6358 | IN | NoderaRobinHood | $0.000 ETH | 0.00000256 | |
| 0x46e297…2c0e84 | Approve | 7,977,040 | 36 days agoSun, 12 Jul 2026 17:15:37 UTC | 0x48fb…c519 | IN | NoderaRobinHood | $0.000 ETH | 0.00000255 | |
| 0x310678…43091a | Approve | 7,976,842 | 36 days agoSun, 12 Jul 2026 17:15:17 UTC | 0x0d39…d6dc | IN | NoderaRobinHood | $0.000 ETH | 0.00000252 | |
| 0x4a96cb…2874e1 | Approve | 7,976,842 | 36 days agoSun, 12 Jul 2026 17:15:17 UTC | 0xd14d…b1b0 | IN | NoderaRobinHood | $0.000 ETH | 0.00000252 | |
| 0x333cec…682132 | Approve | 7,976,840 | 36 days agoSun, 12 Jul 2026 17:15:17 UTC | 0xec52…c670 | IN | NoderaRobinHood | $0.000 ETH | 0.00000251 | |
| 0x7ca094…7ff419 | Approve | 7,976,761 | 36 days agoSun, 12 Jul 2026 17:15:09 UTC | 0x5d55…7de6 | IN | NoderaRobinHood | $0.000 ETH | 0.00000252 | |
| 0x1a0459…a3555e | Approve | 7,976,761 | 36 days agoSun, 12 Jul 2026 17:15:09 UTC | 0xf993…4fd5 | IN | NoderaRobinHood | $0.000 ETH | 0.00000252 | |
| 0x38c1bc…848131 | Approve | 7,976,760 | 36 days agoSun, 12 Jul 2026 17:15:09 UTC | 0xf8fd…247f | IN | NoderaRobinHood | $0.000 ETH | 0.00000251 | |
| 0x3a2224…306750 | Approve | 7,976,476 | 36 days agoSun, 12 Jul 2026 17:14:40 UTC | 0x9690…343b | IN | NoderaRobinHood | $0.000 ETH | 0.00000252 | |
| 0xbfe6a3…7852fb | Approve | 7,976,475 | 36 days agoSun, 12 Jul 2026 17:14:40 UTC | 0x2bbc…8ba0 | IN | NoderaRobinHood | $0.000 ETH | 0.00000252 | |
| 0x0fd9be…f64cde | Approve | 7,976,474 | 36 days agoSun, 12 Jul 2026 17:14:40 UTC | 0x032d…5972 | IN | NoderaRobinHood | $0.000 ETH | 0.00000252 | |
| 0x8183a7…5b1674 | Approve | 7,976,048 | 36 days agoSun, 12 Jul 2026 17:13:59 UTC | 0x7b10…56dc | IN | NoderaRobinHood | $0.000 ETH | 0.00000251 | |
| 0xcd8100…e833c2 | Approve | 7,975,947 | 36 days agoSun, 12 Jul 2026 17:13:49 UTC | 0x2456…3e9a | IN | NoderaRobinHood | $0.000 ETH | 0.00000248 | |
| 0xb76c1c…10c01f | Approve | 7,975,820 | 36 days agoSun, 12 Jul 2026 17:13:36 UTC | 0x264b…1430 | IN | NoderaRobinHood | $0.000 ETH | 0.00000249 | |
| 0x5e459d…9a57dc | Approve | 7,975,820 | 36 days agoSun, 12 Jul 2026 17:13:36 UTC | 0x3a5b…c17d | IN | NoderaRobinHood | $0.000 ETH | 0.00000249 | |
| 0x126543…6e094a | Approve | 7,975,820 | 36 days agoSun, 12 Jul 2026 17:13:36 UTC | 0x1d8a…e720 | IN | NoderaRobinHood | $0.000 ETH | 0.00000249 | |
| 0xad7c36…9f3898 | Approve | 7,975,820 | 36 days agoSun, 12 Jul 2026 17:13:36 UTC | 0x3451…cef6 | IN | NoderaRobinHood | $0.000 ETH | 0.00000249 | |
| 0xf09be9…d5793f | Approve | 7,975,820 | 36 days agoSun, 12 Jul 2026 17:13:36 UTC | 0xaa02…c668 | IN | NoderaRobinHood | $0.000 ETH | 0.00000249 | |
| 0x47d82e…b21998 | Approve | 7,975,819 | 36 days agoSun, 12 Jul 2026 17:13:36 UTC | 0xefea…cc44 | IN | NoderaRobinHood | $0.000 ETH | 0.00000249 | |
| 0x1f40e2…eecce3 | Approve | 7,975,819 | 36 days agoSun, 12 Jul 2026 17:13:36 UTC | 0xd45a…610a | IN | NoderaRobinHood | $0.000 ETH | 0.00000249 | |
| 0x964c29…f869b1 | Approve | 7,975,818 | 36 days agoSun, 12 Jul 2026 17:13:36 UTC | 0x2727…32e5 | IN | NoderaRobinHood | $0.000 ETH | 0.00000248 | |
| 0x5e5137…77ffb3 | Approve | 7,975,818 | 36 days agoSun, 12 Jul 2026 17:13:36 UTC | 0xccf4…a0f9 | IN | NoderaRobinHood | $0.000 ETH | 0.00000248 | |
| 0xb5b947…fbb09a | Approve | 7,975,391 | 36 days agoSun, 12 Jul 2026 17:12:53 UTC | 0x418f…93fe | IN | NoderaRobinHood | $0.000 ETH | 0.00000249 | |
| 0x1ad30f…e8d227 | Approve | 7,973,187 | 36 days agoSun, 12 Jul 2026 17:09:12 UTC | 0x93f4…0921 | IN | NoderaRobinHood | $0.000 ETH | 0.00000244 |