ETH Price: $3,745.62 (+0.51%)
Gas: 0.21 Gwei

Transaction Decoder

Block:
20063529 at Jun-10-2024 07:30:35 PM +UTC
Transaction Fee:
0.000839526539231646 ETH $3.14
Gas Used:
46,179 Gas / 18.179833674 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0f40F928...4aFaE9A85
0.035 Eth
Nonce: 0
0.034160473460768354 Eth
Nonce: 1
0.000839526539231646
(Titan Builder)
5.278716607846405594 Eth5.278716654025405594 Eth0.000000046179
0xcbCC0F03...A7487b908

Execution Trace

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