ETH Price: $2,512.95 (-1.38%)

Transaction Decoder

Block:
22007041 at Mar-09-2025 04:51:35 AM +UTC
Transaction Fee:
0.00001066815 ETH $0.03
Gas Used:
23,707 Gas / 0.45 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x84280C88...a481fF5E1
0.000327905948112 Eth
Nonce: 3
0.000317237798112 Eth
Nonce: 4
0.00001066815
(beaverbuild)
5.496748825830889549 Eth5.496749234468898982 Eth0.000000408638009433

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