// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;
interface IQuotron404Base {
function ownerOfId(uint256 id) external view returns (address);
function nftBalanceOf(address a) external view returns (uint256);
function tokenURI(uint256 id) external view returns (string memory);
function royaltyInfo(uint256 id, uint256 salePrice)
external
view
returns (address, uint256);
function mirrorTransfer(address from, address to, uint256 id) external;
}
/// @title QuotronMirror — the ERC-721 face of the QUOTRONS collection
/// @notice Marketplace-standard ERC-721 + ERC-2981 surface. Ownership
/// truth lives in Quotron404 (the ERC-20/404 core); this contract holds
/// approvals, emits the standard events, and proxies transfers so the
/// two token standards never share a selector (DN404-style split).
contract QuotronMirror {
string public constant name = "QUOTRONS";
string public constant symbol = "QUOTRON";
IQuotron404Base public immutable base;
mapping(uint256 => address) public getApproved;
mapping(address => mapping(address => bool)) public isApprovedForAll;
event Transfer(address indexed from, address indexed to, uint256 indexed id);
event Approval(address indexed owner, address indexed approved, uint256 indexed id);
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
error NotBase();
error NotAuthorized();
error UnsafeReceiver();
constructor(address base_) {
base = IQuotron404Base(base_);
}
// ── views ───────────────────────────────────────────────────────
function ownerOf(uint256 id) public view returns (address o) {
o = base.ownerOfId(id);
require(o != address(0), "unminted");
}
function balanceOf(address a) external view returns (uint256) {
return base.nftBalanceOf(a);
}
function tokenURI(uint256 id) external view returns (string memory) {
return base.tokenURI(id);
}
function royaltyInfo(uint256 id, uint256 salePrice)
external
view
returns (address, uint256)
{
return base.royaltyInfo(id, salePrice);
}
function supportsInterface(bytes4 interfaceId) external pure returns (bool) {
return interfaceId == 0x01ffc9a7 // ERC-165
|| interfaceId == 0x80ac58cd // ERC-721
|| interfaceId == 0x5b5e139f // ERC-721 Metadata
|| interfaceId == 0x2a55205a; // ERC-2981
}
// ── approvals ───────────────────────────────────────────────────
function approve(address spender, uint256 id) external {
address o = ownerOf(id);
if (msg.sender != o && !isApprovedForAll[o][msg.sender]) revert NotAuthorized();
getApproved[id] = spender;
emit Approval(o, spender, id);
}
function setApprovalForAll(address operator, bool approved) external {
isApprovedForAll[msg.sender][operator] = approved;
emit ApprovalForAll(msg.sender, operator, approved);
}
// ── transfers ───────────────────────────────────────────────────
function transferFrom(address from, address to, uint256 id) public {
address o = ownerOf(id);
require(o == from, "wrong from");
if (
msg.sender != o && msg.sender != getApproved[id]
&& !isApprovedForAll[o][msg.sender]
) revert NotAuthorized();
delete getApproved[id];
base.mirrorTransfer(from, to, id);
emit Transfer(from, to, id);
}
function safeTransferFrom(address from, address to, uint256 id) external {
safeTransferFrom(from, to, id, "");
}
function safeTransferFrom(address from, address to, uint256 id, bytes memory data)
public
{
transferFrom(from, to, id);
if (to.code.length != 0) {
(bool ok, bytes memory ret) = to.call(
abi.encodeWithSelector(0x150b7a02, msg.sender, from, id, data)
);
if (!ok || ret.length < 32 || bytes4(ret) != bytes4(0x150b7a02)) {
revert UnsafeReceiver();
}
}
}
/// @dev Base-driven event emission for materialize/dissolve syncs.
function emitTransfer(address from, address to, uint256 id) external {
if (msg.sender != address(base)) revert NotBase();
emit Transfer(from, to, id);
}
}[
{
"type": "constructor",
"inputs": [
{
"name": "base_",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "nonpayable"
},
{
"name": "NotAuthorized",
"type": "error",
"inputs": []
},
{
"name": "NotBase",
"type": "error",
"inputs": []
},
{
"name": "UnsafeReceiver",
"type": "error",
"inputs": []
},
{
"name": "Approval",
"type": "event",
"inputs": [
{
"name": "owner",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "approved",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "id",
"type": "uint256",
"indexed": true,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "ApprovalForAll",
"type": "event",
"inputs": [
{
"name": "owner",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "operator",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "approved",
"type": "bool",
"indexed": false,
"internalType": "bool"
}
],
"anonymous": false
},
{
"name": "Transfer",
"type": "event",
"inputs": [
{
"name": "from",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "to",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "id",
"type": "uint256",
"indexed": true,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "approve",
"type": "function",
"inputs": [
{
"name": "spender",
"type": "address",
"internalType": "address"
},
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "balanceOf",
"type": "function",
"inputs": [
{
"name": "a",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "base",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "contract IQuotron404Base"
}
],
"stateMutability": "view"
},
{
"name": "emitTransfer",
"type": "function",
"inputs": [
{
"name": "from",
"type": "address",
"internalType": "address"
},
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "getApproved",
"type": "function",
"inputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "isApprovedForAll",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"name": "name",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "ownerOf",
"type": "function",
"inputs": [
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "o",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "royaltyInfo",
"type": "function",
"inputs": [
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "salePrice",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
},
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "safeTransferFrom",
"type": "function",
"inputs": [
{
"name": "from",
"type": "address",
"internalType": "address"
},
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "safeTransferFrom",
"type": "function",
"inputs": [
{
"name": "from",
"type": "address",
"internalType": "address"
},
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "data",
"type": "bytes",
"internalType": "bytes"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "setApprovalForAll",
"type": "function",
"inputs": [
{
"name": "operator",
"type": "address",
"internalType": "address"
},
{
"name": "approved",
"type": "bool",
"internalType": "bool"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "supportsInterface",
"type": "function",
"inputs": [
{
"name": "interfaceId",
"type": "bytes4",
"internalType": "bytes4"
}
],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "pure"
},
{
"name": "symbol",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "tokenURI",
"type": "function",
"inputs": [
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "string",
"internalType": "string"
}
],
"stateMutability": "view"
},
{
"name": "transferFrom",
"type": "function",
"inputs": [
{
"name": "from",
"type": "address",
"internalType": "address"
},
{
"name": "to",
"type": "address",
"internalType": "address"
},
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
}
]0x608060405234801561000f575f80fd5b50600436106100fb575f3560e01c80635001f3b511610093578063a22cb46511610063578063a22cb4651461029c578063b88d4fde146102af578063c87b56dd146102c2578063e985e9c5146102d5575f80fd5b80635001f3b51461021b5780636352211e1461024257806370a082311461025557806395d89b4114610276575f80fd5b806323b872dd116100ce57806323b872dd146101b057806323de6651146101c35780632a55205a146101d657806342842e0e14610208575f80fd5b806301ffc9a7146100ff57806306fdde0314610127578063081812fc1461015b578063095ea7b31461019b575b5f80fd5b61011261010d366004610aa7565b610302565b60405190151581526020015b60405180910390f35b61014e6040518060400160405280600881526020016751554f54524f4e5360c01b81525081565b60405161011e9190610b03565b610183610169366004610b15565b5f602081905290815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161011e565b6101ae6101a9366004610b43565b61036e565b005b6101ae6101be366004610b6d565b61042f565b6101ae6101d1366004610b6d565b6105f1565b6101e96101e4366004610bab565b610680565b604080516001600160a01b03909316835260208301919091520161011e565b6101ae610216366004610b6d565b61071c565b6101837f00000000000000000000000040686524e56aff0f1446958725dcf6e6da5381e681565b610183610250366004610b15565b61073b565b610268610263366004610bcb565b61080c565b60405190815260200161011e565b61014e6040518060400160405280600781526020016628aaa7aa2927a760c91b81525081565b6101ae6102aa366004610be6565b610898565b6101ae6102bd366004610c8d565b610903565b61014e6102d0366004610b15565b610a1b565b6101126102e3366004610d35565b600160209081525f928352604080842090915290825290205460ff1681565b5f6301ffc9a760e01b6001600160e01b03198316148061033257506380ac58cd60e01b6001600160e01b03198316145b8061034d5750635b5e139f60e01b6001600160e01b03198316145b80610368575063152a902d60e11b6001600160e01b03198316145b92915050565b5f6103788261073b565b9050336001600160a01b038216148015906103b657506001600160a01b0381165f90815260016020908152604080832033845290915290205460ff16155b156103d45760405163ea8e4eb560e01b815260040160405180910390fd5b5f8281526020819052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f6104398261073b565b9050836001600160a01b0316816001600160a01b03161461048e5760405162461bcd60e51b815260206004820152600a60248201526977726f6e672066726f6d60b01b60448201526064015b60405180910390fd5b336001600160a01b038216148015906104bd57505f828152602081905260409020546001600160a01b03163314155b80156104ec57506001600160a01b0381165f90815260016020908152604080832033845290915290205460ff16155b1561050a5760405163ea8e4eb560e01b815260040160405180910390fd5b5f828152602081905260409081902080546001600160a01b031916905551633a5f884b60e11b81526001600160a01b0385811660048301528481166024830152604482018490527f00000000000000000000000040686524e56aff0f1446958725dcf6e6da5381e616906374bf1096906064015f604051808303815f87803b158015610594575f80fd5b505af11580156105a6573d5f803e3d5ffd5b5050505081836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b336001600160a01b037f00000000000000000000000040686524e56aff0f1446958725dcf6e6da5381e6161461063a5760405163782429af60e11b815260040160405180910390fd5b80826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60405163152a902d60e11b815260048101839052602481018290525f9081906001600160a01b037f00000000000000000000000040686524e56aff0f1446958725dcf6e6da5381e61690632a55205a906044016040805180830381865afa1580156106ed573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107119190610d61565b915091509250929050565b61073683838360405180602001604052805f815250610903565b505050565b6040516330c8bb3f60e21b8152600481018290525f907f00000000000000000000000040686524e56aff0f1446958725dcf6e6da5381e66001600160a01b03169063c322ecfc90602401602060405180830381865afa1580156107a0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107c49190610d8d565b90506001600160a01b0381166108075760405162461bcd60e51b81526020600482015260086024820152671d5b9b5a5b9d195960c21b6044820152606401610485565b919050565b6040516301c627d360e31b81526001600160a01b0382811660048301525f917f00000000000000000000000040686524e56aff0f1446958725dcf6e6da5381e690911690630e313e9890602401602060405180830381865afa158015610874573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103689190610da8565b335f8181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61090e84848461042f565b6001600160a01b0383163b15610a15575f80846001600160a01b031663150b7a02338887876040516024016109469493929190610dbf565b6040516020818303038152906040529060e01b6020820180516001600160e01b03838183161783525050505060405161097f9190610dfb565b5f604051808303815f865af19150503d805f81146109b8576040519150601f19603f3d011682016040523d82523d5f602084013e6109bd565b606091505b50915091508115806109d0575060208151105b806109f45750630a85bd0160e11b6109e782610e11565b6001600160e01b03191614155b15610a12576040516317f535ad60e21b815260040160405180910390fd5b50505b50505050565b60405163c87b56dd60e01b8152600481018290526060907f00000000000000000000000040686524e56aff0f1446958725dcf6e6da5381e66001600160a01b03169063c87b56dd906024015f60405180830381865afa158015610a80573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526103689190810190610e4f565b5f60208284031215610ab7575f80fd5b81356001600160e01b031981168114610ace575f80fd5b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610ace6020830184610ad5565b5f60208284031215610b25575f80fd5b5035919050565b6001600160a01b0381168114610b40575f80fd5b50565b5f8060408385031215610b54575f80fd5b8235610b5f81610b2c565b946020939093013593505050565b5f805f60608486031215610b7f575f80fd5b8335610b8a81610b2c565b92506020840135610b9a81610b2c565b929592945050506040919091013590565b5f8060408385031215610bbc575f80fd5b50508035926020909101359150565b5f60208284031215610bdb575f80fd5b8135610ace81610b2c565b5f8060408385031215610bf7575f80fd5b8235610c0281610b2c565b915060208301358015158114610c16575f80fd5b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610c5e57610c5e610c21565b604052919050565b5f67ffffffffffffffff821115610c7f57610c7f610c21565b50601f01601f191660200190565b5f805f8060808587031215610ca0575f80fd5b8435610cab81610b2c565b93506020850135610cbb81610b2c565b925060408501359150606085013567ffffffffffffffff811115610cdd575f80fd5b8501601f81018713610ced575f80fd5b8035610d00610cfb82610c66565b610c35565b818152886020838501011115610d14575f80fd5b816020840160208301375f6020838301015280935050505092959194509250565b5f8060408385031215610d46575f80fd5b8235610d5181610b2c565b91506020830135610c1681610b2c565b5f8060408385031215610d72575f80fd5b8251610d7d81610b2c565b6020939093015192949293505050565b5f60208284031215610d9d575f80fd5b8151610ace81610b2c565b5f60208284031215610db8575f80fd5b5051919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90610df190830184610ad5565b9695505050505050565b5f82518060208501845e5f920191825250919050565b805160208201516001600160e01b0319811691906004821015610e48576001600160e01b0319600483900360031b81901b82161692505b5050919050565b5f60208284031215610e5f575f80fd5b815167ffffffffffffffff811115610e75575f80fd5b8201601f81018413610e85575f80fd5b8051610e93610cfb82610c66565b818152856020838501011115610ea7575f80fd5b8160208401602083015e5f9181016020019190915294935050505056fea26469706673582212201f92abf6cd324d83e6ca398a513c1a3a4d73cb39fc1dc70fe7863c27c4dd825c64736f6c634300081a0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| EarthCoin (EarthCoin) | EarthCoin | 15 | — | — |
| Penguin wif bag (Tao Tao) | Tao Tao | 15 | — | — |
| Mancer (MANCER) | MANCER | 14 | — | — |
| Hood Game (HOODGAME) | HOODGAME | 10 | — | — |
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x34bf59…e12e8f | 7 hrs agoTue, 18 Aug 2026 01:33:37 UTC | ApprovalForAll | [0] 0x000000000000…99acd76b [1] 0x000000000000…0000c300 data: 0x000000000000000000…00000001 |
| 0x25d174…e33fa1 | 8 hrs agoMon, 17 Aug 2026 23:45:42 UTC | ApprovalForAll | [0] 0x000000000000…f9d46fc5 [1] 0x000000000000…0000c300 data: 0x000000000000000000…00000000 |
| 0xe47d2f…6dbf6d | 9 hrs agoMon, 17 Aug 2026 22:49:10 UTC | Transfer | [0] 0x000000000000…df92e57e [1] 0x000000000000…d64d3541 [2] 0x000000000000…00000445 |
| 0xa9fef9…85a2ff | 9 hrs agoMon, 17 Aug 2026 22:48:59 UTC | ApprovalForAll | [0] 0x000000000000…df92e57e [1] 0x000000000000…0000c300 data: 0x000000000000000000…00000001 |
| 0x879df7…234a7b | 15 hrs agoMon, 17 Aug 2026 17:31:14 UTC | Transfer | [0] 0x000000000000…59044dea [1] 0x000000000000…99acd76b [2] 0x000000000000…00000ba1 |
| 0xf592bd…cc6376 | 15 hrs agoMon, 17 Aug 2026 17:31:04 UTC | ApprovalForAll | [0] 0x000000000000…59044dea [1] 0x000000000000…0000c300 data: 0x000000000000000000…00000001 |
| 0x45d0b7…ccdbfd | 16 hrs agoMon, 17 Aug 2026 15:46:01 UTC | Transfer | [0] 0x000000000000…d302964a [1] 0x000000000000…7e253068 [2] 0x000000000000…000009ff |
| 0xca37e2…7efa75 | 16 hrs agoMon, 17 Aug 2026 15:45:49 UTC | Transfer | [0] 0x000000000000…d302964a [1] 0x000000000000…7e253068 [2] 0x000000000000…000000e9 |
| 0x7e965a…8c3b86 | 16 hrs agoMon, 17 Aug 2026 15:45:37 UTC | Transfer | [0] 0x000000000000…d302964a [1] 0x000000000000…7e253068 [2] 0x000000000000…00000de5 |
| 0x1e4ca4…ae0e1e | 17 hrs agoMon, 17 Aug 2026 14:56:47 UTC | Transfer | [0] 0x000000000000…30948099 [1] 0x000000000000…aca3a087 [2] 0x000000000000…00000801 |
| 0x1e4ca4…ae0e1e | 17 hrs agoMon, 17 Aug 2026 14:56:47 UTC | Transfer | [0] 0x000000000000…30948099 [1] 0x000000000000…961df4e3 [2] 0x000000000000…00000f51 |
| 0x1e4ca4…ae0e1e | 17 hrs agoMon, 17 Aug 2026 14:56:47 UTC | Transfer | [0] 0x000000000000…30948099 [1] 0x000000000000…961df4e3 [2] 0x000000000000…000007ce |
| 0x9d6f4e…43daf1 | 17 hrs agoMon, 17 Aug 2026 14:56:39 UTC | ApprovalForAll | [0] 0x000000000000…30948099 [1] 0x000000000000…0000c300 data: 0x000000000000000000…00000001 |
| 0xa322f5…3d8def | 18 hrs agoMon, 17 Aug 2026 14:38:29 UTC | Transfer | [0] 0x000000000000…6d3a8da1 [1] 0x000000000000…961df4e3 [2] 0x000000000000…0000012d |
| 0x5a897c…f6a76e | 18 hrs agoMon, 17 Aug 2026 14:38:27 UTC | ApprovalForAll | [0] 0x000000000000…6d3a8da1 [1] 0x000000000000…0000c300 data: 0x000000000000000000…00000001 |
| 0x0c3a19…ab524c | 18 hrs agoMon, 17 Aug 2026 14:20:16 UTC | Transfer | [0] 0x000000000000…956ba181 [1] 0x000000000000…6e98b617 [2] 0x000000000000…00000467 |
| 0x0c3a19…ab524c | 18 hrs agoMon, 17 Aug 2026 14:20:16 UTC | Transfer | [0] 0x000000000000…88333a69 [1] 0x000000000000…6e98b617 [2] 0x000000000000…000003f7 |
| 0xa6f99b…089895 | 18 hrs agoMon, 17 Aug 2026 14:04:52 UTC | ApprovalForAll | [0] 0x000000000000…956ba181 [1] 0x000000000000…0000c300 data: 0x000000000000000000…00000001 |
| 0x54d403…ec0d01 | 20 hrs agoMon, 17 Aug 2026 12:20:00 UTC | Transfer | [0] 0x000000000000…8971e7ca [1] 0x000000000000…961df4e3 [2] 0x000000000000…000009e2 |
| 0xe7fb4c…5e51e6 | 20 hrs agoMon, 17 Aug 2026 12:19:39 UTC | Transfer | [0] 0x000000000000…8971e7ca [1] 0x000000000000…961df4e3 [2] 0x000000000000…000004ee |
| 0x9e3b5f…3e3076 | 22 hrs agoMon, 17 Aug 2026 10:06:21 UTC | Transfer | [0] 0x000000000000…634d8639 [1] 0x000000000000…d64d3541 [2] 0x000000000000…000002bb |
| 0x9e3b5f…3e3076 | 22 hrs agoMon, 17 Aug 2026 10:06:21 UTC | Transfer | [0] 0x000000000000…634d8639 [1] 0x000000000000…d64d3541 [2] 0x000000000000…0000024e |
| 0x9e3b5f…3e3076 | 22 hrs agoMon, 17 Aug 2026 10:06:21 UTC | Transfer | [0] 0x000000000000…634d8639 [1] 0x000000000000…d64d3541 [2] 0x000000000000…00000be2 |
| 0x022851…1edf62 | 22 hrs agoMon, 17 Aug 2026 10:06:15 UTC | ApprovalForAll | [0] 0x000000000000…634d8639 [1] 0x000000000000…0000c300 data: 0x000000000000000000…00000001 |
| 0x652d0e…89ccda | 1 day agoMon, 17 Aug 2026 08:36:18 UTC | Transfer | [0] 0x000000000000…00000000 [1] 0x000000000000…f1d4e06e [2] 0x000000000000…000004d7 |
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0x34bf59…e12e8f | Set Approval For All | 39,306,681 | 7 hrs agoTue, 18 Aug 2026 01:33:37 UTC | 0x2a9b…d76b | IN | QUOTRONS | $0.000 ETH | 0.00000092 | |
| 0x25d174…e33fa1 | Set Approval For All | 39,242,079 | 8 hrs agoMon, 17 Aug 2026 23:45:42 UTC | 0x699d…6fc5 | IN | QUOTRONS | $0.000 ETH | 0.00000049 | |
| 0xa9fef9…85a2ff | Set Approval For All | 39,208,093 | 9 hrs agoMon, 17 Aug 2026 22:48:59 UTC | 0x7771…e57e | IN | QUOTRONS | $0.000 ETH | 0.00000092 | |
| 0xf592bd…cc6376 | Set Approval For All | 39,017,904 | 15 hrs agoMon, 17 Aug 2026 17:31:04 UTC | 0xa924…4dea | IN | QUOTRONS | $0.000 ETH | 0.00000093 | |
| 0x9d6f4e…43daf1 | Set Approval For All | 38,925,439 | 17 hrs agoMon, 17 Aug 2026 14:56:39 UTC | 0x19c1…8099 | IN | QUOTRONS | $0.000 ETH | 0.00000093 | |
| 0x5a897c…f6a76e | Set Approval For All | 38,914,514 | 18 hrs agoMon, 17 Aug 2026 14:38:27 UTC | 0x54ab…8da1 | IN | QUOTRONS | $0.000 ETH | 0.00000092 | |
| 0xa6f99b…089895 | Set Approval For All | 38,894,384 | 18 hrs agoMon, 17 Aug 2026 14:04:52 UTC | 0xfaf5…a181 | IN | QUOTRONS | $0.000 ETH | 0.00000093 | |
| 0x022851…1edf62 | Set Approval For All | 38,751,623 | 22 hrs agoMon, 17 Aug 2026 10:06:15 UTC | 0xa992…8639 | IN | QUOTRONS | $0.000 ETH | 0.00000093 | |
| 0x874af7…da6825 | Set Approval For All | 38,654,427 | 1 day agoMon, 17 Aug 2026 07:23:36 UTC | 0xb2ea…e7ca | IN | QUOTRONS | $0.000 ETH | 0.00000092 | |
| 0xe75293…90944d | Set Approval For All | 38,411,371 | 1 day agoMon, 17 Aug 2026 00:36:57 UTC | 0xd6f7…b151 | IN | QUOTRONS | $0.000 ETH | 0.00000093 | |
| 0xb425e1…80536b | Set Approval For All | 38,292,077 | 1 day agoSun, 16 Aug 2026 21:17:27 UTC | 0x1e61…0527 | IN | QUOTRONS | $0.000 ETH | 0.00000092 | |
| 0x06bd29…a7756d | Set Approval For All | 38,277,905 | 1 day agoSun, 16 Aug 2026 20:53:47 UTC | 0xcba3…e7ca | IN | QUOTRONS | $0.000 ETH | 0.00000048 | |
| !0x5b1575…ebdee4 | mint | 38,226,100 | 1 day agoSun, 16 Aug 2026 19:27:13 UTC | 0xe804…45d7 | IN | QUOTRONS | $0.000 ETH | 0.00000042 | |
| 0x047159…1839c6 | Set Approval For All | 38,208,682 | 1 day agoSun, 16 Aug 2026 18:58:05 UTC | 0x00c1…ee05 | IN | QUOTRONS | $0.000 ETH | 0.00000092 | |
| 0xc38133…6b403a | Set Approval For All | 38,166,712 | 1 day agoSun, 16 Aug 2026 17:47:54 UTC | 0x9e94…6a4b | IN | QUOTRONS | $0.000 ETH | 0.00000092 | |
| 0x529f06…581b52 | Set Approval For All | 38,162,267 | 1 day agoSun, 16 Aug 2026 17:40:28 UTC | 0x2a0e…633b | IN | QUOTRONS | $0.000 ETH | 0.00000092 | |
| 0x56bedf…73f11a | Set Approval For All | 38,088,720 | 1 day agoSun, 16 Aug 2026 15:37:31 UTC | 0x5cd0…466a | IN | QUOTRONS | $0.000 ETH | 0.00000092 | |
| 0xfc5588…924b34 | Safe Transfer From | 38,048,365 | 1 day agoSun, 16 Aug 2026 14:30:01 UTC | 0xce47…d9cf | IN | QUOTRONS | $0.000 ETH | 0.00000262 | |
| 0x8b0338…b28c0c | Set Approval For All | 38,047,780 | 1 day agoSun, 16 Aug 2026 14:29:03 UTC | 0xc4cc…0199 | IN | QUOTRONS | $0.000 ETH | 0.00000094 | |
| 0xf27792…2cb498 | Safe Transfer From | 37,999,209 | 1 day agoSun, 16 Aug 2026 13:07:44 UTC | 0xeb1a…7a62 | IN | QUOTRONS | $0.000 ETH | 0.00000239 | |
| 0x198b17…51c8a5 | Safe Transfer From | 37,999,082 | 1 day agoSun, 16 Aug 2026 13:07:31 UTC | 0xeb1a…7a62 | IN | QUOTRONS | $0.000 ETH | 0.00000276 | |
| 0x17c6d4…2a3072 | Safe Transfer From | 37,998,933 | 1 day agoSun, 16 Aug 2026 13:07:16 UTC | 0xeb1a…7a62 | IN | QUOTRONS | $0.000 ETH | 0.00000253 | |
| 0xb52072…1c69bf | Safe Transfer From | 37,998,803 | 1 day agoSun, 16 Aug 2026 13:07:03 UTC | 0xeb1a…7a62 | IN | QUOTRONS | $0.000 ETH | 0.00000272 | |
| 0x201003…f8ea97 | Safe Transfer From | 37,998,682 | 1 day agoSun, 16 Aug 2026 13:06:51 UTC | 0xeb1a…7a62 | IN | QUOTRONS | $0.000 ETH | 0.00000272 | |
| 0xfa1ceb…bf3c18 | Safe Transfer From | 37,998,560 | 1 day agoSun, 16 Aug 2026 13:06:39 UTC | 0xeb1a…7a62 | IN | QUOTRONS | $0.000 ETH | 0.00000271 |
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xe1dc465e…a1cf0b | Transfer | 38,131,883 | 1 day agoSun, 16 Aug 2026 16:49:39 UTC | 0xcb85…9908 | IN | 0xbde7…cd83 | 10 HOODGAME | Hood Game (HOODGAME) | |
| 0x345284ac…29a754 | Transfer | 38,035,429 | 1 day agoSun, 16 Aug 2026 14:08:25 UTC | 0xcb85…9908 | IN | 0xbde7…cd83 | 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 | 0xbde7…cd83 | 15 EarthCoin | EarthCoin (EarthCoin) | |
| 0x978987e0…174741 | Transfer | 35,640,195 | 4 days agoThu, 13 Aug 2026 19:25:36 UTC | 0xcb85…9908 | IN | 0xbde7…cd83 | 14 MANCER | Mancer (MANCER) |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 34,546,612 | 5 days agoWed, 12 Aug 2026 12:58:37 UTC | 0x451dea…4bb9ef | CREATE | 0x60a06040 | 0x4068…81e6 | IN | 0xbde7…cd83 | 0 ETH |