ETH Price: $3,564.19 (+3.49%)

Transaction Decoder

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 Code
(Spark Pool)
33.83099651978233376 Eth33.83106551978233376 Eth0.000069
0xAe38Dd74...E258910CD
0.003849333519429768 Eth
Nonce: 22
0.002498785693996768 Eth
Nonce: 23
0.001350547825433

Execution Trace

ValidatorShareProxy.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
// File: openzeppelin-solidity/contracts/ownership/Ownable.sol
pragma 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.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX