-
Notifications
You must be signed in to change notification settings - Fork 976
/
Copy pathconnection_profile_cs.json
65 lines (65 loc) · 1.17 KB
/
connection_profile_cs.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
{
"name": "Container Service Network",
"x-networkId": "not-important",
"x-type": "hlfv1",
"description": "Connection Profile for an IBM Blockchain Network on the container service",
"version": "1.0.0",
"client": {
"organization": "Org1MSP"
},
"channels": {
"channel1": {
"orderers": [
"fabric-orderer"
],
"peers": {},
"chaincodes": [
"marbles:v4"
],
"x-blockDelay": 10000
}
},
"organizations": {
"Org1MSP": {
"mspid": "Org1MSP",
"peers": [
"blockchain-org1peer1"
],
"certificateAuthorities": [
"blockchain-ca"
],
"adminPrivateKey": {
"path": "org1_admin_key.pem"
},
"signedCert": {
"path": "org1_admin_cert.pem"
}
}
},
"orderers": {
"fabric-orderer": {
"url": "grpc://blockchain-orderer:31010"
}
},
"peers": {
"blockchain-org1peer1": {
"url": "grpc://blockchain-org1peer1:30110",
"eventUrl": "grpc://blockchain-org1peer1:30111"
}
},
"certificateAuthorities": {
"blockchain-ca": {
"url": "http://blockchain-ca:30054",
"httpOptions": {
"verify": true
},
"registrar": [
{
"enrollId": "admin",
"enrollSecret": "adminpw"
}
],
"caName": "CA1"
}
}
}