ETH Price: $2,544.36 (+0.53%)

Transaction Decoder

Block:
22000990 at Mar-08-2025 08:33:35 AM +UTC
Transaction Fee:
0.000025 ETH $0.06
Gas Used:
50,000 Gas / 0.5 Gwei

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
13.393242510900904321 Eth13.393242592253104321 Eth0.0000000813522
0xF31AD3a6...bAf88ECdb
0.000398017475835 Eth
Nonce: 8
0.000373017475835 Eth
Nonce: 9
0.000025

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