faucet-terminal 2.0.0 → 2.0.2
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 +1 -4
- package/install.js +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -53,8 +53,6 @@ faucet-terminal req 0xYOUR_ADDRESS -n sn-sep
|
|
|
53
53
|
# Starknet Sepolia (ETH)
|
|
54
54
|
faucet-terminal req 0xYOUR_ADDRESS -n sn-sep --token ETH
|
|
55
55
|
|
|
56
|
-
# Starknet Sepolia (both tokens)
|
|
57
|
-
faucet-terminal req 0xYOUR_ADDRESS -n sn-sep --both
|
|
58
56
|
```
|
|
59
57
|
|
|
60
58
|
## Networks
|
|
@@ -79,7 +77,6 @@ limits, l Show rate limits
|
|
|
79
77
|
```
|
|
80
78
|
-n, --network Network (required): eth-sep, sn-sep
|
|
81
79
|
--token Token type: ETH, STRK
|
|
82
|
-
--both Request both tokens (Starknet only)
|
|
83
80
|
--json JSON output
|
|
84
81
|
```
|
|
85
82
|
|
|
@@ -108,7 +105,7 @@ MIT
|
|
|
108
105
|
|
|
109
106
|
<div align="center">
|
|
110
107
|
|
|
111
|
-
[npm](https://www.npmjs.com/package/faucet-terminal) · [GitHub](https://github.com/Giri-Aayush/faucet-
|
|
108
|
+
[npm](https://www.npmjs.com/package/faucet-terminal) · [GitHub](https://github.com/Giri-Aayush/faucet-terminal) · [Issues](https://github.com/Giri-Aayush/faucet-terminal/issues)
|
|
112
109
|
|
|
113
110
|
Made with ❤️ by a developer, for developers
|
|
114
111
|
|
package/install.js
CHANGED
|
@@ -8,8 +8,8 @@ const stream = require('stream');
|
|
|
8
8
|
|
|
9
9
|
const pipeline = promisify(stream.pipeline);
|
|
10
10
|
|
|
11
|
-
const VERSION = 'v2.0.
|
|
12
|
-
const GITHUB_REPO = 'Giri-Aayush/faucet-
|
|
11
|
+
const VERSION = 'v2.0.2';
|
|
12
|
+
const GITHUB_REPO = 'Giri-Aayush/faucet-terminal';
|
|
13
13
|
|
|
14
14
|
// Detect platform and architecture
|
|
15
15
|
function getPlatform() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "faucet-terminal",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Multi-chain testnet faucet CLI - get tokens on Starknet and Ethereum testnets",
|
|
5
5
|
"bin": {
|
|
6
6
|
"faucet-terminal": "./bin/faucet-terminal.js"
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"repository": {
|
|
27
27
|
"type": "git",
|
|
28
|
-
"url": "https://github.com/Giri-Aayush/faucet-
|
|
28
|
+
"url": "https://github.com/Giri-Aayush/faucet-terminal.git"
|
|
29
29
|
},
|
|
30
|
-
"homepage": "https://github.com/Giri-Aayush/faucet-
|
|
30
|
+
"homepage": "https://github.com/Giri-Aayush/faucet-terminal#readme",
|
|
31
31
|
"bugs": {
|
|
32
|
-
"url": "https://github.com/Giri-Aayush/faucet-
|
|
32
|
+
"url": "https://github.com/Giri-Aayush/faucet-terminal/issues"
|
|
33
33
|
},
|
|
34
34
|
"engines": {
|
|
35
35
|
"node": ">=14.0.0"
|