hodl-wallet 1.2.4 → 1.2.6

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 (2) hide show
  1. package/README.md +9 -5
  2. package/package.json +13 -5
package/README.md CHANGED
@@ -1,14 +1,13 @@
1
- # 🧊 HODL Wallet: Blazing-fast, transparent, and ad-free crypto wallet!
2
-
3
- ![HODL Wallet](https://raw.githubusercontent.com/clasen/HODL/refs/heads/master/example.jpg)
4
-
5
- ## 🚀 Install and try!
1
+ # 🧊 HODL Wallet - Fast CLI crypto wallet!
6
2
 
3
+ #### 📦 Install and try!
7
4
  ```bash
8
5
  npm install -g hodl-wallet
9
6
  hodl
10
7
  ```
11
8
 
9
+ ![HODL Wallet](https://raw.githubusercontent.com/clasen/HODL/refs/heads/master/example.jpg)
10
+
12
11
  ## 🚀 Why HODL Wallet?
13
12
 
14
13
  Let's face it, Trust Wallet's sluggishness and annoying ads are so last season. HODL Wallet is here to agilize your crypto experience.
@@ -18,6 +17,7 @@ Let's face it, Trust Wallet's sluggishness and annoying ads are so last season.
18
17
  - 🚫 Zero ads, zero BS
19
18
  - 🔒 Create wallets offline (because paranoia is just good sense in crypto)
20
19
  - 🔍 Fully transparent, open-source code
20
+ - 🌐 Support for both ERC-20 and BEP-20 networks
21
21
 
22
22
  That's it! Follow the prompts and you're in crypto heaven.
23
23
 
@@ -39,6 +39,10 @@ Because constantly checking your balance is totally healthy.
39
39
 
40
40
  Keep your favorite addresses handy. No more copy-pasting!
41
41
 
42
+ ### 🌐 Multi-Network Support
43
+
44
+ Seamlessly manage your assets on both BEP-20 (Binance Smart Chain) and ERC-20 (Ethereum) networks. Switch between networks with ease!
45
+
42
46
  ## 🔒 Security
43
47
 
44
48
  ### 🔍 Security Audit
package/package.json CHANGED
@@ -1,10 +1,20 @@
1
1
  {
2
2
  "name": "hodl-wallet",
3
- "version": "1.2.4",
4
- "description": "🧊 HODL Wallet - Blazing-fast, transparent, and ad-free crypto wallet!",
3
+ "version": "1.2.6",
4
+ "description": "🧊 HODL Wallet - Fast CLI crypto wallet!",
5
+ "author": "Martin Clasen",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/clasen/HODL.git"
9
+ },
10
+ "license": "MIT",
11
+ "bugs": {
12
+ "url": "https://github.com/clasen/HODL/issues"
13
+ },
14
+ "homepage": "https://github.com/clasen/HODL#readme",
5
15
  "main": "index.mjs",
6
16
  "bin": {
7
- "hodl": "./index.mjs"
17
+ "hodl": "index.mjs"
8
18
  },
9
19
  "scripts": {
10
20
  "start": "node ./index.mjs",
@@ -29,8 +39,6 @@
29
39
  "evm",
30
40
  "clasen"
31
41
  ],
32
- "author": "Hodl Wallet",
33
- "license": "ISC",
34
42
  "dependencies": {
35
43
  "bip39": "^3.1.0",
36
44
  "cli-table3": "^0.6.5",