ETH Price: $3,422.18 (+3.10%)

Transaction Decoder

Block:
14984349 at Jun-18-2022 09:53:29 AM +UTC
Transaction Fee:
0.001095739093663218 ETH $3.75
Gas Used:
46,503 Gas / 23.562761406 Gwei

Emitted Events:

107 HumaniqToken.Approval( owner=[Sender] 0x765ad3ff78415831d9c69dee1cd5d56d09736adc, spender=0x11111112...90643097d, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(BTC.com Pool 2)
1,925.317347118580453387 Eth1,925.317584283880453387 Eth0.0002371653
0x765AD3Ff...d09736aDc
85.060219371258828983 Eth
Nonce: 11349
85.059123632165165765 Eth
Nonce: 11350
0.001095739093663218
0xcbCC0F03...A7487b908

Execution Trace

HumaniqToken.approve( _spender=0x1111111254fb6c44bAC0beD2854e76F90643097d, _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