File tree 2 files changed +30
-62
lines changed
2 files changed +30
-62
lines changed Original file line number Diff line number Diff line change @@ -86,66 +86,4 @@ Please have a look at [Dev Setup](https://github.com/hyperledger/indy-node/blob/
86
86
It contains common setup for both indy-plenum and indy-node.
87
87
88
88
89
- ## Try Plenum Locally
90
-
91
- #### Install from pypi
92
-
93
-
94
- ```
95
- pip install indy-plenum
96
- ```
97
-
98
- From here, you can play with the command-line interface (see the [ tutorial] ( https://github.com/hyperledger/indy-plenum/wiki ) ).
99
-
100
- Note: For Windows, we recommended using either [ cmder] ( http://cmder.net/ ) or [ conemu] ( https://conemu.github.io/ ) .
101
-
102
- ```
103
- plenum
104
- ```
105
-
106
- ...or run the tests.
107
-
108
- ```
109
- git clone https://github.com/hyperledger/indy-plenum.git
110
- cd indy-plenum
111
- python -m plenum.test
112
- ```
113
-
114
-
115
- #### Initializing Keys
116
- Each Node needs to have keys initialized
117
- - ed25519 transport keys (used by ZMQ for Node-to-Node and Node-to-Client communication)
118
- - BLS keys for BLS multi-signature and state proofs support
119
-
120
- ```
121
- init_plenum_keys --name Alpha --seeds 000000000000000000000000000Alpha Alpha000000000000000000000000000 --force
122
- ```
123
-
124
- ```
125
- init_plenum_keys --name Beta --seeds 0000000000000000000000000000Beta Beta0000000000000000000000000000 --force
126
- ```
127
-
128
- ```
129
- init_plenum_keys --name Gamma --seeds 000000000000000000000000000Gamma Gamma000000000000000000000000000 --force
130
- ```
131
-
132
- ```
133
- init_plenum_keys --name Delta --seeds 000000000000000000000000000Delta Delta000000000000000000000000000 --force
134
- ```
135
- Note: Seed can be any randomly chosen 32 byte value. It does not have to be in the format ` 00..<name of the node> ` .
136
-
137
-
138
- #### Seeds used for generating clients
139
- 1 . Seed used for steward Bob's signing key pair ``` 11111111111111111111111111111111 ```
140
- 2 . Seed used for steward Bob's public private key pair ``` 33333333333333333333333333333333 ```
141
- 3 . Seed used for client Alice's signing key pair ``` 22222222222222222222222222222222 ```
142
- 4 . Seed used for client Alice's public private key pair ``` 44444444444444444444444444444444 ```
143
-
144
-
145
- #### Running Node
146
-
147
- ```
148
- start_plenum_node Alpha
149
- ```
150
-
151
89
Original file line number Diff line number Diff line change
1
+ #### Initializing Keys
2
+ Each Node needs to have keys initialized
3
+ - ed25519 transport keys (used by ZMQ for Node-to-Node and Node-to-Client communication)
4
+ - BLS keys for BLS multi-signature and state proofs support
5
+
6
+ ```
7
+ init_plenum_keys --name Alpha --seeds 000000000000000000000000000Alpha Alpha000000000000000000000000000 --force
8
+ ```
9
+
10
+ ```
11
+ init_plenum_keys --name Beta --seeds 0000000000000000000000000000Beta Beta0000000000000000000000000000 --force
12
+ ```
13
+
14
+ ```
15
+ init_plenum_keys --name Gamma --seeds 000000000000000000000000000Gamma Gamma000000000000000000000000000 --force
16
+ ```
17
+
18
+ ```
19
+ init_plenum_keys --name Delta --seeds 000000000000000000000000000Delta Delta000000000000000000000000000 --force
20
+ ```
21
+ Note: Seed can be any randomly chosen 32 byte value. It does not have to be in the format ` 00..<name of the node> ` .
22
+
23
+
24
+
25
+ #### Running Node
26
+
27
+ ```
28
+ start_plenum_node Alpha
29
+ ```
30
+
You can’t perform that action at this time.
0 commit comments