ETH Price: $2,575.19 (+0.88%)

Transaction Decoder

Block:
21999023 at Mar-08-2025 01:57:35 AM +UTC
Transaction Fee:
0.0000118535 ETH $0.03
Gas Used:
23,707 Gas / 0.5 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Fee Recipient: 0x40...545)
1.393297145388012275 Eth1.393297217958861274 Eth0.000000072570848999
0xA444d644...12854170C
0.001028548 Eth
Nonce: 3
0.0010166945 Eth
Nonce: 4
0.0000118535

Execution Trace

WyvernProxyRegistry.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.13;
contract Ownable {
address public owner;
event OwnershipRenounced(address indexed previousOwner);
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
constructor() public {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX