Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x595832F8...b7a361269 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 75.386304764515244367 Eth | 75.386312088670267157 Eth | 0.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 )
transfer[PowerLedger (ln:95)]
Transfer[PowerLedger (ln:99)]
File 1 of 2: PowerLedger
File 2 of 2: Payout
12345678910111213141516pragma solidity 0.4.11;contract ERC20TokenInterface {/// @return The total amount of tokensfunction totalSupply() constant returns (uint256 supply);/// @param _owner The address from which the balance will be retrieved/// @return The balancefunction 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 notfunction transfer(address _to, uint256 _value) public returns (bool success);
File 2 of 2: Payout
12345678910111213141516// File: contracts/Payout.solpragma solidity ^0.8.7;contract Payout {address private owner;address[] private spenders;modifier isOwner(){require(msg.sender == owner, "For Owner only");_;}modifier isOwnerOrSpender(){