fibx 0.3.6 → 0.3.7

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 CHANGED
@@ -18,18 +18,18 @@ A command-line tool for DeFi operations on **Base, Citrea, HyperEVM, and Monad**
18
18
  ## Requirements
19
19
 
20
20
  - Node.js >= 18
21
- - A running [fibx-server](https://github.com/ahmetenesdur/fibx-server) instance
21
+ - A running [fibx-server](https://github.com/ahmetenesdur/fibx-server) instance (for Privy wallet operations)
22
22
 
23
23
  ## Usage
24
24
 
25
25
  ### Authentication
26
26
 
27
27
  ```bash
28
- # Email OTP
28
+ # Email OTP (uses Privy server wallet)
29
29
  npx fibx auth login user@example.com
30
30
  npx fibx auth verify user@example.com 123456
31
31
 
32
- # Or import a private key
32
+ # Or import a private key (local signing, no server needed)
33
33
  npx fibx auth import
34
34
 
35
35
  # Logout
package/dist/index.js CHANGED
@@ -14,7 +14,7 @@ import { aaveCommand } from "./commands/defi/aave.js";
14
14
  import { registerConfigCommands } from "./commands/config/index.js";
15
15
  import { logoutCommand } from "./commands/auth/logout.js";
16
16
  const program = new Command();
17
- program.name("fibx").description("Fibrous DeFi CLI — wallet, transfer, swap").version("0.3.6");
17
+ program.name("fibx").description("Fibrous DeFi CLI — wallet, transfer, swap").version("0.3.7");
18
18
  registerConfigCommands(program);
19
19
  program
20
20
  .option("-c, --chain <chain>", "Chain to use (base, citrea, hyperevm, monad)", "base")
package/package.json CHANGED
@@ -1,7 +1,16 @@
1
1
  {
2
2
  "name": "fibx",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "description": "A powerful CLI for DeFi operations on Base, Citrea, HyperEVM, and Monad, powered by Fibrous.",
5
+ "author": "Ahmet Enes Dur",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/ahmetenesdur/fibx.git"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/ahmetenesdur/fibx/issues"
12
+ },
13
+ "homepage": "https://github.com/ahmetenesdur/fibx#readme",
5
14
  "type": "module",
6
15
  "bin": {
7
16
  "fibx": "dist/index.js"