ETH Price: $3,717.97 (-1.21%)

Transaction Decoder

Block:
19303084 at Feb-25-2024 07:23:47 AM +UTC
Transaction Fee:
0.001084576593984033 ETH $4.03
Gas Used:
46,119 Gas / 23.516914807 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x52d44Ea4...F7A52889d
0.931113292816801187 Eth
Nonce: 85
0.930028716222817154 Eth
Nonce: 86
0.001084576593984033
5.586288426170175345 Eth5.586288918259905345 Eth0.00000049208973
0xcbCC0F03...A7487b908

Execution Trace

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