ETH Price: $4,258.68 (+6.19%)

Transaction Decoder

Block:
15240816 at Jul-30-2022 01:16:31 AM +UTC
Transaction Fee:
0.000662500288093203 ETH $2.82
Gas Used:
46,503 Gas / 14.246398901 Gwei

Emitted Events:

212 HumaniqToken.Approval( owner=[Sender] 0xf0c84e12c0f457a17cbca943e81395dc9d233687, spender=0x68b34658...D8665Fc45, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(F2Pool Old)
7,762.59088688233817056 Eth7,762.59095663683817056 Eth0.0000697545
0xcbCC0F03...A7487b908
0xf0C84E12...c9d233687
0.139112604984687595 Eth
Nonce: 181
0.138450104696594392 Eth
Nonce: 182
0.000662500288093203

Execution Trace

HumaniqToken.approve( _spender=0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45, _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