ETH Price: $3,591.05 (+1.87%)

Transaction Decoder

Block:
19914316 at May-20-2024 11:09:59 PM +UTC
Transaction Fee:
0.001146351950103087 ETH $4.12
Gas Used:
46,179 Gas / 24.824096453 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
7.781068541137824774 Eth7.781070713628879774 Eth0.000002172491055
0xCb70c739...d9e803Ed4
7.988797187801594578 Eth
Nonce: 1841
7.987650835851491491 Eth
Nonce: 1842
0.001146351950103087
0xcbCC0F03...A7487b908

Execution Trace

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