ETH Price: $3,044.79 (+2.72%)

Transaction Decoder

Block:
19681721 at Apr-18-2024 10:23:11 AM +UTC
Transaction Fee:
0.000896079932534682 ETH $2.73
Gas Used:
46,179 Gas / 19.404489758 Gwei

Emitted Events:

289 HumaniqToken.Approval( owner=[Sender] 0x37a9548f02d3732fa1d70154473ec496a47b4c58, spender=0x11111112...73A960582, value=10500000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x37a9548f...6a47B4c58
0.090064731740021653 Eth
Nonce: 2447
0.089168651807486971 Eth
Nonce: 2448
0.000896079932534682
(Titan Builder)
7.508675441487041629 Eth7.508675487666041629 Eth0.000000046179
0xcbCC0F03...A7487b908

Execution Trace

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