Transaction Hash:
Block:
8048359 at Jun-28-2019 07:54:47 PM +UTC
Transaction Fee:
0.001188098 ETH
$3.00
Gas Used:
28,978 Gas / 41 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x04668Ec2...D451c8F7F
Miner
| (zhizhu.top) | 904.620530237891836964 Eth | 904.621718335891836964 Eth | 0.001188098 | |
0x79A3D2B9...C09298180 |
0.005015524 Eth
Nonce: 6
|
0.003827426 Eth
Nonce: 7
| 0.001188098 |
Execution Trace
File 1 of 2: InsightsNetworkMigrationToEOS
File 2 of 2: InsightsNetwork3
12345678910111213141516// File: zeppelin-solidity/contracts/ownership/Ownable.solpragma solidity ^0.4.24;/*** @title Ownable* @dev The Ownable contract has an owner address, and provides basic authorization control* functions, this simplifies the implementation of "user permissions".*/contract Ownable {address public owner;event OwnershipRenounced(address indexed previousOwner);event OwnershipTransferred(
File 2 of 2: InsightsNetwork3
12345678910111213141516pragma solidity ^0.4.18;// File: contracts/InsightsNetwork1.solcontract InsightsNetwork1 {address public owner; // Creatoraddress public successor; // May deactivate contractmapping (address => uint) public balances; // Who has whatmapping (address => uint) public unlockTimes; // When balances unlockbool public active;uint256 _totalSupply; // Sum of minted tokensstring public constant name = "INS";string public constant symbol = "INS";uint8 public constant decimals = 0;