Transaction Hash:
Block:
13298582 at Sep-26-2021 01:46:59 AM +UTC
Transaction Fee:
0.001350547825433 ETH
$4.81
Gas Used:
23,000 Gas / 58.719470671 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 33.83099651978233376 Eth | 33.83106551978233376 Eth | 0.000069 | |
0xAe38Dd74...E258910CD |
0.003849333519429768 Eth
Nonce: 22
|
0.002498785693996768 Eth
Nonce: 23
| 0.001350547825433 |
Execution Trace
ValidatorShareProxy.CALL( )
[UpgradableProxy (ln:161)]
delegatedFwd[UpgradableProxy (ln:164)]
loadImplementation[UpgradableProxy (ln:164)]
1234567891011121314151617181920212223242526// File: openzeppelin-solidity/contracts/ownership/Ownable.solpragma solidity ^0.5.2;/*** @title Ownable* @dev The Ownable contract has an owner address, and provides basic authorization control* functions, this simplifies the implementation of "user permissions".*/contract Ownable {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev The Ownable constructor sets the original `owner` of the contract to the sender* account.*/constructor () internal {_owner = msg.sender;emit OwnershipTransferred(address(0), _owner);}/*** @return the address of the owner.*/