Transaction Hash:
Block:
16425767 at Jan-17-2023 09:57:11 AM +UTC
Transaction Fee:
0.000484840682926428 ETH
$1.76
Gas Used:
26,484 Gas / 18.306928067 Gwei
Emitted Events:
76 |
PowerLedger.Approval( owner=[Sender] 0x841055e6cf8660643c931f0cb5190e4435fbe7ff, spender=0x68b34658...D8665Fc45, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x199D5ED7...6e95B253F
Miner
| (bloXroute: Regulated Builder) | 1.13894460811038279 Eth | 1.13898433411038279 Eth | 0.000039726 | |
0x841055e6...435fBE7Ff |
6.158857679622107995 Eth
Nonce: 37
|
6.158372838939181567 Eth
Nonce: 38
| 0.000484840682926428 |
Execution Trace
PowerLedger.approve( _spender=0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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