ETH Price: $3,698.71 (-1.57%)
Gas: 1.05 Gwei

Transaction Decoder

Block:
21379494 at Dec-11-2024 01:14:47 PM +UTC
Transaction Fee:
0.000941457721423428 ETH $3.48
Gas Used:
46,503 Gas / 20.245096476 Gwei

Emitted Events:

362 HumaniqToken.Approval( owner=[Sender] 0x16c41f283121a8445d31c0e831ff85f9e01f568e, spender=0xC92E8bdf...16BFE0110, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x16C41f28...9E01F568E
0.160890068330409218 Eth
Nonce: 267
0.15994861060898579 Eth
Nonce: 268
0.000941457721423428
(beaverbuild)
12.120020546270006779 Eth12.120113552270006779 Eth0.000093006
0xcbCC0F03...A7487b908

Execution Trace

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