// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
/*
RobinhoodBurner — a public burn registry for Robinhood Chain, companion to
RobinhoodLocker.
Anyone can burn any ERC-20 forever. Tokens are pulled straight from the
caller to the dead address (0x…dEaD) in a single hop — they never rest in
this contract, so there is NO admin path to them, ever. Each burn is
recorded with an id and emits an event, giving every burn the same
shareable on-chain proof as a lock. Core guarantees:
• Burns are irreversible by construction: nothing can move tokens out of
the dead address.
• Fee-on-transfer tokens are handled by recording the amount the dead
address actually received.
• Reentrancy-guarded.
The admin can change ONLY the flat fee, the fee collector, and the admin key.
*/
interface IERC20 {
function transferFrom(address from, address to, uint256 amount) external returns (bool);
function balanceOf(address account) external view returns (uint256);
}
contract RobinhoodBurner {
address public constant DEAD = 0x000000000000000000000000000000000000dEaD;
struct Burn {
address burner;
address token;
uint256 amount;
uint256 timestamp;
}
uint256 public nextBurnId;
mapping(uint256 => Burn) public burns;
mapping(address => uint256[]) private _byBurner;
mapping(address => uint256[]) private _byToken;
mapping(address => uint256) public totalBurnedOf; // token => cumulative amount burned here
uint256 public fee; // flat ETH fee charged per burn
address public feeCollector; // receives the fees
address public admin; // may change fee / feeCollector / admin ONLY
event Burned(uint256 indexed id, address indexed burner, address indexed token, uint256 amount);
event FeeChanged(uint256 fee);
modifier onlyAdmin() { require(msg.sender == admin, "not admin"); _; }
uint256 private _guard = 1;
modifier nonReentrant() { require(_guard == 1, "reentrant"); _guard = 2; _; _guard = 1; }
constructor(uint256 _fee, address _feeCollector) {
admin = msg.sender;
fee = _fee;
feeCollector = _feeCollector == address(0) ? msg.sender : _feeCollector;
}
/// Burn `amount` of `token` forever. Requires prior approve() and msg.value >= fee.
function burn(address token, uint256 amount) external payable nonReentrant returns (uint256 id) {
require(msg.value >= fee, "fee too low");
require(amount > 0, "amount = 0");
require(token != address(0), "token = 0");
uint256 balBefore = IERC20(token).balanceOf(DEAD);
require(IERC20(token).transferFrom(msg.sender, DEAD, amount), "transferFrom failed");
uint256 received = IERC20(token).balanceOf(DEAD) - balBefore;
require(received > 0, "nothing burned");
id = nextBurnId++;
burns[id] = Burn({ burner: msg.sender, token: token, amount: received, timestamp: block.timestamp });
_byBurner[msg.sender].push(id);
_byToken[token].push(id);
totalBurnedOf[token] += received;
if (fee > 0) { (bool okFee, ) = feeCollector.call{value: fee}(""); require(okFee, "fee transfer failed"); }
if (msg.value > fee) { (bool okRef, ) = msg.sender.call{value: msg.value - fee}(""); require(okRef, "refund failed"); }
emit Burned(id, msg.sender, token, received);
}
// ---- views ----
function getBurn(uint256 id) external view returns (Burn memory) { return burns[id]; }
function burnsByBurner(address b) external view returns (uint256[] memory) { return _byBurner[b]; }
function burnsByToken(address t) external view returns (uint256[] memory) { return _byToken[t]; }
function totalBurns() external view returns (uint256) { return nextBurnId; }
// ---- admin: fee config ONLY (tokens never touch this contract) ----
function setFee(uint256 _fee) external onlyAdmin { fee = _fee; emit FeeChanged(_fee); }
function setFeeCollector(address c) external onlyAdmin { require(c != address(0), "zero"); feeCollector = c; }
function setAdmin(address a) external onlyAdmin { require(a != address(0), "zero"); admin = a; }
}[
{
"type": "constructor",
"inputs": [
{
"name": "_fee",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "_feeCollector",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "nonpayable"
},
{
"name": "Burned",
"type": "event",
"inputs": [
{
"name": "id",
"type": "uint256",
"indexed": true,
"internalType": "uint256"
},
{
"name": "burner",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "token",
"type": "address",
"indexed": true,
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "FeeChanged",
"type": "event",
"inputs": [
{
"name": "fee",
"type": "uint256",
"indexed": false,
"internalType": "uint256"
}
],
"anonymous": false
},
{
"name": "DEAD",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "admin",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "burn",
"type": "function",
"inputs": [
{
"name": "token",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "payable"
},
{
"name": "burns",
"type": "function",
"inputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "burner",
"type": "address",
"internalType": "address"
},
{
"name": "token",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "timestamp",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "burnsByBurner",
"type": "function",
"inputs": [
{
"name": "b",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256[]",
"internalType": "uint256[]"
}
],
"stateMutability": "view"
},
{
"name": "burnsByToken",
"type": "function",
"inputs": [
{
"name": "t",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256[]",
"internalType": "uint256[]"
}
],
"stateMutability": "view"
},
{
"name": "fee",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "feeCollector",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"stateMutability": "view"
},
{
"name": "getBurn",
"type": "function",
"inputs": [
{
"name": "id",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [
{
"name": "",
"type": "tuple",
"components": [
{
"name": "burner",
"type": "address",
"internalType": "address"
},
{
"name": "token",
"type": "address",
"internalType": "address"
},
{
"name": "amount",
"type": "uint256",
"internalType": "uint256"
},
{
"name": "timestamp",
"type": "uint256",
"internalType": "uint256"
}
],
"internalType": "struct RobinhoodBurner.Burn"
}
],
"stateMutability": "view"
},
{
"name": "nextBurnId",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "setAdmin",
"type": "function",
"inputs": [
{
"name": "a",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "setFee",
"type": "function",
"inputs": [
{
"name": "_fee",
"type": "uint256",
"internalType": "uint256"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "setFeeCollector",
"type": "function",
"inputs": [
{
"name": "c",
"type": "address",
"internalType": "address"
}
],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"name": "totalBurnedOf",
"type": "function",
"inputs": [
{
"name": "",
"type": "address",
"internalType": "address"
}
],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
},
{
"name": "totalBurns",
"type": "function",
"inputs": [],
"outputs": [
{
"name": "",
"type": "uint256",
"internalType": "uint256"
}
],
"stateMutability": "view"
}
]0x608060405260016008553480156013575f5ffd5b50604051610dea380380610dea8339810160408190526030916083565b600780546001600160a01b0319163317905560058290556001600160a01b03811615605a5780605c565b335b600680546001600160a01b0319166001600160a01b03929092169190911790555060bb9050565b5f5f604083850312156093575f5ffd5b825160208401519092506001600160a01b038116811460b0575f5ffd5b809150509250929050565b610d22806100c85f395ff3fe6080604052600436106100e4575f3560e01c806390d8880311610087578063c415b95c11610057578063c415b95c14610368578063ddca3f4314610387578063f3b218a71461039c578063f851a440146103b0575f5ffd5b806390d88803146102915780639dc29fac146102bc578063a42dce80146102cf578063a86eb292146102ee575f5ffd5b806357f63a1d116100c257806357f63a1d14610215578063694ca01d1461023457806369fe0e2d14610251578063704b6c0214610272575f5ffd5b806303fd2a45146100e857806329d96f281461011a5780632eb3f49b14610146575b5f5ffd5b3480156100f3575f5ffd5b506100fd61dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b348015610125575f5ffd5b50610139610134366004610b9a565b6103cf565b6040516101119190610bba565b348015610151575f5ffd5b506101d4610160366004610bfc565b604080516080810182525f808252602082018190529181018290526060810191909152505f90815260016020818152604092839020835160808101855281546001600160a01b0390811682529382015490931691830191909152600281015492820192909252600390910154606082015290565b604051610111919081516001600160a01b03908116825260208084015190911690820152604080830151908201526060918201519181019190915260800190565b348015610220575f5ffd5b5061013961022f366004610b9a565b610438565b34801561023f575f5ffd5b505f545b604051908152602001610111565b34801561025c575f5ffd5b5061027061026b366004610bfc565b61049f565b005b34801561027d575f5ffd5b5061027061028c366004610b9a565b61050d565b34801561029c575f5ffd5b506102436102ab366004610b9a565b60046020525f908152604090205481565b6102436102ca366004610c13565b610598565b3480156102da575f5ffd5b506102706102e9366004610b9a565b610af4565b3480156102f9575f5ffd5b5061033d610308366004610bfc565b600160208190525f918252604090912080549181015460028201546003909201546001600160a01b0393841693909116919084565b604080516001600160a01b039586168152949093166020850152918301526060820152608001610111565b348015610373575f5ffd5b506006546100fd906001600160a01b031681565b348015610392575f5ffd5b5061024360055481565b3480156103a7575f5ffd5b506102435f5481565b3480156103bb575f5ffd5b506007546100fd906001600160a01b031681565b6001600160a01b0381165f9081526003602090815260409182902080548351818402810184019094528084526060939283018282801561042c57602002820191905f5260205f20905b815481526020019060010190808311610418575b50505050509050919050565b6001600160a01b0381165f9081526002602090815260409182902080548351818402810184019094528084526060939283018282801561042c57602002820191905f5260205f20908154815260200190600101908083116104185750505050509050919050565b6007546001600160a01b031633146104d25760405162461bcd60e51b81526004016104c990610c3b565b60405180910390fd5b60058190556040518181527f6bbc57480a46553fa4d156ce702beef5f3ad66303b0ed1a5d4cb44966c6584c39060200160405180910390a150565b6007546001600160a01b031633146105375760405162461bcd60e51b81526004016104c990610c3b565b6001600160a01b0381166105765760405162461bcd60e51b81526004016104c9906020808252600490820152637a65726f60e01b604082015260600190565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b5f6008546001146105d75760405162461bcd60e51b81526020600482015260096024820152681c99595b9d1c985b9d60ba1b60448201526064016104c9565b600260085560055434101561061c5760405162461bcd60e51b815260206004820152600b60248201526a66656520746f6f206c6f7760a81b60448201526064016104c9565b5f82116106585760405162461bcd60e51b815260206004820152600a6024820152690616d6f756e74203d20360b41b60448201526064016104c9565b6001600160a01b03831661069a5760405162461bcd60e51b81526020600482015260096024820152680746f6b656e203d20360bc1b60448201526064016104c9565b6040516370a0823160e01b815261dead60048201525f906001600160a01b038516906370a0823190602401602060405180830381865afa1580156106e0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107049190610c5e565b6040516323b872dd60e01b815233600482015261dead6024820152604481018590529091506001600160a01b038516906323b872dd906064016020604051808303815f875af1158015610759573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061077d9190610c75565b6107bf5760405162461bcd60e51b81526020600482015260136024820152721d1c985b9cd9995c919c9bdb4819985a5b1959606a1b60448201526064016104c9565b6040516370a0823160e01b815261dead60048201525f9082906001600160a01b038716906370a0823190602401602060405180830381865afa158015610807573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082b9190610c5e565b6108359190610ca8565b90505f81116108775760405162461bcd60e51b815260206004820152600e60248201526d1b9bdd1a1a5b99c8189d5c9b995960921b60448201526064016104c9565b5f8054908061088583610cc1565b9091555060408051608081018252338082526001600160a01b03898116602080850182815285870189815242606088019081525f8a815260018086528a822099518a549089166001600160a01b0319918216178b5594518a8201805491909916951694909417909655905160028089019190915590516003978801559484529381528583208054808601825590845281842001879055818352938452848220805493840181558252838220909201859055908152600490915290812080549295508392909190610956908490610cd9565b9091555050600554156109fd576006546005546040515f926001600160a01b031691908381818185875af1925050503d805f81146109af576040519150601f19603f3d011682016040523d82523d5f602084013e6109b4565b606091505b50509050806109fb5760405162461bcd60e51b8152602060048201526013602482015272199959481d1c985b9cd9995c8819985a5b1959606a1b60448201526064016104c9565b505b600554341115610a99576005545f903390610a189034610ca8565b6040515f81818185875af1925050503d805f8114610a51576040519150601f19603f3d011682016040523d82523d5f602084013e610a56565b606091505b5050905080610a975760405162461bcd60e51b815260206004820152600d60248201526c1c99599d5b990819985a5b1959609a1b60448201526064016104c9565b505b846001600160a01b0316336001600160a01b0316847f8abc079b05f6edad56d2fd89bf20147caf385a3a180078b58089a4d4f08030c684604051610adf91815260200190565b60405180910390a45050600160085592915050565b6007546001600160a01b03163314610b1e5760405162461bcd60e51b81526004016104c990610c3b565b6001600160a01b038116610b5d5760405162461bcd60e51b81526004016104c9906020808252600490820152637a65726f60e01b604082015260600190565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b80356001600160a01b0381168114610b95575f5ffd5b919050565b5f60208284031215610baa575f5ffd5b610bb382610b7f565b9392505050565b602080825282518282018190525f918401906040840190835b81811015610bf1578351835260209384019390920191600101610bd3565b509095945050505050565b5f60208284031215610c0c575f5ffd5b5035919050565b5f5f60408385031215610c24575f5ffd5b610c2d83610b7f565b946020939093013593505050565b6020808252600990820152683737ba1030b236b4b760b91b604082015260600190565b5f60208284031215610c6e575f5ffd5b5051919050565b5f60208284031215610c85575f5ffd5b81518015158114610bb3575f5ffd5b634e487b7160e01b5f52601160045260245ffd5b81810381811115610cbb57610cbb610c94565b92915050565b5f60018201610cd257610cd2610c94565b5060010190565b80820180821115610cbb57610cbb610c9456fea2646970667358221220af5b259872a25d87eed36ced8bdc9b89dcde63cb56f22e516b90c11c97f6665b64736f6c634300082300330000000000000000000000000000000000000000000000000011c37937e0800000000000000000000000000079c1230cab12d53d040f5fe1f5279e1a481ccea2
0x6080604052600436106100e4575f3560e01c806390d8880311610087578063c415b95c11610057578063c415b95c14610368578063ddca3f4314610387578063f3b218a71461039c578063f851a440146103b0575f5ffd5b806390d88803146102915780639dc29fac146102bc578063a42dce80146102cf578063a86eb292146102ee575f5ffd5b806357f63a1d116100c257806357f63a1d14610215578063694ca01d1461023457806369fe0e2d14610251578063704b6c0214610272575f5ffd5b806303fd2a45146100e857806329d96f281461011a5780632eb3f49b14610146575b5f5ffd5b3480156100f3575f5ffd5b506100fd61dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b348015610125575f5ffd5b50610139610134366004610b9a565b6103cf565b6040516101119190610bba565b348015610151575f5ffd5b506101d4610160366004610bfc565b604080516080810182525f808252602082018190529181018290526060810191909152505f90815260016020818152604092839020835160808101855281546001600160a01b0390811682529382015490931691830191909152600281015492820192909252600390910154606082015290565b604051610111919081516001600160a01b03908116825260208084015190911690820152604080830151908201526060918201519181019190915260800190565b348015610220575f5ffd5b5061013961022f366004610b9a565b610438565b34801561023f575f5ffd5b505f545b604051908152602001610111565b34801561025c575f5ffd5b5061027061026b366004610bfc565b61049f565b005b34801561027d575f5ffd5b5061027061028c366004610b9a565b61050d565b34801561029c575f5ffd5b506102436102ab366004610b9a565b60046020525f908152604090205481565b6102436102ca366004610c13565b610598565b3480156102da575f5ffd5b506102706102e9366004610b9a565b610af4565b3480156102f9575f5ffd5b5061033d610308366004610bfc565b600160208190525f918252604090912080549181015460028201546003909201546001600160a01b0393841693909116919084565b604080516001600160a01b039586168152949093166020850152918301526060820152608001610111565b348015610373575f5ffd5b506006546100fd906001600160a01b031681565b348015610392575f5ffd5b5061024360055481565b3480156103a7575f5ffd5b506102435f5481565b3480156103bb575f5ffd5b506007546100fd906001600160a01b031681565b6001600160a01b0381165f9081526003602090815260409182902080548351818402810184019094528084526060939283018282801561042c57602002820191905f5260205f20905b815481526020019060010190808311610418575b50505050509050919050565b6001600160a01b0381165f9081526002602090815260409182902080548351818402810184019094528084526060939283018282801561042c57602002820191905f5260205f20908154815260200190600101908083116104185750505050509050919050565b6007546001600160a01b031633146104d25760405162461bcd60e51b81526004016104c990610c3b565b60405180910390fd5b60058190556040518181527f6bbc57480a46553fa4d156ce702beef5f3ad66303b0ed1a5d4cb44966c6584c39060200160405180910390a150565b6007546001600160a01b031633146105375760405162461bcd60e51b81526004016104c990610c3b565b6001600160a01b0381166105765760405162461bcd60e51b81526004016104c9906020808252600490820152637a65726f60e01b604082015260600190565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b5f6008546001146105d75760405162461bcd60e51b81526020600482015260096024820152681c99595b9d1c985b9d60ba1b60448201526064016104c9565b600260085560055434101561061c5760405162461bcd60e51b815260206004820152600b60248201526a66656520746f6f206c6f7760a81b60448201526064016104c9565b5f82116106585760405162461bcd60e51b815260206004820152600a6024820152690616d6f756e74203d20360b41b60448201526064016104c9565b6001600160a01b03831661069a5760405162461bcd60e51b81526020600482015260096024820152680746f6b656e203d20360bc1b60448201526064016104c9565b6040516370a0823160e01b815261dead60048201525f906001600160a01b038516906370a0823190602401602060405180830381865afa1580156106e0573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107049190610c5e565b6040516323b872dd60e01b815233600482015261dead6024820152604481018590529091506001600160a01b038516906323b872dd906064016020604051808303815f875af1158015610759573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061077d9190610c75565b6107bf5760405162461bcd60e51b81526020600482015260136024820152721d1c985b9cd9995c919c9bdb4819985a5b1959606a1b60448201526064016104c9565b6040516370a0823160e01b815261dead60048201525f9082906001600160a01b038716906370a0823190602401602060405180830381865afa158015610807573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061082b9190610c5e565b6108359190610ca8565b90505f81116108775760405162461bcd60e51b815260206004820152600e60248201526d1b9bdd1a1a5b99c8189d5c9b995960921b60448201526064016104c9565b5f8054908061088583610cc1565b9091555060408051608081018252338082526001600160a01b03898116602080850182815285870189815242606088019081525f8a815260018086528a822099518a549089166001600160a01b0319918216178b5594518a8201805491909916951694909417909655905160028089019190915590516003978801559484529381528583208054808601825590845281842001879055818352938452848220805493840181558252838220909201859055908152600490915290812080549295508392909190610956908490610cd9565b9091555050600554156109fd576006546005546040515f926001600160a01b031691908381818185875af1925050503d805f81146109af576040519150601f19603f3d011682016040523d82523d5f602084013e6109b4565b606091505b50509050806109fb5760405162461bcd60e51b8152602060048201526013602482015272199959481d1c985b9cd9995c8819985a5b1959606a1b60448201526064016104c9565b505b600554341115610a99576005545f903390610a189034610ca8565b6040515f81818185875af1925050503d805f8114610a51576040519150601f19603f3d011682016040523d82523d5f602084013e610a56565b606091505b5050905080610a975760405162461bcd60e51b815260206004820152600d60248201526c1c99599d5b990819985a5b1959609a1b60448201526064016104c9565b505b846001600160a01b0316336001600160a01b0316847f8abc079b05f6edad56d2fd89bf20147caf385a3a180078b58089a4d4f08030c684604051610adf91815260200190565b60405180910390a45050600160085592915050565b6007546001600160a01b03163314610b1e5760405162461bcd60e51b81526004016104c990610c3b565b6001600160a01b038116610b5d5760405162461bcd60e51b81526004016104c9906020808252600490820152637a65726f60e01b604082015260600190565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b80356001600160a01b0381168114610b95575f5ffd5b919050565b5f60208284031215610baa575f5ffd5b610bb382610b7f565b9392505050565b602080825282518282018190525f918401906040840190835b81811015610bf1578351835260209384019390920191600101610bd3565b509095945050505050565b5f60208284031215610c0c575f5ffd5b5035919050565b5f5f60408385031215610c24575f5ffd5b610c2d83610b7f565b946020939093013593505050565b6020808252600990820152683737ba1030b236b4b760b91b604082015260600190565b5f60208284031215610c6e575f5ffd5b5051919050565b5f60208284031215610c85575f5ffd5b81518015158114610bb3575f5ffd5b634e487b7160e01b5f52601160045260245ffd5b81810381811115610cbb57610cbb610c94565b92915050565b5f60018201610cd257610cd2610c94565b5060010190565b80820180821115610cbb57610cbb610c9456fea2646970667358221220af5b259872a25d87eed36ced8bdc9b89dcde63cb56f22e516b90c11c97f6665b64736f6c63430008230033
| Token | Symbol | Balance | Price | Value |
|---|---|---|---|---|
| no token holdings | ||||
| Type | Age | Block | Details |
|---|---|---|---|
| no cross-chain L1↔L2 transactions for this address | |||
| Txn Hash | Age | Event | Topics / Data |
|---|---|---|---|
| 0x88be9d…f7a065 | 13 days agoSun, 02 Aug 2026 03:07:41 UTC | 0x8abc07…30c6 | [0] 0x000000000000…00000002 [1] 0x000000000000…8796964e [2] 0x000000000000…eb7a4b94 data: 0x000000000000000000…1114fad0 |
| 0xc6d627…4813d0 | 17 days agoWed, 29 Jul 2026 18:40:45 UTC | 0x8abc07…30c6 | [0] 0x000000000000…00000001 [1] 0x000000000000…b9b131ad [2] 0x000000000000…d2f352e2 data: 0x000000000000000000…1a181b02 |
| 0x5728b0…7b4dba | 21 days agoSat, 25 Jul 2026 02:59:55 UTC | 0x8abc07…30c6 | [0] 0x000000000000…00000000 [1] 0x000000000000…bf00d950 [2] 0x000000000000…d808fb07 data: 0x000000000000000000…55e4092c |
| Transaction Hash | Method | Block | Age | From | To | Type | Item | ||
|---|---|---|---|---|---|---|---|---|---|
| no NFT transfers for this address yet | |||||||||
| Transaction Hash | Method | Block | Age | From | To | Amount | Token | ||
|---|---|---|---|---|---|---|---|---|---|
| no token transfers for this address yet | |||||||||
| Transaction Hash | Method ? | Block | Age | From | To | Amount | Txn Fee ? | ||
|---|---|---|---|---|---|---|---|---|---|
| 0xba516c…7a9bf4 | setFeeCollector | 26,406,673 | 12 days agoMon, 03 Aug 2026 02:34:00 UTC | 0x79c1…cea2 | IN | RobinhoodBurner | $0.000 ETH | 0.00000058 | |
| 0x2701b1…eade7a | setFeeCollector | 26,132,659 | 13 days agoSun, 02 Aug 2026 18:56:31 UTC | 0x79c1…cea2 | IN | RobinhoodBurner | $0.000 ETH | 0.00000058 | |
| 0x88be9d…f7a065 | burn | 25,565,226 | 13 days agoSun, 02 Aug 2026 03:07:41 UTC | 0xaf79…964e | IN | RobinhoodBurner | $9.400.005 ETH | 0.00000552 | |
| 0xc6d627…4813d0 | burn | 22,676,497 | 17 days agoWed, 29 Jul 2026 18:40:45 UTC | 0x3662…31ad | IN | RobinhoodBurner | $9.400.005 ETH | 0.00000622 | |
| 0x5728b0…7b4dba | burn | 18,670,446 | 21 days agoSat, 25 Jul 2026 02:59:55 UTC | 0x3257…d950 | IN | RobinhoodBurner | $9.400.005 ETH | 0.00002586 | |
| 0x02893d…2493e6 | setAdmin | 16,820,214 | 24 days agoWed, 22 Jul 2026 23:27:37 UTC | 0xebd2…eea4 | IN | RobinhoodBurner | $0.000 ETH | 0.00000256 |
| Block | Age | Parent Transaction Hash | Type | Method | From | To | Value | |
|---|---|---|---|---|---|---|---|---|
| 25,565,226 | 13 days agoSun, 02 Aug 2026 03:07:41 UTC | 0x88be9d…f7a065 | CALL | burn | 0x6bf4…0652 | OUT | 0x79c1…cea2 | 0.005 ETH |
| 22,676,497 | 17 days agoWed, 29 Jul 2026 18:40:45 UTC | 0xc6d627…4813d0 | CALL | burn | 0x6bf4…0652 | OUT | 0x79c1…cea2 | 0.005 ETH |
| 18,670,446 | 21 days agoSat, 25 Jul 2026 02:59:55 UTC | 0x5728b0…7b4dba | CALL | burn | 0x6bf4…0652 | OUT | 0x79c1…cea2 | 0.005 ETH |