@fastxyz/cli 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.
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+ import {
3
+ NetworkConfigService
4
+ } from "./chunk-FLS2KI2D.js";
5
+ import "./chunk-MIRQRJSD.js";
6
+ import "./chunk-T7HRTMD7.js";
7
+ import "./chunk-77HVPD4G.js";
8
+ export {
9
+ NetworkConfigService
10
+ };
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env node
2
+ import {
3
+ encodeToCurve,
4
+ hashToCurve,
5
+ schnorr,
6
+ secp256k1,
7
+ secp256k1_hasher
8
+ } from "./chunk-5U55A5N6.js";
9
+ import "./chunk-MWATGKBS.js";
10
+ import "./chunk-77HVPD4G.js";
11
+ export {
12
+ encodeToCurve,
13
+ hashToCurve,
14
+ schnorr,
15
+ secp256k1,
16
+ secp256k1_hasher
17
+ };
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@fastxyz/cli",
3
+ "description": "Fast CLI - Account, network, and transaction management",
4
+ "version": "1.0.0",
5
+ "bin": {
6
+ "fast": "./dist/main.js"
7
+ },
8
+ "type": "module",
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "dependencies": {
14
+ "@clack/core": "^1.2.0",
15
+ "@effect/platform": "^0.96.0",
16
+ "@effect/platform-node": "^0.106.0",
17
+ "@effect/printer": "^0.49.0",
18
+ "@effect/printer-ansi": "^0.49.0",
19
+ "@effect/typeclass": "^0.40.0",
20
+ "@optique/core": "^0.10.7",
21
+ "bech32": "^2.0.0",
22
+ "better-sqlite3": "^12.8.0",
23
+ "cli-table3": "^0.6.5",
24
+ "drizzle-orm": "^0.45.2",
25
+ "effect": "^3.21.0",
26
+ "uuid": "^11.1.0"
27
+ },
28
+ "devDependencies": {
29
+ "@noble/ciphers": "^1.3.0",
30
+ "@noble/curves": "^2.0.1",
31
+ "@noble/hashes": "^2.0.1",
32
+ "@types/better-sqlite3": "^7.6.13",
33
+ "@types/node": "^25.5.0",
34
+ "@types/uuid": "^10.0.0",
35
+ "drizzle-kit": "^0.31.10",
36
+ "@fastxyz/allset-sdk": "1.0.0",
37
+ "@fastxyz/sdk": "1.0.0",
38
+ "@fastxyz/schema": "1.0.0",
39
+ "@fastxyz/x402-client": "1.0.0"
40
+ },
41
+ "scripts": {
42
+ "build": "tsup",
43
+ "dev": "tsup --watch"
44
+ }
45
+ }