Skip to content

Commit f3a8e68

Browse files
committed
Merge branch 'next' into develop
2 parents a18fb65 + 65da185 commit f3a8e68

File tree

25 files changed

+176
-129
lines changed

25 files changed

+176
-129
lines changed

boilerplate/config/blockchain.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"rpcCorsDomain": "http://localhost:8000",
1313
"account": {
1414
"password": "config/development/password"
15-
}
15+
},
16+
"wsOrigins": "http://localhost:8000"
1617
},
1718
"testnet": {
1819
"enabled": true,

boilerplate/config/communication.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
"default": {
33
"enabled": true,
44
"provider": "whisper",
5-
"available_providers": ["whisper", "orbit"]
5+
"available_providers": ["whisper", "orbit"],
6+
"connection": {
7+
"host": "localhost",
8+
"port": 8546,
9+
"type": "ws"
10+
}
611
}
712
}

boilerplate/config/contracts.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
{
22
"default": {
3+
"versions": {
4+
"web3.js": "1.0.0-beta",
5+
"solc": "0.4.18"
6+
},
7+
"deployment": {
8+
"host": "localhost",
9+
"port": 8545,
10+
"type": "rpc"
11+
},
12+
"dappConnection": [
13+
"$WEB3",
14+
"http://localhost:8545"
15+
],
316
"gas": "auto",
417
"contracts": {
518
}

boilerplate/config/storage.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"enabled": true,
1212
"provider": "ipfs",
1313
"host": "localhost",
14-
"port": 5001
14+
"port": 5001,
15+
"getUrl": "http://localhost:8080/ipfs/"
1516
}
1617
}

demo/app/contracts/simple_storage.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
pragma solidity ^0.4.7;
1+
pragma solidity ^0.4.18;
22
contract SimpleStorage {
33
uint public storedData;
44

5-
function SimpleStorage(uint initialValue) {
5+
function SimpleStorage(uint initialValue) public {
66
storedData = initialValue;
77
}
88

9-
function set(uint x) {
9+
function set(uint x) public {
1010
storedData = x;
1111
}
1212

13-
function get() constant returns (uint retVal) {
13+
function get() public view returns (uint retVal) {
1414
return storedData;
1515
}
1616

demo/config/blockchain.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"rpcCorsDomain": "http://localhost:8000",
1313
"account": {
1414
"password": "config/development/password"
15-
}
15+
},
16+
"wsOrigins": "http://localhost:8000"
1617
},
1718
"testnet": {
1819
"enabled": true,

demo/config/communication.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
"default": {
33
"enabled": true,
44
"provider": "whisper",
5-
"available_providers": ["whisper", "orbit"]
5+
"available_providers": ["whisper", "orbit"],
6+
"connection": {
7+
"host": "localhost",
8+
"port": 8546,
9+
"type": "ws"
10+
}
611
}
712
}

demo/config/contracts.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
{
22
"default": {
3+
"versions": {
4+
"web3.js": "1.0.0-beta",
5+
"solc": "0.4.18"
6+
},
7+
"deployment": {
8+
"host": "localhost",
9+
"port": 8545,
10+
"type": "rpc"
11+
},
12+
"dappConnection": [
13+
"$WEB3",
14+
"http://localhost:8545"
15+
],
316
"gas": "auto",
417
"contracts": {
518
"SimpleStorage": {

demo/config/storage.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"enabled": true,
1212
"provider": "ipfs",
1313
"host": "localhost",
14-
"port": 5001
14+
"port": 5001,
15+
"getUrl": "http://localhost:8080/ipfs/"
1516
}
1617
}

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = u'2.5'
61+
version = u'2.6'
6262
# The full version, including alpha/beta/rc tags.
63-
release = u'2.5.2'
63+
release = u'2.6.0'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

0 commit comments

Comments
 (0)