ETH Price: $2,952.18 (-2.83%)

Transaction Decoder

Block:
15645254 at Sep-30-2022 09:28:23 AM +UTC
Transaction Fee:
0.000431206425432159 ETH $1.27
Gas Used:
35,009 Gas / 12.317016351 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x8B990925...30F6acbC8
3.999164088803551 Eth
Nonce: 340
3.998732882378118841 Eth
Nonce: 341
0.000431206425432159
0xcbCC0F03...A7487b908
(bloXroute: Ethical Builder)
0.561119635837361685 Eth0.561189653837361685 Eth0.000070018

Execution Trace

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