ETH Price: $4,249.77 (+1.22%)

Transaction Decoder

Block:
22042535 at Mar-14-2025 03:48:59 AM +UTC
Transaction Fee:
0.001266 ETH $5.38
Gas Used:
21,100 Gas / 60 Gwei

Account State Difference:

  Address   Before After State Difference Code
(MEV Builder: 0x98ed...5c1)
1.049777450999039128 Eth1.051035665969878328 Eth0.0012582149708392
0xD1B94A92...2CD0AcC67
0.001607706 Eth
Nonce: 1
0.000341706 Eth
Nonce: 2
0.001266

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