Transaction Hash:
Block:
16450967 at Jan-20-2023 10:21:47 PM +UTC
Transaction Fee:
0.001800902744819754 ETH
$6.70
Gas Used:
51,602 Gas / 34.899863277 Gwei
Emitted Events:
91 |
PowerLedger.Transfer( from=[Sender] 0xf16e9b0d03470827a95cdfd0cb8a8a3b46969b91, to=0xA0b497c3ff9839aC9163476DdBC6cc9E28113139, value=40000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x595832F8...b7a361269 | |||||
0xDAFEA492...692c98Bc5
Miner
| (Flashbots: Builder) | 1.243421040514852554 Eth | 1.243616351772154118 Eth | 0.000195311257301564 | |
0xf16E9B0D...b46969B91 | (KuCoin 9) |
364.044214517179458799 Eth
Nonce: 1476643
|
364.042413614434639045 Eth
Nonce: 1476644
| 0.001800902744819754 |
Execution Trace
PowerLedger.transfer( _to=0xA0b497c3ff9839aC9163476DdBC6cc9E28113139, _value=40000000 ) => ( 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