@obolos_tech/cli 0.2.2 → 0.3.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/dist/index.d.ts +11 -0
- package/dist/index.js +1836 -1
- package/dist/index.js.map +1 -1
- package/package.json +6 -3
package/dist/index.d.ts
CHANGED
|
@@ -10,5 +10,16 @@
|
|
|
10
10
|
* npx @obolos_tech/cli categories
|
|
11
11
|
* npx @obolos_tech/cli balance
|
|
12
12
|
* npx @obolos_tech/cli setup-mcp
|
|
13
|
+
* npx @obolos_tech/cli job list --status=open
|
|
14
|
+
* npx @obolos_tech/cli job create --title "..." --evaluator 0x...
|
|
15
|
+
* npx @obolos_tech/cli job info <id>
|
|
16
|
+
* npx @obolos_tech/cli listing list --status=open
|
|
17
|
+
* npx @obolos_tech/cli listing create --title "..." --max-budget 10.00
|
|
18
|
+
* npx @obolos_tech/cli listing bid <id> --price 5.00
|
|
19
|
+
* npx @obolos_tech/cli anp list --status=open
|
|
20
|
+
* npx @obolos_tech/cli anp create --title "..." --min-budget 5 --max-budget 50
|
|
21
|
+
* npx @obolos_tech/cli anp bid <cid> --price 25 --delivery 48h
|
|
22
|
+
* npx @obolos_tech/cli anp accept <cid> --bid <bid_cid>
|
|
23
|
+
* npx @obolos_tech/cli anp verify <cid>
|
|
13
24
|
*/
|
|
14
25
|
export {};
|