// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
// ███╗ ███╗ █████╗ ███╗ ██╗ ██████╗███████╗██████╗ ███████╗
// ████╗ ████║██╔══██╗████╗ ██║██╔════╝██╔════╝██╔══██╗██╔════╝
// ██╔████╔██║███████║██╔██╗ ██║██║ █████╗ ██████╔╝███████╗
// ██║╚██╔╝██║██╔══██║██║╚██╗██║██║ ██╔══╝ ██╔══██╗╚════██║
// ██║ ╚═╝ ██║██║ ██║██║ ╚████║╚██████╗███████╗██║ ██║███████║
// ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝╚══════╝╚═╝ ╚═╝╚══════╝
//
// CHAIN MANCERS · KEEPERS OF THE FLOOR
//
// Whitepaper : https://mancer.xyz/whitepaper.pdf
// Chain : Robinhood Chain mainnet (EVM, chain id 4663)
/// @title Chain Mancers ($MANCERS)
/// @notice The native token of Mancer — a settlement contract on Robinhood Chain
/// that never custodies funds and only settles fills that clear an on-chain
/// price floor. $MANCERS activates Chain Mancer NFTs into the keeper network
/// that runs the protocol, and shares protocol revenue back to activated
/// holders in ETH.
///
/// @dev === TOKENOMICS (per whitepaper) ===
///
/// Fixed supply: 10,000,000,000 MANCERS (10B, 18 decimals)
/// Supply cap: enforced at construction — no mint function exists
///
/// Downstream distribution (executed as separate txs from the deployer,
/// not baked into the token contract for maximum flexibility):
///
/// · 25% → LP on Stonkbrokers
/// · 75% → Anvil AMM, backing the 5,000 Chain Mancers at 500,000 each
/// (25% of the NFT supply — 1,250 — is seeded into the Anvil
/// AMM so a holder can swap NFT↔MANCERS anytime for a 10% fee)
/// · WL → Whitelist holders on 0x77CcBA8a…CfdFD9c may be airdropped
/// separately by the deployer
///
/// @dev === DESIGN INTENT ===
///
/// This token is a leaf, not a mechanism. Every economic decision belongs
/// elsewhere — the Anvil AMM, the settlement contract, the keeper gate.
/// The MANCERS ERC-20 does one thing: mint the fixed supply to the deployer
/// at construction and get out of the way. Splits, seeds, airdrops, and LP
/// are all deployer-side transactions.
///
/// · No mint function — supply is what it is, forever
/// · No burn function — holders may send to 0xdead if they wish
/// · No owner / no upgradeability — no proxy, no admin, no timelock
/// · No pause / blacklist / freeze — Mancer's own §6 principle: exits
/// are never gated
/// · No fees on transfer / no hook — an ERC-20 is not a policy surface
/// · Constructor is the only privileged moment; it runs once and dies
///
/// These are the same properties the settlement contract itself is built
/// around — what the maker signed is what executes, forever. What the
/// constructor minted is what circulates, forever.
contract Mancers is ERC20 {
/// @notice Fixed total supply, minted at construction. 10,000,000,000 MANCERS.
uint256 public constant TOTAL_SUPPLY = 10_000_000_000 * 1e18;
constructor() ERC20("Chain Mancers", "MANCER") {
_mint(msg.sender, TOTAL_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": "TOTAL_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"
}
]0x608060405234801561000f575f5ffd5b506040518060400160405280600d81526020016c436861696e204d616e6365727360981b8152506040518060400160405280600681526020016526a0a721a2a960d11b81525081600390816100649190610290565b5060046100718282610290565b505050610090336b204fce5e3e2502611000000061009560201b60201c565b61036f565b6001600160a01b0382166100c35760405163ec442f0560e01b81525f60048201526024015b60405180910390fd5b6100ce5f83836100d2565b5050565b6001600160a01b0383166100fc578060025f8282546100f1919061034a565b9091555061016c9050565b6001600160a01b0383165f908152602081905260409020548181101561014e5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016100ba565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610188576002805482900390556101a6565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516101eb91815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061022057607f821691505b60208210810361023e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561028b57805f5260205f20601f840160051c810160208510156102695750805b601f840160051c820191505b81811015610288575f8155600101610275565b50505b505050565b81516001600160401b038111156102a9576102a96101f8565b6102bd816102b7845461020c565b84610244565b6020601f8211600181146102ef575f83156102d85750848201515b5f19600385901b1c1916600184901b178455610288565b5f84815260208120601f198516915b8281101561031e57878501518255602094850194600190920191016102fe565b508482101561033b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561036957634e487b7160e01b5f52601160045260245ffd5b92915050565b6107028061037c5f395ff3fe608060405234801561000f575f5ffd5b506004361061009b575f3560e01c806370a082311161006357806370a0823114610114578063902d55a51461013c57806395d89b411461014f578063a9059cbb14610157578063dd62ed3e1461016a575f5ffd5b806306fdde031461009f578063095ea7b3146100bd57806318160ddd146100e057806323b872dd146100f2578063313ce56714610105575b5f5ffd5b6100a76101a2565b6040516100b49190610572565b60405180910390f35b6100d06100cb3660046105c2565b610232565b60405190151581526020016100b4565b6002545b6040519081526020016100b4565b6100d06101003660046105ea565b61024b565b604051601281526020016100b4565b6100e4610122366004610624565b6001600160a01b03165f9081526020819052604090205490565b6100e46b204fce5e3e2502611000000081565b6100a761026e565b6100d06101653660046105c2565b61027d565b6100e4610178366004610644565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101b190610675565b80601f01602080910402602001604051908101604052809291908181526020018280546101dd90610675565b80156102285780601f106101ff57610100808354040283529160200191610228565b820191905f5260205f20905b81548152906001019060200180831161020b57829003601f168201915b5050505050905090565b5f3361023f81858561028a565b60019150505b92915050565b5f3361025885828561029c565b61026385858561031d565b506001949350505050565b6060600480546101b190610675565b5f3361023f81858561031d565b610297838383600161037a565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610317578181101561030957604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61031784848484035f61037a565b50505050565b6001600160a01b03831661034657604051634b637e8f60e11b81525f6004820152602401610300565b6001600160a01b03821661036f5760405163ec442f0560e01b81525f6004820152602401610300565b61029783838361044c565b6001600160a01b0384166103a35760405163e602df0560e01b81525f6004820152602401610300565b6001600160a01b0383166103cc57604051634a1406b160e11b81525f6004820152602401610300565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561031757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161043e91815260200190565b60405180910390a350505050565b6001600160a01b038316610476578060025f82825461046b91906106ad565b909155506104e69050565b6001600160a01b0383165f90815260208190526040902054818110156104c85760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610300565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661050257600280548290039055610520565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161056591815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146105bd575f5ffd5b919050565b5f5f604083850312156105d3575f5ffd5b6105dc836105a7565b946020939093013593505050565b5f5f5f606084860312156105fc575f5ffd5b610605846105a7565b9250610613602085016105a7565b929592945050506040919091013590565b5f60208284031215610634575f5ffd5b61063d826105a7565b9392505050565b5f5f60408385031215610655575f5ffd5b61065e836105a7565b915061066c602084016105a7565b90509250929050565b600181811c9082168061068957607f821691505b6020821081036106a757634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561024557634e487b7160e01b5f52601160045260245ffdfea26469706673582212200e0720ba800b6e045d1f2a6015a546e2a7515d4e3c518c6dd9eb8876384e2e6f64736f6c634300081c0033
0x608060405234801561000f575f5ffd5b506004361061009b575f3560e01c806370a082311161006357806370a0823114610114578063902d55a51461013c57806395d89b411461014f578063a9059cbb14610157578063dd62ed3e1461016a575f5ffd5b806306fdde031461009f578063095ea7b3146100bd57806318160ddd146100e057806323b872dd146100f2578063313ce56714610105575b5f5ffd5b6100a76101a2565b6040516100b49190610572565b60405180910390f35b6100d06100cb3660046105c2565b610232565b60405190151581526020016100b4565b6002545b6040519081526020016100b4565b6100d06101003660046105ea565b61024b565b604051601281526020016100b4565b6100e4610122366004610624565b6001600160a01b03165f9081526020819052604090205490565b6100e46b204fce5e3e2502611000000081565b6100a761026e565b6100d06101653660046105c2565b61027d565b6100e4610178366004610644565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6060600380546101b190610675565b80601f01602080910402602001604051908101604052809291908181526020018280546101dd90610675565b80156102285780601f106101ff57610100808354040283529160200191610228565b820191905f5260205f20905b81548152906001019060200180831161020b57829003601f168201915b5050505050905090565b5f3361023f81858561028a565b60019150505b92915050565b5f3361025885828561029c565b61026385858561031d565b506001949350505050565b6060600480546101b190610675565b5f3361023f81858561031d565b610297838383600161037a565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610317578181101561030957604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064015b60405180910390fd5b61031784848484035f61037a565b50505050565b6001600160a01b03831661034657604051634b637e8f60e11b81525f6004820152602401610300565b6001600160a01b03821661036f5760405163ec442f0560e01b81525f6004820152602401610300565b61029783838361044c565b6001600160a01b0384166103a35760405163e602df0560e01b81525f6004820152602401610300565b6001600160a01b0383166103cc57604051634a1406b160e11b81525f6004820152602401610300565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561031757826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161043e91815260200190565b60405180910390a350505050565b6001600160a01b038316610476578060025f82825461046b91906106ad565b909155506104e69050565b6001600160a01b0383165f90815260208190526040902054818110156104c85760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610300565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661050257600280548290039055610520565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161056591815260200190565b60405180910390a3505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b03811681146105bd575f5ffd5b919050565b5f5f604083850312156105d3575f5ffd5b6105dc836105a7565b946020939093013593505050565b5f5f5f606084860312156105fc575f5ffd5b610605846105a7565b9250610613602085016105a7565b929592945050506040919091013590565b5f60208284031215610634575f5ffd5b61063d826105a7565b9392505050565b5f5f60408385031215610655575f5ffd5b61065e836105a7565b915061066c602084016105a7565b90509250929050565b600181811c9082168061068957607f821691505b6020821081036106a757634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561024557634e487b7160e01b5f52601160045260245ffdfea26469706673582212200e0720ba800b6e045d1f2a6015a546e2a7515d4e3c518c6dd9eb8876384e2e6f64736f6c634300081c0033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| no token transfers for this address yet | |||||||||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x86f19f…cf9482 | 14 hrs agoMon, 17 Aug 2026 16:22:16 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…72013f9b data: 0x000000000000000000…984183ff |
| 0xf12654…3e885a | 1 day agoSun, 16 Aug 2026 23:22:52 UTC | Transfer | [0] 0x000000000000…6c4fef39 [1] 0x000000000000…0000dead data: 0x000000000000000000…d0800000 |
| 0xf02992…ead1bb | 1 day agoSun, 16 Aug 2026 12:20:28 UTC | Transfer | [0] 0x000000000000…20cbbe5f [1] 0x000000000000…43e40951 data: 0x000000000000000000…6c768000 |
| 0xf02992…ead1bb | 1 day agoSun, 16 Aug 2026 12:20:28 UTC | Transfer | [0] 0x000000000000…20cbbe5f [1] 0x000000000000…43e40951 data: 0x000000000000000000…0dc18000 |
| 0xf02992…ead1bb | 1 day agoSun, 16 Aug 2026 12:20:28 UTC | Transfer | [0] 0x000000000000…20cbbe5f [1] 0x000000000000…10d09799 data: 0x000000000000000000…56480000 |
| 0xf02992…ead1bb | 1 day agoSun, 16 Aug 2026 12:20:28 UTC | Transfer | [0] 0x000000000000…f63f6e07 [1] 0x000000000000…20cbbe5f data: 0x000000000000000000…d0800000 |
| 0x64bc0f…5c0da4 | 1 day agoSun, 16 Aug 2026 12:20:26 UTC | Approval | [0] 0x000000000000…f63f6e07 [1] 0x000000000000…72c22734 data: 0x000000000000000000…d0800000 |
| 0x824868…fe2313 | 4 days agoThu, 13 Aug 2026 19:57:34 UTC | Approval | [0] 0x000000000000…e65eb589 [1] 0x000000000000…a9f8e4bf data: 0x000000000000000000…00000000 |
| 0x8207b1…dc103a | 4 days agoThu, 13 Aug 2026 14:49:19 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…15aa49db data: 0x000000000000000000…9d0b3ff4 |
| 0x84342a…88f9e5 | 5 days agoThu, 13 Aug 2026 05:22:44 UTC | Approval | [0] 0x000000000000…dbbfa18a [1] 0x000000000000…a9f8e4bf data: 0x000000000000000000…00000000 |
| 0xe9005e…f7141a | 6 days agoTue, 11 Aug 2026 23:40:22 UTC | Approval | [0] 0x000000000000…347d17b5 [1] 0x000000000000…aa9470e0 data: 0xffffffffffffffffff…ffffffff |
| 0x7bd3b4…c50944 | 7 days agoMon, 10 Aug 2026 23:33:06 UTC | Approval | [0] 0x000000000000…347d17b5 [1] 0x000000000000…ec8b474b data: 0xffffffffffffffffff…ffffffff |
| 0xf6f5d7…35a814 | 7 days agoMon, 10 Aug 2026 22:26:28 UTC | Transfer | [0] 0x000000000000…43e40951 [1] 0x000000000000…72013f9b data: 0x000000000000000000…05e97822 |
| 0x4d7bf5…a14f0c | 7 days agoMon, 10 Aug 2026 22:03:05 UTC | Approval | [0] 0x000000000000…9319da93 [1] 0x000000000000…262c40dc data: 0x000000000000000000…00000000 |
| 0x7b857e…8f2f75 | 7 days agoMon, 10 Aug 2026 20:18:53 UTC | Approval | [0] 0x000000000000…1f79232d [1] 0x000000000000…262c40dc data: 0x000000000000000000…4e25f56f |
| 0xb6bcd9…17d368 | 7 days agoMon, 10 Aug 2026 20:03:54 UTC | Approval | [0] 0x000000000000…ced5e191 [1] 0x000000000000…ec8b474b data: 0xffffffffffffffffff…ffffffff |
| 0x5b0909…1fb0c5 | 8 days agoMon, 10 Aug 2026 06:57:31 UTC | Approval | [0] 0x000000000000…b78b62e9 [1] 0x000000000000…ec8b474b data: 0xffffffffffffffffff…ffffffff |
| 0xaa5dba…faa4a3 | 8 days agoMon, 10 Aug 2026 06:29:11 UTC | Approval | [0] 0x000000000000…2238e7de [1] 0x000000000000…262c40dc data: 0x000000000000000000…feae50ff |
| 0x7923bc…27949e | 8 days agoSun, 09 Aug 2026 23:48:12 UTC | Transfer | [0] 0x000000000000…e861c55b [1] 0x000000000000…9087be1a data: 0x000000000000000000…0e5ac3ef |
| 0x7923bc…27949e | 8 days agoSun, 09 Aug 2026 23:48:12 UTC | Transfer | [0] 0x000000000000…568bf4d2 [1] 0x000000000000…e861c55b data: 0x000000000000000000…0e5ac3ef |
| 0xeb64ba…e1ca6c | 9 days agoSun, 09 Aug 2026 03:17:16 UTC | Transfer | [0] 0x000000000000…3bb8692c [1] 0x000000000000…2903bae0 data: 0x000000000000000000…8803b350 |
| 0xeb64ba…e1ca6c | 9 days agoSun, 09 Aug 2026 03:17:16 UTC | Transfer | [0] 0x000000000000…3bb8692c [1] 0x000000000000…d7df2d80 data: 0x000000000000000000…2a04a025 |
| 0xeb64ba…e1ca6c | 9 days agoSun, 09 Aug 2026 03:17:16 UTC | Transfer | [0] 0x000000000000…3bb8692c [1] 0x000000000000…b41bb42f data: 0x000000000000000000…2a04a025 |
| 0xd83177…dbff96 | 9 days agoSat, 08 Aug 2026 23:13:24 UTC | Transfer | [0] 0x000000000000…0cbfcae6 [1] 0x000000000000…303afd0d data: 0x000000000000000000…d0800000 |
| 0x608604…ad290b | 9 days agoSat, 08 Aug 2026 16:15:17 UTC | Transfer | [0] 0x000000000000…ec4fff4f [1] 0x000000000000…bc9b9698 data: 0x000000000000000000…4f6d9517 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| no internal transactions found for this address yet (traced blocks + on-demand) | ||||||||
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xf12654…3e885a | Transfer | 38,367,072 | 1 day agoSun, 16 Aug 2026 23:22:52 UTC | 0x0118…ef39 | IN | Chain Mancers | $0.000 ETH | 0.00000093 | |
| 0x64bc0f…5c0da4 | Approve | 37,970,957 | 1 day agoSun, 16 Aug 2026 12:20:26 UTC | 0x4566…6e07 | IN | Chain Mancers | $0.000 ETH | 0.00000098 | |
| 0x824868…fe2313 | Approve | 35,659,329 | 4 days agoThu, 13 Aug 2026 19:57:34 UTC | 0x1b15…b589 | IN | Chain Mancers | $0.000 ETH | 0.00000105 | |
| 0x84342a…88f9e5 | Approve | 35,136,014 | 5 days agoThu, 13 Aug 2026 05:22:44 UTC | 0xe5f7…a18a | IN | Chain Mancers | $0.000 ETH | 0.00000126 | |
| 0xe9005e…f7141a | Approve | 34,065,531 | 6 days agoTue, 11 Aug 2026 23:40:22 UTC | 0x3d87…17b5 | IN | Chain Mancers | $0.000 ETH | 0.00000153 | |
| 0x7bd3b4…c50944 | Approve | 33,196,893 | 7 days agoMon, 10 Aug 2026 23:33:06 UTC | 0x3d87…17b5 | IN | Chain Mancers | $0.000 ETH | 0.00000128 | |
| 0x4d7bf5…a14f0c | Approve | 33,142,906 | 7 days agoMon, 10 Aug 2026 22:03:05 UTC | 0xf532…da93 | IN | Chain Mancers | $0.000 ETH | 0.00000067 | |
| 0x7b857e…8f2f75 | Approve | 33,080,368 | 7 days agoMon, 10 Aug 2026 20:18:53 UTC | 0x8397…232d | IN | Chain Mancers | $0.000 ETH | 0.00000126 | |
| 0xb6bcd9…17d368 | Approve | 33,071,391 | 7 days agoMon, 10 Aug 2026 20:03:54 UTC | 0x03c5…e191 | IN | Chain Mancers | $0.000 ETH | 0.00000123 | |
| 0x5b0909…1fb0c5 | Approve | 32,600,373 | 8 days agoMon, 10 Aug 2026 06:57:31 UTC | 0x7eb3…62e9 | IN | Chain Mancers | $0.000 ETH | 0.00000128 | |
| 0xaa5dba…faa4a3 | Approve | 32,583,423 | 8 days agoMon, 10 Aug 2026 06:29:11 UTC | 0x6366…e7de | IN | Chain Mancers | $0.000 ETH | 0.00000127 | |
| 0xd83177…dbff96 | Transfer | 31,459,986 | 9 days agoSat, 08 Aug 2026 23:13:24 UTC | 0x968d…cae6 | IN | Chain Mancers | $0.000 ETH | 0.00000140 | |
| 0xfe672a…14005a | Approve | 31,103,852 | 9 days agoSat, 08 Aug 2026 13:19:14 UTC | 0x60bd…b3ec | IN | Chain Mancers | $0.000 ETH | 0.00000131 | |
| 0x714f90…d3b570 | Approve | 29,870,571 | 11 days agoFri, 07 Aug 2026 02:59:05 UTC | 0x9423…b54e | IN | Chain Mancers | $0.000 ETH | 0.00000155 | |
| 0x9c2f43…9e3481 | Approve | 29,847,578 | 11 days agoFri, 07 Aug 2026 02:20:39 UTC | 0x6047…e997 | IN | Chain Mancers | $0.000 ETH | 0.00000155 | |
| 0x56c016…c4c8be | Approve | 29,801,463 | 11 days agoFri, 07 Aug 2026 01:03:37 UTC | 0xf532…da93 | IN | Chain Mancers | $0.000 ETH | 0.00000099 | |
| 0xf1a703…f76e8d | Approve | 29,801,463 | 11 days agoFri, 07 Aug 2026 01:03:37 UTC | 0xf532…da93 | IN | Chain Mancers | $0.000 ETH | 0.00000157 | |
| 0x94fb1f…e1f143 | Approve | 29,801,453 | 11 days agoFri, 07 Aug 2026 01:03:36 UTC | 0xc6db…a682 | IN | Chain Mancers | $0.000 ETH | 0.00000158 | |
| 0xda6ee8…0072a0 | Approve | 29,792,705 | 11 days agoFri, 07 Aug 2026 00:49:01 UTC | 0x9c55…1b41 | IN | Chain Mancers | $0.000 ETH | 0.00000153 | |
| 0x49af7e…e3f8b0 | Approve | 29,792,705 | 11 days agoFri, 07 Aug 2026 00:49:01 UTC | 0x5d94…5635 | IN | Chain Mancers | $0.000 ETH | 0.00000153 | |
| 0xb72f4e…a1535b | Approve | 29,792,705 | 11 days agoFri, 07 Aug 2026 00:49:01 UTC | 0xf5f7…baf4 | IN | Chain Mancers | $0.000 ETH | 0.00000153 | |
| 0xbf7494…31e0af | Approve | 29,792,078 | 11 days agoFri, 07 Aug 2026 00:48:05 UTC | 0x6ba1…8e09 | IN | Chain Mancers | $0.000 ETH | 0.00000155 | |
| 0x698987…ef2529 | Approve | 29,786,078 | 11 days agoFri, 07 Aug 2026 00:38:08 UTC | 0x7069…cf74 | IN | Chain Mancers | $0.000 ETH | 0.00000342 | |
| 0x38ada1…6f45a7 | Approve | 29,772,183 | 11 days agoFri, 07 Aug 2026 00:15:10 UTC | 0xf532…da93 | IN | Chain Mancers | $0.000 ETH | 0.00000154 | |
| 0x96e1ce…55ab3e | Approve | 29,771,888 | 11 days agoFri, 07 Aug 2026 00:14:40 UTC | 0x7069…cf74 | IN | Chain Mancers | $0.000 ETH | 0.00000278 |