-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathsample.json
73 lines (73 loc) · 1.36 KB
/
sample.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"$schema": "https://github.com/hyperledger-labs/fablo/releases/download/2.2.0/schema.json",
"global": {
"fabricVersion": "2.3.2",
"tls": false,
"peerDevMode": false
},
"orgs": [
{
"organization": {
"name": "Orderer",
"mspName": "OrdererMSP",
"domain": "root.com"
},
"orderers": [
{
"groupName": "group1",
"prefix": "orderer",
"type": "solo",
"instances": 1
}
]
},
{
"organization": {
"name": "Org1",
"mspName": "Org1MSP",
"domain": "org1.example.com"
},
"ca": {
"prefix": "ca"
},
"peer": {
"prefix": "peer",
"instances": 2,
"db": "LevelDb"
}
}
],
"channels": [
{
"name": "my-channel1",
"orgs": [
{
"name": "Org1",
"peers": [
"peer0",
"peer1"
]
}
]
}
],
"chaincodes": [
{
"name": "chaincode1",
"version": "0.0.1",
"lang": "node",
"channel": "my-channel1",
"init": "{\"Args\":[]}",
"endorsement": "AND ('Org1MSP.member')",
"directory": "./chaincode1",
"privateData": [
{
"name": "privateCollectionOrg1",
"orgNames": [
"Org1"
]
}
]
}
]
}