ETH Price: $3,646.19 (-2.52%)

Transaction Decoder

Block:
20520330 at Aug-13-2024 02:34:23 PM +UTC
Transaction Fee:
0.000155567440353144 ETH $0.57
Gas Used:
47,321 Gas / 3.287492664 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x80787af1...269d7Ee1A
(HitBTC: Hot Wallet 4)
1,955.304839927475770641 Eth
Nonce: 2302
1,955.304684360035417497 Eth
Nonce: 2303
0.000155567440353144
(beaverbuild)
16.251143205075382844 Eth16.251143252396382844 Eth0.000000047321
0xcbCC0F03...A7487b908

Execution Trace

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