ETH Price: $4,309.64 (+1.99%)

Transaction Decoder

Block:
16885407 at Mar-22-2023 08:08:23 PM +UTC
Transaction Fee:
0.003864864313935468 ETH $16.66
Gas Used:
46,191 Gas / 83.671371348 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x2436ebFA...C124421E5
0.00610382604 Eth
Nonce: 6
0.002238961726064532 Eth
Nonce: 7
0.003864864313935468
4.135837671451637254 Eth4.137832900197074602 Eth0.001995228745437348
0xcbCC0F03...A7487b908

Execution Trace

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