Transaction Hash:
Block:
16450645 at Jan-20-2023 09:17:23 PM +UTC
Transaction Fee:
0.00129397518325096 ETH
$4.80
Gas Used:
46,060 Gas / 28.093251916 Gwei
Emitted Events:
324 |
PowerLedger.Approval( owner=[Sender] 0x359af4c1ce760e008c6cb06ecc2113604913cce1, spender=0x216B4B4B...4278Bfcae, value=7644960300 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x359AF4c1...04913CCE1 |
0.807448699581045676 Eth
Nonce: 406
|
0.806154724397794716 Eth
Nonce: 407
| 0.00129397518325096 | ||
0x595832F8...b7a361269 | |||||
0xDAFEA492...692c98Bc5
Miner
| (Flashbots: Builder) | 1.262037312384210846 Eth | 1.262106402384210846 Eth | 0.00006909 |
Execution Trace
PowerLedger.approve( _spender=0x216B4B4Ba9F3e719726886d34a177484278Bfcae, _value=7644960300 ) => ( 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