ETH Price: $3,143.42 (+5.29%)
Gas: 0.94 Gwei

Transaction Decoder

Block:
19889706 at May-17-2024 12:31:23 PM +UTC
Transaction Fee:
0.000271680672453633 ETH $0.85
Gas Used:
30,221 Gas / 8.989797573 Gwei

Account State Difference:

  Address   Before After State Difference Code
(MEV Builder: 0x777...C94)
3.175219231994894458 Eth3.175219715530894458 Eth0.000000483536
0xcbCC0F03...A7487b908
0xD9d4eEAd...7cb002A30
0.001567302 Eth
Nonce: 2
0.001295621327546367 Eth
Nonce: 3
0.000271680672453633

Execution Trace

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