ETH Price: $3,790.40 (-1.58%)

Transaction Decoder

Block:
19889741 at May-17-2024 12:38:23 PM +UTC
Transaction Fee:
0.000452409703507692 ETH $1.71
Gas Used:
46,179 Gas / 9.796870948 Gwei

Emitted Events:

138 HumaniqToken.Approval( owner=[Sender] 0xe5350e927b904fdb4d2af55c566e269bb3df1941, spender=0xCf5540fF...7b0772559, value=84457000000000 )

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
16.297777307780242606 Eth16.297791161480242606 Eth0.0000138537
0xcbCC0F03...A7487b908
0xE5350E92...BB3df1941
12.585091183202897578 Eth
Nonce: 20358
12.584638773499389886 Eth
Nonce: 20359
0.000452409703507692

Execution Trace

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