faucet-terminal 2.0.1 → 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.
Files changed (3) hide show
  1. package/README.md +0 -3
  2. package/install.js +1 -1
  3. package/package.json +1 -1
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
 
package/install.js CHANGED
@@ -8,7 +8,7 @@ const stream = require('stream');
8
8
 
9
9
  const pipeline = promisify(stream.pipeline);
10
10
 
11
- const VERSION = 'v2.0.1';
11
+ const VERSION = 'v2.0.2';
12
12
  const GITHUB_REPO = 'Giri-Aayush/faucet-terminal';
13
13
 
14
14
  // Detect platform and architecture
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "faucet-terminal",
3
- "version": "2.0.1",
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"