dexbot 1.1.10 → 1.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -13
- package/package.json +11 -2
package/README.md
CHANGED
|
@@ -30,15 +30,24 @@ DEXBot2 is the first open source trading bot with zero runtime dependencies and
|
|
|
30
30
|
## 🔥 Quick Start
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
#
|
|
33
|
+
# Option A — Install via npm
|
|
34
|
+
npm i dexbot
|
|
35
|
+
|
|
36
|
+
# Option B — Clone and install from source
|
|
34
37
|
git clone https://github.com/froooze/DEXBot2.git && cd DEXBot2 && npm install
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Then set up your master password, keys and add bots:
|
|
35
41
|
|
|
36
|
-
|
|
42
|
+
```bash
|
|
37
43
|
node dexbot key
|
|
38
44
|
node dexbot bot
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
And start DEXBot2:
|
|
39
48
|
|
|
40
|
-
|
|
41
|
-
node unlock
|
|
49
|
+
```bash
|
|
50
|
+
node dexbot unlock
|
|
42
51
|
```
|
|
43
52
|
|
|
44
53
|
For detailed setup, see [Installation](#installation) section below.
|
|
@@ -88,20 +97,20 @@ sudo apt-get install nodejs npm git
|
|
|
88
97
|
sudo dnf install nodejs npm git
|
|
89
98
|
```
|
|
90
99
|
|
|
91
|
-
###
|
|
100
|
+
### Install
|
|
92
101
|
|
|
93
102
|
```bash
|
|
94
|
-
#
|
|
95
|
-
|
|
96
|
-
|
|
103
|
+
# Option A — Install via npm
|
|
104
|
+
npm i dexbot
|
|
105
|
+
|
|
106
|
+
# Option B — Clone and install from source
|
|
107
|
+
git clone https://github.com/froooze/DEXBot2.git && cd DEXBot2 && npm install
|
|
108
|
+
```
|
|
97
109
|
|
|
98
|
-
|
|
99
|
-
npm install
|
|
110
|
+
Then set up your master password, keys and add bots:
|
|
100
111
|
|
|
101
|
-
|
|
112
|
+
```bash
|
|
102
113
|
node dexbot key
|
|
103
|
-
|
|
104
|
-
# Create and configure your bots
|
|
105
114
|
node dexbot bot
|
|
106
115
|
```
|
|
107
116
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dexbot",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.11",
|
|
4
4
|
"description": "The first open source trading bot with zero runtime dependencies and a fully adaptive market making strategy.",
|
|
5
5
|
"main": "dist/modules/dexbot_class.js",
|
|
6
6
|
"bin": {
|
|
@@ -72,7 +72,16 @@
|
|
|
72
72
|
"type": "git",
|
|
73
73
|
"url": "git+https://github.com/froooze/DEXBot2.git"
|
|
74
74
|
},
|
|
75
|
-
"keywords": [
|
|
75
|
+
"keywords": [
|
|
76
|
+
"bitshares",
|
|
77
|
+
"trading",
|
|
78
|
+
"market-making",
|
|
79
|
+
"grid-trading",
|
|
80
|
+
"dex",
|
|
81
|
+
"blockchain",
|
|
82
|
+
"crypto",
|
|
83
|
+
"algorithmic-trading"
|
|
84
|
+
],
|
|
76
85
|
"author": "",
|
|
77
86
|
"license": "MIT",
|
|
78
87
|
"type": "commonjs",
|