ETH Price: $3,542.93 (+3.52%)
Gas: 8.59 Gwei

Transaction Decoder

Block:
17032922 at Apr-12-2023 03:50:47 PM +UTC
Transaction Fee:
0.001224102328097958 ETH $4.34
Gas Used:
46,503 Gas / 26.323082986 Gwei

Emitted Events:

56 HumaniqToken.Approval( owner=[Sender] 0xef148da0b8e7bf674547597929bb5e118335de72, spender=0xe66B3167...63C133750, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0xcbCC0F03...A7487b908
(Flashbots: Builder)
1.232215331229656565 Eth1.232308337229656565 Eth0.000093006
0xeF148DA0...18335De72
0.099258530865954403 Eth
Nonce: 9
0.098034428537856445 Eth
Nonce: 10
0.001224102328097958

Execution Trace

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