Skip to content

Commit d5bf446

Browse files
authored
Merge pull request #4 from arturgontijo/_new_daemon
[repo] New Daemon v0.1.6.
2 parents 038fbbf + 49abf7b commit d5bf446

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ RUN apt-get install -y python3 python3-pip
1515
RUN cd ${SINGNET_REPOS} && \
1616
mkdir snet-daemon && \
1717
cd snet-daemon && \
18-
wget https://github.com/singnet/snet-daemon/releases/download/v0.1.5/snet-daemon-v0.1.5-linux-amd64.tar.gz && \
19-
tar -xvf snet-daemon-v0.1.5-linux-amd64.tar.gz && \
20-
mv snet-daemon-v0.1.5-linux-amd64/snetd /usr/bin/snetd
18+
wget https://github.com/singnet/snet-daemon/releases/download/v0.1.6/snet-daemon-v0.1.6-linux-amd64.tar.gz && \
19+
tar -xvf snet-daemon-v0.1.6-linux-amd64.tar.gz && \
20+
mv snet-daemon-v0.1.6-linux-amd64/snetd /usr/bin/snetd
2121

2222
RUN cd ${SINGNET_REPOS} && \
2323
git clone https://github.com/singnet/example-service.git && \

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Create the `SNET Daemon`'s config JSON file (`snetd.config.json`).
5151

5252
```
5353
{
54-
"DAEMON_END_POINT": "http://DAEMON_HOST:DAEMON_PORT",
54+
"DAEMON_END_POINT": "DAEMON_HOST:DAEMON_PORT",
5555
"ETHEREUM_JSON_RPC_ENDPOINT": "https://JSON_RPC_ENDPOINT",
5656
"IPFS_END_POINT": "http://ipfs.singularitynet.io:80",
5757
"REGISTRY_ADDRESS_KEY": "REGISTRY_ADDRESS",
@@ -70,7 +70,7 @@ Create the `SNET Daemon`'s config JSON file (`snetd.config.json`).
7070

7171
For example, using the Kovan testnet, replace tags with:
7272

73-
- `http://DAEMON_HOST:DAEMON_PORT`: http://localhost:7000
73+
- `DAEMON_HOST:DAEMON_PORT`: localhost:7000
7474
- `https://JSON_RPC_ENDPOINT`: https://kovan.infura.io
7575
- `REGISTRY_ADDRESS`: 0xe331bf20044a5b24c1a744abc90c1fd711d2c08d
7676
- `http://SERVICE_GRPC_HOST:SERVICE_GRPC_PORT`: http://localhost:7003
@@ -79,7 +79,7 @@ For example, using the Kovan testnet, replace tags with:
7979

8080
For example, using the Ropsten testnet, replace tags with:
8181

82-
- `http://DAEMON_HOST:DAEMON_PORT`: http://localhost:7001
82+
- `DAEMON_HOST:DAEMON_PORT`: localhost:7000
8383
- `https://JSON_RPC_ENDPOINT`: https://ropsten.infura.io
8484
- `REGISTRY_ADDRESS`: 0x5156fde2ca71da4398f8c76763c41bc9633875e4
8585
- `http://SERVICE_GRPC_HOST:SERVICE_GRPC_PORT`: http://localhost:7003
@@ -116,7 +116,7 @@ After this, run the service (with `SNET Daemon`), make sure you have the `snetd.
116116
```
117117
# cat snetd.config.json
118118
{
119-
"DAEMON_END_POINT": "http://localhost:7000",
119+
"DAEMON_END_POINT": "localhost:7000",
120120
"ETHEREUM_JSON_RPC_ENDPOINT": "https://kovan.infura.io",
121121
"IPFS_END_POINT": "http://ipfs.singularitynet.io:80",
122122
"REGISTRY_ADDRESS_KEY": "0xe331bf20044a5b24c1a744abc90c1fd711d2c08d",

0 commit comments

Comments
 (0)