ETH Price: $3,594.05 (+1.28%)
Gas: 0.49 Gwei

Transaction Decoder

Block:
20520323 at Aug-13-2024 02:32:47 PM +UTC
Transaction Fee:
0.000096191822788422 ETH $0.35
Gas Used:
30,209 Gas / 3.184210758 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Fee Recipient: 0x450e...1be)
35.134240572585575275 Eth35.134240602794575275 Eth0.000000030209
0x77bF82ee...4bCB6B937
0.00021 Eth
Nonce: 0
0.000113808177211578 Eth
Nonce: 1
0.000096191822788422
0xcbCC0F03...A7487b908

Execution Trace

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