ETH Price: $3,149.66 (+5.66%)

Transaction Decoder

Block:
17663210 at Jul-10-2023 12:18:11 PM +UTC
Transaction Fee:
0.001232450329360452 ETH $3.88
Gas Used:
46,191 Gas / 26.681611772 Gwei

Emitted Events:

72 HumaniqToken.Approval( owner=[Sender] 0xa97cdd9555b2c134dc89f2c855a388631b79b7b8, spender=0xBA122222...d566BF2C8, value=114836676728795 )

Account State Difference:

  Address   Before After State Difference Code
(builder0x69)
1.431067704909698664 Eth1.431489216086173347 Eth0.000421511176474683
0xa97CDD95...31b79B7b8
0.978164678915115233 Eth
Nonce: 395
0.976932228585754781 Eth
Nonce: 396
0.001232450329360452
0xcbCC0F03...A7487b908

Execution Trace

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