faucet-terminal 2.0.3 → 2.0.4

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 +1 -0
  2. package/install.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -158,6 +158,7 @@ faucet-terminal l
158
158
  | `--network` | `-n` | Network to use (required for most commands) |
159
159
  | `--token` | | Token to request: `ETH`, `STRK` |
160
160
  | `--json` | | Output in JSON format |
161
+ | `--version` | `-v` | Show version |
161
162
  | `--help` | `-h` | Show help |
162
163
 
163
164
  ## Rate Limits
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.3';
11
+ const VERSION = 'v2.0.4';
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.3",
3
+ "version": "2.0.4",
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"