ETH Price: $2,538.10 (+1.12%)

Transaction Decoder

Block:
7876119 at Jun-01-2019 09:32:12 PM +UTC
Transaction Fee:
0.000022009 ETH $0.06
Gas Used:
22,009 Gas / 1 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x2E8e00b0...15a1B7BBc
0.001263528061 Eth
Nonce: 16
0.001241519061 Eth
Nonce: 17
0.000022009
0x82070415...3e58F0a6a
(HTX Mining Pool)
8.416428163449051211 Eth8.416450172449051211 Eth0.000022009

Execution Trace

Voken.transfer( to=0x1338051731026FD6771FB4201C0457910b3d668E, value=157000000 ) => ( 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.5.7;
// Vision.Network 100G Token -- is called "Voken" (upgraded)
//
// More info:
// https://vision.network
// https://voken.io
//
// Contact us:
// support@vision.network
// support@voken.io
/**
* @title SafeMath
* @dev Unsigned math operations with safety checks that revert on error.
*/
library SafeMath {
/**
* @dev Adds two unsigned integers, reverts on overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
c = a + b;
assert(c >= a);
return c;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX