ETH Price: $3,741.81 (+0.21%)

Transaction Decoder

Block:
15118695 at Jul-11-2022 02:32:24 AM +UTC
Transaction Fee:
0.000877483637747955 ETH $3.28
Gas Used:
46,503 Gas / 18.869398485 Gwei

Emitted Events:

30 HumaniqToken.Approval( owner=[Sender] 0x4af1bd7637e5bfa344e634694173f9dcb7c1484b, spender=0xe66B3167...63C133750, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x4aF1bd76...cB7c1484b
0.007338863037574203 Eth
Nonce: 26
0.006461379399826248 Eth
Nonce: 27
0.000877483637747955
(F2Pool Old)
4,994.721103340851009719 Eth4,994.721428861851009719 Eth0.000325521
0xcbCC0F03...A7487b908

Execution Trace

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