ETH Price: $2,954.71 (-1.71%)

Transaction Decoder

Block:
16846776 at Mar-17-2023 09:55:11 AM +UTC
Transaction Fee:
0.00076262025245871 ETH $2.25
Gas Used:
46,443 Gas / 16.42056397 Gwei

Emitted Events:

321 HumaniqToken.Approval( owner=[Sender] 0xc3cdbdfd8335f0e7f79a227860b207baffdfba0a, spender=0x00000000...43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
1.567121882777645221 Eth1.567126527077645221 Eth0.0000046443
0xC3CdBdfD...aFFdFba0a
0.034556779355205577 Eth
Nonce: 8
0.033794159102746867 Eth
Nonce: 9
0.00076262025245871
0xcbCC0F03...A7487b908

Execution Trace

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