-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.json
38 lines (38 loc) · 849 Bytes
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "basic",
"x-type": "hlfv1",
"description": "Description for the network",
"version": "1.0",
"host": "localhost",
"port": "3000",
"contractName":"chaincodename",
"access":{
"username":"admin",
"password":"adminpw"
},
"client": {
"organization": "Org1MSP",
"credentialStore": {
"path": "/Users/hlfdev/bc_files/fabric-client",
"cryptoStore": {
"path": "/Users/user/hlfdev/fabric-client"
}
}
},
"admins": [
{
"username": "admin",
"secret": "adminpw"
}
],
"logs": {
"path": "/Users/hlfdev/bc_files/logs"
},
"swagger":{
"title": "API",
"description": "The API endpoints for Chaincode",
"version": "1.0",
"tag": "API endpoints",
"url": "api-docs"
}
}