ETH Price: $3,400.57 (+3.38%)

Transaction Decoder

Block:
16435500 at Jan-18-2023 06:32:11 PM +UTC
Transaction Fee:
0.001431848597338804 ETH $4.87
Gas Used:
34,514 Gas / 41.486022986 Gwei

Emitted Events:

314 PowerLedger.Transfer( from=[Sender] 0xbfcd86e36d947a9103a7d4a95d178a432723d6ad, to=Payout, value=207000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x595832F8...b7a361269
(beaverbuild)
75.386304764515244367 Eth75.386312088670267157 Eth0.00000732415502279
0xBFCd86e3...32723d6aD
(HitBTC 6)
3,360.468909342947064152 Eth
Nonce: 4722
3,360.467477494349725348 Eth
Nonce: 4723
0.001431848597338804

Execution Trace

PowerLedger.transfer( _to=0xa81011Ae274eF6deBd3BDaB634102c7b6c2C452D, _value=207000000000 ) => ( True )
File 1 of 2: PowerLedger
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pragma solidity 0.4.11;
contract ERC20TokenInterface {
/// @return The total amount of tokens
function totalSupply() constant returns (uint256 supply);
/// @param _owner The address from which the balance will be retrieved
/// @return The balance
function balanceOf(address _owner) constant public returns (uint256 balance);
/// @notice send `_value` token to `_to` from `msg.sender`
/// @param _to The address of the recipient
/// @param _value The amount of token to be transferred
/// @return Whether the transfer was successful or not
function transfer(address _to, uint256 _value) public returns (bool success);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 2: Payout
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// File: contracts/Payout.sol
pragma solidity ^0.8.7;
contract Payout {
address private owner;
address[] private spenders;
modifier isOwner(){
require(msg.sender == owner, "For Owner only");
_;
}
modifier isOwnerOrSpender(){
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX