Skip to content

Commit 000ac27

Browse files
Merge pull request #1001 from ashcherbakov/diagram-reqs
Fixing Documentation
2 parents c38d6b8 + ae420ef commit 000ac27

File tree

2 files changed

+30
-62
lines changed

2 files changed

+30
-62
lines changed

README.md

Lines changed: 0 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -86,66 +86,4 @@ Please have a look at [Dev Setup](https://github.com/hyperledger/indy-node/blob/
8686
It contains common setup for both indy-plenum and indy-node.
8787

8888

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-
15189

docs/start_nodes.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+

0 commit comments

Comments
 (0)