Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 13.393242510900904321 Eth | 13.393242592253104321 Eth | 0.0000000813522 | |
0xF31AD3a6...bAf88ECdb |
0.000398017475835 Eth
Nonce: 8
|
0.000373017475835 Eth
Nonce: 9
| 0.000025 |
Execution Trace
WyvernProxyRegistry.CALL( )
1234567891011121314151617181920212223242526pragma 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);