ETH Price: $4,658.34 (+0.18%)
Gas: 4.81 Gwei

Transaction Decoder

Block:
19890157 at May-17-2024 02:01:59 PM +UTC
Transaction Fee:
0.000330940617022953 ETH $1.54
Gas Used:
46,179 Gas / 7.166474307 Gwei

Emitted Events:

180 HumaniqToken.Approval( owner=[Sender] 0xbadffcb79efe57e954fd79621b29b0c2dc170171, spender=0x11111112...0f8842A65, value=14521000000000 )

Account State Difference:

  Address   Before After State Difference Code
3.512824262910213993 Eth3.512824493805213993 Eth0.000000230895
0xbADFfCB7...2DC170171
3.552074966351316969 Eth
Nonce: 33452
3.551744025734294016 Eth
Nonce: 33453
0.000330940617022953
0xcbCC0F03...A7487b908

Execution Trace

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