ETH Price: $2,522.11 (-8.32%)

Transaction Decoder

Block:
7876241 at Jun-01-2019 09:58:49 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
0x09AA6cf6...D08c97A31
0.001298680381 Eth
Nonce: 15
0.001276671381 Eth
Nonce: 16
0.000022009
0x82070415...3e58F0a6a
(MiningPoolHub: Old Address)
5,432.084356000132525867 Eth5,432.084378009132525867 Eth0.000022009

Execution Trace

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