ethershell 0.1.0-alpha.13 → 0.1.0-alpha.15
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 +8 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,18 +29,22 @@ An interactive Node.js console for Ethereum smart contract development. Write, c
|
|
|
29
29
|
### Installation
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
|
-
# Install globally
|
|
32
|
+
# Install globally:
|
|
33
33
|
npm i -g ethershell
|
|
34
34
|
|
|
35
|
-
# Start EtherShell
|
|
36
|
-
|
|
35
|
+
# Start EtherShell:
|
|
36
|
+
ethershell
|
|
37
|
+
|
|
38
|
+
#or
|
|
39
|
+
|
|
40
|
+
npx ethershell
|
|
37
41
|
```
|
|
38
42
|
|
|
39
43
|
### Basic Usage
|
|
40
44
|
|
|
41
45
|
```bash
|
|
42
46
|
# Start the console
|
|
43
|
-
|
|
47
|
+
ethershell
|
|
44
48
|
|
|
45
49
|
# You should see:
|
|
46
50
|
# EtherShell>
|
package/package.json
CHANGED