ETH Price: $2,532.86 (+0.01%)

Transaction Decoder

Block:
21323251 at Dec-03-2024 04:44:47 PM +UTC
Transaction Fee:
0.001719415202595147 ETH $4.36
Gas Used:
52,121 Gas / 32.988914307 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
7.369701348149014119 Eth7.369701869359014119 Eth0.00000052121
0xcbCC0F03...A7487b908
0xe03c2351...0065C48B5
(Mercatox)
14.873437042078157026 Eth
Nonce: 522393
14.871717626875561879 Eth
Nonce: 522394
0.001719415202595147

Execution Trace

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