ETH Price: $3,795.27 (+1.20%)

Transaction Decoder

Block:
16434906 at Jan-18-2023 04:32:35 PM +UTC
Transaction Fee:
0.003657700622138188 ETH $13.88
Gas Used:
51,614 Gas / 70.866443642 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x595832F8...b7a361269
(BuildAI.net)
58.377939311897533015 Eth58.378033577175363087 Eth0.000094265277830072
0xf16E9B0D...b46969B91
(KuCoin 9)
377.290822225373374672 Eth
Nonce: 1467641
377.287164524751236484 Eth
Nonce: 1467642
0.003657700622138188

Execution Trace

PowerLedger.transfer( _to=0x545E4550145257a5524ce9f4C0aDe29126Bcb5fD, _value=677000000 ) => ( 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