Transaction Hash:
Block:
16430129 at Jan-18-2023 12:32:59 AM +UTC
Transaction Fee:
0.001113956236302572 ETH
$3.10
Gas Used:
46,826 Gas / 23.789267422 Gwei
Emitted Events:
166 |
PowerLedger.Transfer( from=[Sender] 0x5adcc957cc8611c90059ed8ae5cbd101016b28ec, to=0xb4fEe33a0EDEF5A7fb0DA42A9B8fE3B4f73dFb8B, value=30822991185 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 103.250936246288259472 Eth | 103.251006485288259472 Eth | 0.000070239 | |
0x595832F8...b7a361269 | |||||
0x5adCC957...1016b28Ec |
23.696543522073011293 Eth
Nonce: 15807
|
23.695429565836708721 Eth
Nonce: 15808
| 0.001113956236302572 |
Execution Trace
PowerLedger.transfer( _to=0xb4fEe33a0EDEF5A7fb0DA42A9B8fE3B4f73dFb8B, _value=30822991185 ) => ( 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