ETH Price: $3,809.75 (+1.94%)

Transaction Decoder

Block:
19771590 at May-01-2024 12:06:11 AM +UTC
Transaction Fee:
0.000293042997051237 ETH $1.12
Gas Used:
47,309 Gas / 6.194233593 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x0E9B14f8...b2893a4ce
0.026379720024925529 Eth
Nonce: 298
0.026086677027874292 Eth
Nonce: 299
0.000293042997051237
(beaverbuild)
8.770968351525535001 Eth8.770970577177440001 Eth0.000002225651905
0xcbCC0F03...A7487b908

Execution Trace

HumaniqToken.transfer( _to=0xF29164F82aDEA498cFf06d20F407E5e98b852334, _value=1437500000000 ) => ( 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