ETH Price: $2,556.88 (+3.19%)

Transaction Decoder

Block:
22369883 at Apr-28-2025 08:16:11 PM +UTC
Transaction Fee:
0.000040155558045164 ETH $0.10
Gas Used:
27,772 Gas / 1.445900837 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
14.558449788565760015 Eth14.558477560565760015 Eth0.000027772
0x70181945...6ae59b9dF
0.000874309868079685 Eth
Nonce: 117
0.000834154310034521 Eth
Nonce: 118
0.000040155558045164

Execution Trace

TokenERC20.transfer( _to=0x70181945a58dEe9EdB62Bf6e8E73D976ae59b9dF, _value=31000000000000000000 )
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.16;
contract owned {
address public owner;
function owned() public {
owner = msg.sender;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
function transferOwnership(address newOwner) onlyOwner public {
owner = newOwner;
}
}
interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }
contract TokenERC20 {
// Public variables of the token
string public name;
string public symbol;
uint8 public decimals = 18;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX