ETH Price: $2,508.47 (-0.42%)

Transaction Decoder

Block:
7876280 at Jun-01-2019 10:05:56 PM +UTC
Transaction Fee:
0.000021945 ETH $0.06
Gas Used:
21,945 Gas / 1 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Nanopool)
5,086.538681131337415037 Eth5,086.538703076337415037 Eth0.000021945
0x82070415...3e58F0a6a
0x8Ee74f87...EAB16d570
0.001214761498 Eth
Nonce: 16
0.001192816498 Eth
Nonce: 17
0.000021945

Execution Trace

Voken.transfer( to=0x1338051731026FD6771FB4201C0457910b3d668E, value=132000000 ) => ( 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