ETH Price: $2,958.49 (-0.96%)

Transaction Decoder

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 Code
0x253925D6...cF111EFaC
0.000075686853575 Eth
Nonce: 15
0.000054622853575 Eth
Nonce: 16
0.000021064
(Lido: Execution Layer Rewards Vault)
47.826847101281209008 Eth47.82684712554826404 Eth0.000000024267055032

Execution Trace

SaleClockAuction.CALL( )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma 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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX