ETH Price: $3,636.05 (-2.46%)

Transaction Decoder

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 Code
(bloXroute: Regulated Builder)
1.13894460811038279 Eth1.13898433411038279 Eth0.000039726
0x841055e6...435fBE7Ff
6.158857679622107995 Eth
Nonce: 37
6.158372838939181567 Eth
Nonce: 38
0.000484840682926428

Execution Trace

PowerLedger.approve( _spender=0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma solidity 0.4.11;
contract ERC20TokenInterface {
/// @return The total amount of tokens
function totalSupply() constant returns (uint256 supply);
/// @param _owner The address from which the balance will be retrieved
/// @return The balance
function 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 not
function 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 not
function 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
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX