ETH Price: $3,116.31 (+4.74%)

Transaction Decoder

Block:
19848603 at May-11-2024 06:33:23 PM +UTC
Transaction Fee:
0.000186321288560682 ETH $0.58
Gas Used:
46,167 Gas / 4.035811046 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x37505484...C09684094
0.011391511725044242 Eth
Nonce: 334
0.01120519043648356 Eth
Nonce: 335
0.000186321288560682
(Titan Builder)
5.273805110304811983 Eth5.273809727004811983 Eth0.0000046167
0xcbCC0F03...A7487b908

Execution Trace

HumaniqToken.approve( _spender=0x111111125421cA6dc452d289314280a0f8842A65, _value=442600000000 ) => ( 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