Skip to content

Commit 7e61bb3

Browse files
committed
version: Adds correct gh-pages content
1 parent 353fd23 commit 7e61bb3

19 files changed

+32
-38
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Use the `-v` flag to print the `yourdlt` version.
6767

6868
```bash
6969
$ yourdlt -v
70-
yourdlt/1.3.2 linux-x64 node-v14.16.0
70+
yourdlt/1.3.3 linux-x64 node-v14.16.0
7171
```
7272

7373
### Customize the node

docs/clean.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ EXAMPLE
1919
$ yourdlt clean
2020
```
2121

22-
_See code: [src/commands/clean.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.2/src/commands/clean.ts)_
22+
_See code: [src/commands/clean.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.3/src/commands/clean.ts)_

docs/compose.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ EXAMPLE
3131
$ yourdlt compose
3232
```
3333

34-
_See code: [src/commands/compose.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.2/src/commands/compose.ts)_
34+
_See code: [src/commands/compose.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.3/src/commands/compose.ts)_

docs/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ EXAMPLES
5757
$ echo "$MY_ENV_VAR_PASSWORD" | yourdlt config -p testnet -a dual
5858
```
5959

60-
_See code: [src/commands/config.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.2/src/commands/config.ts)_
60+
_See code: [src/commands/config.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.3/src/commands/config.ts)_

docs/decrypt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ EXAMPLES
5252
$ echo "$MY_ENV_VAR_PASSWORD" | yourdlt decrypt --source target/addresses.yml --destination plain-addresses.yml
5353
```
5454

55-
_See code: [src/commands/decrypt.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.2/src/commands/decrypt.ts)_
55+
_See code: [src/commands/decrypt.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.3/src/commands/decrypt.ts)_

docs/encrypt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ EXAMPLES
4444
encrypted-custom-preset.yml
4545
```
4646

47-
_See code: [src/commands/encrypt.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.2/src/commands/encrypt.ts)_
47+
_See code: [src/commands/encrypt.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.3/src/commands/encrypt.ts)_

docs/enrollRewardProgram.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ EXAMPLES
5151
$ echo "$MY_ENV_VAR_PASSWORD" | yourdlt enrollRewardProgram --url http://external-rest:3000
5252
```
5353

54-
_See code: [src/commands/enrollRewardProgram.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.2/src/commands/enrollRewardProgram.ts)_
54+
_See code: [src/commands/enrollRewardProgram.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.3/src/commands/enrollRewardProgram.ts)_

docs/healthCheck.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ EXAMPLE
3434
$ yourdlt healthCheck
3535
```
3636

37-
_See code: [src/commands/healthCheck.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.2/src/commands/healthCheck.ts)_
37+
_See code: [src/commands/healthCheck.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.3/src/commands/healthCheck.ts)_

docs/index.md

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
<p align="center"><img src="https://yourdlt.tools/logo-yourdlt-192x192.png" width="250"></p>
2+
13
# YourDLT: Distributed Ledgers for You.
24

35
[![npm-badge][npm-badge]][npm-url]
@@ -19,21 +21,21 @@ Note that we originally forked the [nemtech/symbol-bootstrap](https://github.com
1921

2022
## Requirements
2123

22-
- [Node 10+](https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-20-04)
24+
- [Node 12+](https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-20-04)
2325
- [Docker 19.03.13](https://docs.docker.com/engine/install/ubuntu/)
2426
- [Docker Compose 1.27.4](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-compose-on-ubuntu-20-04)
2527

2628
Validate your environment by running:
2729

28-
```
30+
```bash
2931
node -v
3032
docker -v
3133
docker-compose -v
3234
```
3335

3436
Make sure that your user can run docker without sudo:
3537

36-
```
38+
```bash
3739
docker run hello-world
3840
```
3941

@@ -55,7 +57,7 @@ Select one of the networks in the list above before you go on to setup your node
5557

5658
### Installing the software
5759

58-
```
60+
```bash
5961
$ npm i -g yourdlt
6062
```
6163

@@ -65,7 +67,7 @@ Use the `-v` flag to print the `yourdlt` version.
6567

6668
```bash
6769
$ yourdlt -v
68-
yourdlt/1.2.1 linux-x64 node-v14.16.0
70+
yourdlt/1.3.3 linux-x64 node-v14.16.0
6971
```
7072

7173
### Customize the node
@@ -93,14 +95,14 @@ Useful configuration items among others:
9395
- `enableDelegatedHarvestersAutoDetection`: Define whether you want to allow _persistent_ delegated harvesting.
9496
- `enableAutoHarvesting`: Define whether you want your node to automatically start harvesting or not.
9597

96-
:warning: If you put sensitive information (i.e. private keys) in this file, please remind yourself to *remove it* after the node is configured and is ready to be run. We will make sure to point out at which point you can *clean* the custom configuration preset.
98+
:warning: If you put sensitive information in this file, please remind yourself to *remove it* after the node is configured and is ready to be run. We will make sure to point out at which point you can *clean* the custom configuration preset.
9799

98100
### Setup your node
99101

100102
After you customized the node experience, you can now actually prepare the configuration of your network node. First we'll need to pick a so-called *network preset*, a *target* folder, an *assembly* and optionally specify a *custom configuration preset*.
101103

102104
```bash
103-
$ yourdlt config -p bootstrap|mainnet|testnet|dhealth|dhealthTestnet -t node -a peer|api|dual -c ~/node_config.yml
105+
$ yourdlt config -p bootstrap|mainnet|testnet|dhealth -t node -a peer|api|dual -c ~/node_config.yml
104106
```
105107

106108
In the above, make sure to pick a network preset that is either `mainnet` for Symbol Mainnet, `testnet` for Symbol Testnet or `dhealth` for DHealth Public Network. Also choose one of the assemblies with the following descripions:
@@ -112,7 +114,7 @@ In the above, make sure to pick a network preset that is either `mainnet` for Sy
112114
Following console output is an example after a successful **yourdlt config** execution:
113115

114116
```bash
115-
$ yourdlt config -p dhealth -t node -a dual
117+
$ yourdlt config -p dhealth -t node -a dual -c ~/node_config.yml
116118
__ __ ____ _ _____
117119
\ \ / /___ _ _ _ __ | _ \ | | |_ _|
118120
\ V // _ \ | | | || '__| | | | || | | |
@@ -145,15 +147,15 @@ d. Keep this password in a secure place! ******
145147
### Setup your device
146148
147149
```
148-
$ yourdlt compose -t node
150+
$ yourdlt compose -t node -c ~/node_config.yml
149151
```
150152
151153
In the above make sure to replace `node` by the folder name you created using the *config* command just before. If you copy/pasted the command name from above, you can leave `node` here.
152154
153155
Following console output is an example after a successful **yourdlt compose** execution:
154156
155157
```bash
156-
$ yourdlt compose -t node
158+
$ yourdlt compose -t node -c ~/node_config.yml
157159
__ __ ____ _ _____
158160
\ \ / /___ _ _ _ __ | _ \ | | |_ _|
159161
\ V // _ \ | | | || '__| | | | || | | |
@@ -174,7 +176,7 @@ d. Keep this password in a secure place! *******
174176
Note that in the following command, we use the `-d` command line argument to denote a *detached* execution, this starts the node *in a background process*. To get information about your node, please use `docker ps` after running the following command:
175177

176178
```bash
177-
$ yourdlt run -t -d node
179+
$ yourdlt run -t node -d -c ~/node_config.yml
178180
__ __ ____ _ _____
179181
\ \ / /___ _ _ _ __ | _ \ | | |_ _|
180182
\ V // _ \ | | | || '__| | | | || | | |
@@ -191,22 +193,14 @@ Pulling rest-gateway (symbolplatform/symbol-rest:2.3.5)...
191193
2.3.5: Pulling from symbolplatform/symbol-rest
192194
```
193195
194-
## Donations / Pot de vin
195-
196-
Donations can also be made with cryptocurrencies and will be used for running the project!
197-
198-
NEM (XEM): NB72EM6TTSX72O47T3GQFL345AB5WYKIDODKPPYW
199-
Symbol (XYM): NDQALDK4XWLOUYKPE7RDEWUI25YNRQ7VCGXMPCI
200-
Ethereum (ETH): 0x7a846fd5Daa4b904caF7C59f866bb906153305D2
201-
Bitcoin (BTC): 3EVqgUqYFRYbf9RjhyjBgKXcEwAQxhaf6o
202-
203196
## Sponsor us
204197
205198
| Platform | Sponsor Link |
206199
| --- | --- |
207200
| Paypal | [https://paypal.me/usingblockchainltd](https://paypal.me/usingblockchainltd) |
208201
| Patreon | [https://patreon.com/usingblockchainltd](https://patreon.com/usingblockchainltd) |
209202
| Github | [https://github.com/sponsors/UsingBlockchain](https://github.com/sponsors/UsingBlockchain) |
203+
| :coffee: :coffee: :coffee: | [https://www.buymeacoffee.com/UBCDigital](https://www.buymeacoffee.com/UBCDigital) |
210204
211205
## Disclaimer
212206

docs/link.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ EXAMPLES
4747
$ echo "$MY_ENV_VAR_PASSWORD" | yourdlt link --unlink --useKnownRestGateways
4848
```
4949

50-
_See code: [src/commands/link.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.2/src/commands/link.ts)_
50+
_See code: [src/commands/link.ts](https://github.com/usingblockchain/yourdlt/blob/v1.3.3/src/commands/link.ts)_

0 commit comments

Comments
 (0)