-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the separate snetd configs for ropsten and kovan
- Loading branch information
Showing
6 changed files
with
125 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"version": 1, | ||
"display_name": "moses-service", | ||
"encoding": "proto", | ||
"service_type": "grpc", | ||
"payment_expiration_threshold": 40320, | ||
"model_ipfs_hash": "QmXMfafMdLuF8yZvQc8BRz1LJ7FWGCAXDMgpWbTUhMdbvT", | ||
"mpe_address": "0x7E6366Fbe3bdfCE3C906667911FC5237Cc96BD08", | ||
"pricing": { | ||
"price_model": "fixed_price", | ||
"price_in_cogs": 1 | ||
}, | ||
"groups": [ | ||
{ | ||
"group_name": "default_group", | ||
"group_id": "+VN4NR3ie5Zj1e+ZVsz/wms33+UxUa6w520iv+Dbrfk=", | ||
"payment_address": "0xaceB1EaCA36061ff29Ddb7c963142abbFf23e508" | ||
} | ||
], | ||
"endpoints": [ | ||
{ | ||
"group_name": "default_group", | ||
"endpoint": "46.4.115.181:5005" | ||
} | ||
], | ||
"service_description": { | ||
"url": "https://mozi-ai.github.io/moses-service/", | ||
"description": "The service uses the OpenCog meta optimising semantic evolutionary search algorithm MOSES to generate a supervised binary classification model of genomic or other high dimensional binary feature data sets using boolean regression" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"daemon_end_point": "0.0.0.0:5005", | ||
"ethereum_json_rpc_endpoint": "https://ropsten.infura.io", | ||
"ipfs_end_point": "http://ipfs.singularitynet.io:80", | ||
"registry_address_key": "0x5156fde2ca71da4398f8c76763c41bc9633875e4", | ||
"passthrough_enabled": true, | ||
"passthrough_endpoint": "http://localhost:5003", | ||
"organization_id": "snet", | ||
"service_id": "moses-service", | ||
|
||
"payment_channel_storage_server": { | ||
"id": "storage-ropsten", | ||
"host": "127.0.0.1", | ||
"client_port": 2381, | ||
"peer_port": 2382, | ||
"token": "unique-token", | ||
"cluster": "storage-ropsten=http://127.0.0.1:2382", | ||
"data_dir": "etcd/storage-data-dir-ropsten.etcd", | ||
"enabled": true | ||
}, | ||
|
||
"payment_channel_storage_client": { | ||
"connection_timeout": "5s", | ||
"request_timeout": "3s", | ||
"endpoints": ["http://127.0.0.1:2381"] | ||
}, | ||
|
||
"log": { | ||
"level": "debug", | ||
"output": { | ||
"current_link": "./snetd-ropsten.log", | ||
"file_pattern": "./snetd-ropsten.%Y%m%d.log", | ||
"rotation_count": 0, | ||
"rotation_time_in_sec": 86400, | ||
"type": "file" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"daemon_end_point": "0.0.0.0:5002", | ||
"ethereum_json_rpc_endpoint": "https://kovan.infura.io", | ||
"ipfs_end_point": "http://ipfs.singularitynet.io:80", | ||
"registry_address_key": "0xe331bf20044a5b24c1a744abc90c1fd711d2c08d", | ||
"passthrough_enabled": true, | ||
"passthrough_endpoint": "http://localhost:5003", | ||
"organization_id": "snet", | ||
"service_id": "moses-service", | ||
|
||
"payment_channel_storage_server": { | ||
"id": "storage-kovan", | ||
"host": "127.0.0.1", | ||
"client_port": 2379, | ||
"peer_port": 2380, | ||
"token": "unique-token", | ||
"cluster": "storage-kovan=http://127.0.0.1:2380", | ||
"data_dir": "etcd/storage-data-dir-kovan.etcd", | ||
"enabled": true | ||
}, | ||
|
||
"payment_channel_storage_client": { | ||
"connection_timeout": "5s", | ||
"request_timeout": "3s", | ||
"endpoints": ["http://127.0.0.1:2379"] | ||
}, | ||
|
||
"log": { | ||
"level": "debug", | ||
"output": { | ||
"current_link": "./snetd-kovan.log", | ||
"file_pattern": "./snetd-kovan.%Y%m%d.log", | ||
"rotation_count": 0, | ||
"rotation_time_in_sec": 86400, | ||
"type": "file" | ||
} | ||
} | ||
} |