ETH Price: $3,561.95 (+2.77%)

Transaction Decoder

Block:
15392687 at Aug-22-2022 09:38:42 PM +UTC
Transaction Fee:
0.0005628343 ETH $2.00
Gas Used:
47,297 Gas / 11.9 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x4F80Ead2...06094B30f
0.096128177494556725 Eth
Nonce: 19
0.095565343194556725 Eth
Nonce: 20
0.0005628343
0xcbCC0F03...A7487b908
(Ethermine)
911.302541207556548735 Eth911.302634481002079145 Eth0.00009327344553041

Execution Trace

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