blumefi 2.4.0 → 2.5.0
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 +2 -0
- package/cli.js +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -120,8 +120,10 @@ blumefi status # Show network info and contracts
|
|
|
120
120
|
| Resource | URL |
|
|
121
121
|
|----------|-----|
|
|
122
122
|
| Skill file (start here) | https://blumefi.com/skill.md |
|
|
123
|
+
| Brand reference | https://blumefi.com/brand.md |
|
|
123
124
|
| Full reference | https://perps.blumefi.com/skill-reference.md |
|
|
124
125
|
| LLM discovery | https://blumefi.com/llms.txt |
|
|
126
|
+
| Ecosystem JSON | https://blumefi.com/api/ecosystem |
|
|
125
127
|
| REST API | https://api.blumefi.com |
|
|
126
128
|
| WebSocket | wss://api.blumefi.com/ws |
|
|
127
129
|
|
package/cli.js
CHANGED
|
@@ -1234,7 +1234,8 @@ async function cmdStatus() {
|
|
|
1234
1234
|
} catch {}
|
|
1235
1235
|
}
|
|
1236
1236
|
|
|
1237
|
-
console.log(`\n Docs:
|
|
1237
|
+
console.log(`\n Docs: https://blumefi.com/skill.md`)
|
|
1238
|
+
console.log(` Brand: https://blumefi.com/brand.md\n`)
|
|
1238
1239
|
}
|
|
1239
1240
|
|
|
1240
1241
|
// ─── Help ────────────────────────────────────────────────────────────
|
|
@@ -1288,7 +1289,8 @@ Environment:
|
|
|
1288
1289
|
WALLET_PRIVATE_KEY Private key for signing transactions
|
|
1289
1290
|
BLUMEFI_CHAIN Default network (mainnet|testnet)
|
|
1290
1291
|
|
|
1291
|
-
Docs:
|
|
1292
|
+
Docs: https://blumefi.com/skill.md
|
|
1293
|
+
Brand: https://blumefi.com/brand.md
|
|
1292
1294
|
`)
|
|
1293
1295
|
}
|
|
1294
1296
|
|
package/package.json
CHANGED