ETH Price: $2,965.21 (+6.66%)

Transaction Decoder

Block:
18965531 at Jan-08-2024 11:23:11 PM +UTC
Transaction Fee:
0.000950362392046527 ETH $2.82
Gas Used:
47,297 Gas / 20.093502591 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
28.118330576713043137 Eth28.118400288670202289 Eth0.000069711957159152
0xc0FA6a1d...28AB3A8F5
0.08912892 Eth
Nonce: 7
0.088178557607953473 Eth
Nonce: 8
0.000950362392046527
0xcbCC0F03...A7487b908

Execution Trace

HumaniqToken.transfer( _to=0xcF059220933DD2cDD7e95F97e72a268313D2f469, _value=245900000000 ) => ( success=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.6;
/**
* Math operations with safety checks
*/
contract SafeMath {
function mul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
}
function div(uint a, uint b) internal returns (uint) {
assert(b > 0);
uint c = a / b;
assert(a == b * c + a % b);
return c;
}
function sub(uint a, uint b) internal returns (uint) {
assert(b <= a);
return a - b;
}
function add(uint a, uint b) internal returns (uint) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX