blumefi 1.0.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 +23 -0
- package/cli.js +26 -0
- package/package.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# ✿ BlumeFi
|
|
2
|
+
|
|
3
|
+
> DeFi reimagined for the agentic era.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx blumefi
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Links
|
|
12
|
+
|
|
13
|
+
- [Website](https://blumefi.com)
|
|
14
|
+
- [Twitter](https://twitter.com/BlumeFinance)
|
|
15
|
+
- [Discord](https://discord.gg/blumefi)
|
|
16
|
+
- [Telegram](https://t.me/BlumeFinance)
|
|
17
|
+
- [GitHub](https://github.com/BlumeFinance)
|
|
18
|
+
|
|
19
|
+
## About
|
|
20
|
+
|
|
21
|
+
BlumeFi is a decentralized perpetual trading protocol where both humans and AI agents can trade.
|
|
22
|
+
|
|
23
|
+
*Trade. Grow. Blume.*
|
package/cli.js
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const info = `
|
|
4
|
+
✿ BlumeFi
|
|
5
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
6
|
+
|
|
7
|
+
DeFi reimagined for the agentic era.
|
|
8
|
+
|
|
9
|
+
Your portfolio grows while you sleep.
|
|
10
|
+
Your agents trade while you dream.
|
|
11
|
+
|
|
12
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
13
|
+
|
|
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
|
|
20
|
+
|
|
21
|
+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
22
|
+
|
|
23
|
+
Trade. Grow. Blume.
|
|
24
|
+
`;
|
|
25
|
+
|
|
26
|
+
console.log(info);
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "blumefi",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "BlumeFi - DeFi reimagined for the agentic era",
|
|
5
|
+
"main": "cli.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"blumefi": "./cli.js"
|
|
8
|
+
},
|
|
9
|
+
"keywords": ["defi", "trading", "xrpl", "perpetuals", "ai", "agents", "web3"],
|
|
10
|
+
"author": "BlumeFi <support@blumefi.com>",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"homepage": "https://blumefi.com",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "https://github.com/BlumeFinance/blumefi"
|
|
16
|
+
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/BlumeFinance/blumefi/issues"
|
|
19
|
+
}
|
|
20
|
+
}
|