solana-balance-cli 1.0.1 → 1.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 +21 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
A simple command-line tool to check your Solana wallet balance in both SOL and USD.
|
|
4
4
|
|
|
5
|
+
**Package:** `solana-balance-cli` | **Command:** `sol-balance`
|
|
6
|
+
|
|
5
7
|
## Features
|
|
6
8
|
|
|
7
9
|
- ✅ Fetch real-time Solana wallet balance
|
|
@@ -144,6 +146,14 @@ This will prompt you to:
|
|
|
144
146
|
|
|
145
147
|
This creates a changeset file in `.changeset/` that describes your changes.
|
|
146
148
|
|
|
149
|
+
**After creating a changeset, commit and push it:**
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
git add .changeset/
|
|
153
|
+
git commit -m "chore: add changeset"
|
|
154
|
+
git push
|
|
155
|
+
```
|
|
156
|
+
|
|
147
157
|
#### Versioning and Publishing
|
|
148
158
|
|
|
149
159
|
To create a new version and update the changelog:
|
|
@@ -158,6 +168,14 @@ This will:
|
|
|
158
168
|
- Generate/update `CHANGELOG.md`
|
|
159
169
|
- Remove used changeset files
|
|
160
170
|
|
|
171
|
+
**After versioning, commit the changes:**
|
|
172
|
+
|
|
173
|
+
```bash
|
|
174
|
+
git add .
|
|
175
|
+
git commit -m "chore: version bump"
|
|
176
|
+
git push
|
|
177
|
+
```
|
|
178
|
+
|
|
161
179
|
To publish to npm:
|
|
162
180
|
|
|
163
181
|
```bash
|
|
@@ -172,6 +190,9 @@ Or you can publish manually after versioning:
|
|
|
172
190
|
|
|
173
191
|
```bash
|
|
174
192
|
npm run version
|
|
193
|
+
git add .
|
|
194
|
+
git commit -m "chore: version bump"
|
|
195
|
+
git push
|
|
175
196
|
npm publish
|
|
176
197
|
```
|
|
177
198
|
|