fibx 0.1.3 → 0.1.4
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 -2
- package/dist/index.js +1 -1
- package/package.json +9 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# fibx
|
|
2
2
|
|
|
3
|
-
A command-line tool for specialized DeFi operations on **Base, Citrea, HyperEVM, and Monad**, powered by [Fibrous
|
|
3
|
+
A command-line tool for specialized DeFi operations on **Base, Citrea, HyperEVM, and Monad**, powered by [Fibrous](https://fibrous.finance) aggregation and [Privy](https://privy.io) Server Wallets.
|
|
4
4
|
|
|
5
5
|
[](https://badge.fury.io/js/fibx)
|
|
6
6
|
|
|
@@ -161,7 +161,7 @@ npx fibx address
|
|
|
161
161
|
|
|
162
162
|
## Agent Skills
|
|
163
163
|
|
|
164
|
-
Looking to use `fibx` with an AI Agent? Check out the [fibx
|
|
164
|
+
Looking to use `fibx` with an AI Agent? Check out the [fibx Skills](https://github.com/ahmetenesdur/fibx-skills) package.
|
|
165
165
|
|
|
166
166
|
## Development
|
|
167
167
|
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ const program = new Command();
|
|
|
13
13
|
program
|
|
14
14
|
.name("fibx")
|
|
15
15
|
.description("Fibrous DeFi CLI — wallet, transfer, swap")
|
|
16
|
-
.version("0.1.
|
|
16
|
+
.version("0.1.4")
|
|
17
17
|
.option("-c, --chain <chain>", "Chain to use (base, citrea, hyperevm, monad)", "base")
|
|
18
18
|
.option("--json", "Output results as JSON", false);
|
|
19
19
|
const auth = program.command("auth").description("Authentication commands");
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fibx",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "A powerful CLI for DeFi operations on Base, Citrea, HyperEVM, and Monad, powered by Fibrous.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"fibx": "dist/index.js"
|
|
@@ -46,12 +46,17 @@
|
|
|
46
46
|
"keywords": [
|
|
47
47
|
"wallet",
|
|
48
48
|
"fibrous",
|
|
49
|
-
"crypto",
|
|
50
49
|
"defi",
|
|
51
50
|
"base",
|
|
51
|
+
"citrea",
|
|
52
|
+
"hyperevm",
|
|
53
|
+
"monad",
|
|
52
54
|
"cli",
|
|
53
55
|
"swap",
|
|
54
|
-
"
|
|
56
|
+
"agent",
|
|
57
|
+
"ai",
|
|
58
|
+
"mcp",
|
|
59
|
+
"skills"
|
|
55
60
|
],
|
|
56
61
|
"license": "MIT"
|
|
57
62
|
}
|