Transaction Hash:
Block:
16438772 at Jan-19-2023 05:29:47 AM +UTC
Transaction Fee:
0.000831136501632224 ETH
$3.00
Gas Used:
46,048 Gas / 18.049350713 Gwei
Emitted Events:
170 |
PowerLedger.Approval( owner=[Sender] 0x7fedbab68950cc958d8b24278aa0c9c68393d809, spender=0xba33Aa06...4fb0Cd872, value=550000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x595832F8...b7a361269 | |||||
0x690B9A9E...Db4FaC990
Miner
| (builder0x69) | 2.17641518219537382 Eth | 2.17648425419537382 Eth | 0.000069072 | |
0x7FedBAB6...68393d809 |
0.005892511741898503 Eth
Nonce: 60
|
0.005061375240266279 Eth
Nonce: 61
| 0.000831136501632224 |
Execution Trace
PowerLedger.approve( _spender=0xba33Aa06901B7662e17869f588b77c04fb0Cd872, _value=550000000 ) => ( True )
approve[PowerLedger (ln:125)]
Approval[PowerLedger (ln:127)]
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