jaelis-node 1.3.1 → 1.3.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 +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -73,12 +73,16 @@ npm install -g jaelis-node
|
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
75
|
# Start a node (zero config - auto-connects to testnet)
|
|
76
|
+
# Works without a reward address - add one anytime to start earning!
|
|
76
77
|
jaelis-node start
|
|
77
78
|
|
|
78
|
-
#
|
|
79
|
+
# Or start with your reward wallet (use ANY chain address!)
|
|
79
80
|
jaelis-node start --reward-recipient 0xYourEthAddress
|
|
80
81
|
jaelis-node start --reward-recipient 9WzDX...YourSolanaAddress
|
|
81
82
|
jaelis-node start --reward-recipient bc1q...YourBitcoinAddress
|
|
83
|
+
|
|
84
|
+
# Add a reward wallet later (no restart needed for new nodes)
|
|
85
|
+
jaelis-node wallet:set-recipient 0xYourAddress
|
|
82
86
|
```
|
|
83
87
|
|
|
84
88
|
## Commands
|
|
@@ -227,9 +231,14 @@ JAELIS rewards node operators based on:
|
|
|
227
231
|
- **Bandwidth Provided** - Serve data to the network
|
|
228
232
|
- **Validator Mode** - Opt-in for bonus rewards
|
|
229
233
|
|
|
234
|
+
**Reward wallet is optional.** Start your node anytime - add a wallet when you're ready to earn.
|
|
235
|
+
|
|
230
236
|
**No staking required.** JAELIS never holds your funds. Use any wallet from any chain.
|
|
231
237
|
|
|
232
238
|
```bash
|
|
239
|
+
# Set reward wallet (can do before or after starting node)
|
|
240
|
+
jaelis-node wallet:set-recipient 0xYourAddress
|
|
241
|
+
|
|
233
242
|
# Check your node's contribution stats
|
|
234
243
|
jaelis-node status
|
|
235
244
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jaelis-node",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "Official JAELIS Blockchain Node - Run a full node, validator, or bootstrap node with Cross-Chain Settlement (30+ chains!), ERC-5792 wallet capabilities, EIP-7702 account abstraction",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"bin": {
|