ETH Price: $4,279.28 (+2.25%)

Transaction Decoder

Block:
20905766 at Oct-06-2024 09:58:47 AM +UTC
Transaction Fee:
0.00034753808088279 ETH $1.49
Gas Used:
47,081 Gas / 7.38170559 Gwei

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
12.617473682835683174 Eth12.61756044186425261 Eth0.000086759028569436
0xcbCC0F03...A7487b908
0xe5C3B52e...24D98b99f
0.006472043029149697 Eth
Nonce: 465
0.006124504948266907 Eth
Nonce: 466
0.00034753808088279

Execution Trace

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