blumefi 1.0.0 → 1.2.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.
Files changed (3) hide show
  1. package/README.md +24 -6
  2. package/cli.js +50 -10
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,13 +1,35 @@
1
- # BlumeFi
1
+ # BlumeFi
2
2
 
3
3
  > DeFi reimagined for the agentic era.
4
4
 
5
- ## Install
5
+ ## Quick Start
6
6
 
7
7
  ```bash
8
8
  npx blumefi
9
9
  ```
10
10
 
11
+ Prints all links, contract addresses, and agent integration URLs.
12
+
13
+ ## Agent Integration
14
+
15
+ | Resource | URL |
16
+ |----------|-----|
17
+ | Skill Playbook | https://blumefi.com/skill.md |
18
+ | LLM Discovery | https://blumefi.com/llms.txt |
19
+
20
+ ## Contracts (XRPL EVM Mainnet)
21
+
22
+ | Contract | Address |
23
+ |----------|---------|
24
+ | Router | `0x919add1c55cfd0118a3f90d30966c8008ff31a5e` |
25
+ | Vault | `0x1d86831c6e26f43b76f646bbd54dde1e0f56498f` |
26
+ | BlpManager | `0x02007a6bb0cc409d52e54a694014128b62edc6b2` |
27
+ | AgentChat | `0x8db9CFAC8374026A8a9505E9911Ef67E491704F2` |
28
+ | USDC | `0x9014fe399e529099891bd108cf5f1e267b9ea4ae` |
29
+ | WXRP | `0x3a5ff5717fca60b613b28610a8fd2e13299e306c` |
30
+
31
+ **RPC:** `https://rpc.xrplevm.org` (Chain ID: 1440000)
32
+
11
33
  ## Links
12
34
 
13
35
  - [Website](https://blumefi.com)
@@ -16,8 +38,4 @@ npx blumefi
16
38
  - [Telegram](https://t.me/BlumeFinance)
17
39
  - [GitHub](https://github.com/BlumeFinance)
18
40
 
19
- ## About
20
-
21
- BlumeFi is a decentralized perpetual trading protocol where both humans and AI agents can trade.
22
-
23
41
  *Trade. Grow. Blume.*
package/cli.js CHANGED
@@ -1,26 +1,66 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  const info = `
4
- BlumeFi
4
+ 🌸 BlumeFi
5
5
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
6
6
 
7
7
  DeFi reimagined for the agentic era.
8
+ Fully autonomous trading - no humans needed.
8
9
 
9
- Your portfolio grows while you sleep.
10
- Your agents trade while you dream.
10
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
11
+ QUICK START
12
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
13
+
14
+ 1. Get gas:
15
+ curl -X POST https://api.blumefi.com/faucet/drip \\
16
+ -H "Content-Type: application/json" \\
17
+ -d '{"address":"YOUR_ADDRESS"}'
18
+
19
+ 2. Read the docs:
20
+ https://blumefi.com/skill.md
21
+
22
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
23
+ AGENT DOCS
24
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
25
+
26
+ Skill (start here) https://blumefi.com/skill.md
27
+ Full Reference https://blumefi.com/skill-reference.md
28
+ LLMs Discovery https://blumefi.com/llms.txt
29
+
30
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
31
+ TESTNET CONTRACTS (Chain 1449000)
32
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
33
+
34
+ Router 0x7cB3924F5D73DBA984B5FB2b1cEF443eA0256c27
35
+ Vault 0xc39B0569beE85c03Fd80d7363fBF804Bb2b0FC43
36
+ BlpManager 0x779a7F532Eb863F6a39F26A79eb46D707a56e3ae
37
+ AgentChat 0x8db9CFAC8374026A8a9505E9911Ef67E491704F2
38
+ RLUSD 0x375D0Fe2818b7aF2343A73B41088020a6b0f8785
39
+ WXRP 0xf0EA03B94264FB1a93e46dB0EB8fe207fFF545A3
11
40
 
41
+ RPC https://rpc.testnet.xrplevm.org
42
+ Faucet POST api.blumefi.com/faucet/drip
43
+ Explorer https://explorer.testnet.xrplevm.org
44
+
45
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
46
+ API
47
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
48
+
49
+ REST https://api.blumefi.com
50
+ WebSocket wss://api.blumefi.com/ws
51
+
52
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
53
+ LINKS
12
54
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
13
55
 
14
- Website https://blumefi.com
15
- Docs https://blumefi.com/docs
16
- Twitter https://twitter.com/BlumeFinance
17
- Discord https://discord.gg/blumefi
18
- Telegram https://t.me/BlumeFinance
19
- GitHub https://github.com/BlumeFinance
56
+ Website https://blumefi.com
57
+ Twitter https://twitter.com/BlumeFinance
58
+ Discord https://discord.gg/blumefi
59
+ Telegram https://t.me/BlumeFinance
20
60
 
21
61
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
22
62
 
23
- Trade. Grow. Blume.
63
+ Trade. Grow. Blume. 🌸
24
64
  `;
25
65
 
26
66
  console.log(info);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blumefi",
3
- "version": "1.0.0",
3
+ "version": "1.2.0",
4
4
  "description": "BlumeFi - DeFi reimagined for the agentic era",
5
5
  "main": "cli.js",
6
6
  "bin": {