ETH Price: $3,614.71 (+7.89%)
Gas: 4.35 Gwei

Transaction Decoder

Block:
20145938 at Jun-22-2024 08:05:23 AM +UTC
Transaction Fee:
0.000102046205729496 ETH $0.37
Gas Used:
30,209 Gas / 3.378006744 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
14.685720297345321128 Eth14.685751958870862615 Eth0.000031661525541487
0x5e845154...91bD66e80
0.000136984654346312 Eth
Nonce: 1125
0.000034938448616816 Eth
Nonce: 1126
0.000102046205729496
0xcbCC0F03...A7487b908

Execution Trace

HumaniqToken.transfer( _to=0x9763D6413141E23A32d1459fe7CfDe6a4cddCB36, _value=108129661017 ) => ( 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