-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.json
60 lines (60 loc) · 1.09 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"chainName":"hello-world",
"deployWaitTime":"30000",
"transactionWaitTime":"30000",
"KeyValueStore":"keyValStore",
"orderer":{
"orderer_url":"grpc://localhost:5151"
},
"ca":{
"ca_url":"grpc://localhost:7054"
},
"peers":[
{
"name":"vp0",
"peer_url":"grpc://localhost:7051"
},
{
"name":"vp1",
"peer_url":"grpc://localhost:7056"
}
],
"users":[
{
"username":"admin",
"secret":"Xurw3yU9zI0l",
"affiliation":"bank_a"
},
{
"username":"JohnDoe",
"secret":"",
"affiliation":"bank_a"
}
],
"deployRequest":{
"chaincodePath":"chaincode",
"functionName":"init",
"args":[
"a",
"100",
"b",
"200"
]
},
"invokeRequest":{
"functionName":"invoke",
"args":[
"move",
"a",
"b",
"10"
]
},
"queryRequest":{
"functionName":"invoke",
"args":[
"query",
"a"
]
}
}