Transaction Hash:
Block:
21783570 at Feb-05-2025 11:25:59 PM +UTC
Transaction Fee:
0.000021064 ETH
$0.06
Gas Used:
21,064 Gas / 1 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x253925D6...cF111EFaC |
0.000075686853575 Eth
Nonce: 15
|
0.000054622853575 Eth
Nonce: 16
| 0.000021064 | ||
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 47.826847101281209008 Eth | 47.82684712554826404 Eth | 0.000000024267055032 |
Execution Trace
SaleClockAuction.CALL( )
1234567891011121314151617181920212223242526pragma solidity ^0.4.11;/*** @title Ownable* @dev The Ownable contract has an owner address, and provides basic authorization control* functions, this simplifies the implementation of "user permissions".*/contract Ownable {address public owner;/*** @dev The Ownable constructor sets the original `owner` of the contract to the sender* account.*/function Ownable() {owner = msg.sender;}/*** @dev Throws if called by any account other than the owner.*/modifier onlyOwner() {require(msg.sender == owner);