Transaction Hash:
Block:
16438957 at Jan-19-2023 06:06:59 AM +UTC
Transaction Fee:
0.00062192343681013 ETH
$2.90
Gas Used:
34,502 Gas / 18.025721315 Gwei
Emitted Events:
149 |
PowerLedger.Transfer( from=[Sender] 0x684d3b8c769e2ac2310969adefe993affba6ce91, to=0x64bC9100b5076cf2E0cf7855E1377FdC134a6f74, value=445000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x199D5ED7...6e95B253F
Miner
| (bloXroute: Regulated Builder) | 1.726695639108014744 Eth | 1.726747392108014744 Eth | 0.000051753 | |
0x595832F8...b7a361269 | |||||
0x684d3B8c...fFBa6CE91 |
0.032650211457256928 Eth
Nonce: 24
|
0.032028288020446798 Eth
Nonce: 25
| 0.00062192343681013 |
Execution Trace
PowerLedger.transfer( _to=0x64bC9100b5076cf2E0cf7855E1377FdC134a6f74, _value=445000000 ) => ( True )
transfer[PowerLedger (ln:95)]
Transfer[PowerLedger (ln:99)]
1234567891011121314151617181920212223242526pragma 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);/// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`/// @param _from The address of the 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 transferFrom(address _from, address _to, uint256 _value) public returns (bool success);/// @notice `msg.sender` approves `_spender` to spend `_value` tokens/// @param _spender The address of the account able to transfer the tokens