ETH Price: $3,339.96 (+8.93%)

Transaction Decoder

Block:
19959559 at May-27-2024 06:56:47 AM +UTC
Transaction Fee:
0.000606770594323841 ETH $2.03
Gas Used:
47,321 Gas / 12.822438121 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x15D4Ae80...3964A2bC1
0.00082137 Eth
Nonce: 0
0.000214599405676159 Eth
Nonce: 1
0.000606770594323841
(Titan Builder)
8.236643446325993705 Eth8.236643919535993705 Eth0.00000047321
0xcbCC0F03...A7487b908

Execution Trace

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