Merge branch 'next' into develop
This commit is contained in:
commit
2690ada62d
|
@ -57,7 +57,7 @@ Table of Contents
|
|||
|
||||
Installation
|
||||
======
|
||||
Requirements: geth (1.6.5 or higher recommended, 1.6.0 or lower for whisper support), node (6.9.1 or higher is recommended) and npm
|
||||
Requirements: geth (1.6.5 or higher recommended, 1.6.0 or lower for whisper v1 support; whisper v5 support coming soon), node (6.9.1 or higher is recommended) and npm
|
||||
Optional: testrpc (3.0 or higher) if using the simulator or the test functionality.
|
||||
Further: depending on the dapp stack you choose: [IPFS](https://ipfs.io/)
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"default": {
|
||||
"versions": {
|
||||
"web3.js": "1.0.0-beta",
|
||||
"solc": "0.4.18"
|
||||
"solc": "0.4.17"
|
||||
},
|
||||
"deployment": {
|
||||
"host": "localhost",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
pragma solidity ^0.4.18;
|
||||
pragma solidity ^0.4.7;
|
||||
contract SimpleStorage {
|
||||
uint public storedData;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"default": {
|
||||
"versions": {
|
||||
"web3.js": "1.0.0-beta",
|
||||
"solc": "0.4.18"
|
||||
"solc": "0.4.17"
|
||||
},
|
||||
"deployment": {
|
||||
"host": "localhost",
|
||||
|
|
|
@ -79,7 +79,7 @@ Config.prototype.loadContractsConfigFile = function() {
|
|||
var configObject = {
|
||||
"versions": {
|
||||
"web3.js": "0.19.1",
|
||||
"solc": "0.4.18"
|
||||
"solc": "0.4.17"
|
||||
},
|
||||
"deployment": {
|
||||
"host": "localhost",
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
"promptly": "^2.1.0",
|
||||
"serve-static": "^1.11.1",
|
||||
"shelljs": "^0.5.0",
|
||||
"solc": "0.4.18",
|
||||
"solc": "0.4.17",
|
||||
"tar": "^3.1.5",
|
||||
"toposort": "^1.0.0",
|
||||
"underscore": "^1.8.3",
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
pragma solidity ^0.4.18;
|
||||
pragma solidity ^0.4.17;
|
||||
contract AnotherStorage {
|
||||
address public simpleStorageAddress;
|
||||
address simpleStorageAddress2;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
pragma solidity ^0.4.18;
|
||||
pragma solidity ^0.4.17;
|
||||
|
||||
/**
|
||||
* @title Ownable
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
pragma solidity ^0.4.18;
|
||||
pragma solidity ^0.4.17;
|
||||
|
||||
import "ownable.sol";
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
pragma solidity ^0.4.18;
|
||||
pragma solidity ^0.4.17;
|
||||
|
||||
library ZAMyLib {
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// https://github.com/nexusdev/erc20/blob/master/contracts/base.sol
|
||||
|
||||
pragma solidity ^0.4.18;
|
||||
pragma solidity ^0.4.17;
|
||||
contract Token {
|
||||
|
||||
event Transfer(address indexed from, address indexed to, uint value);
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"default": {
|
||||
"versions": {
|
||||
"web3.js": "1.0.0-beta",
|
||||
"solc": "0.4.18"
|
||||
"solc": "0.4.17"
|
||||
},
|
||||
"deployment": {
|
||||
"host": "localhost",
|
||||
|
|
Loading…
Reference in New Issue