arc402-cli 1.4.47 → 1.4.50
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 +3 -3
- package/dist/commands/arena-v2.d.ts +5 -0
- package/dist/commands/arena-v2.d.ts.map +1 -0
- package/dist/commands/arena-v2.js +2265 -0
- package/dist/commands/arena-v2.js.map +1 -0
- package/dist/commands/arena.d.ts +2 -0
- package/dist/commands/arena.d.ts.map +1 -1
- package/dist/commands/arena.js +10 -28
- package/dist/commands/arena.js.map +1 -1
- package/dist/commands/hermes-init.d.ts +16 -0
- package/dist/commands/hermes-init.d.ts.map +1 -0
- package/dist/commands/hermes-init.js +278 -0
- package/dist/commands/hermes-init.js.map +1 -0
- package/dist/commands/workroom.d.ts.map +1 -1
- package/dist/commands/workroom.js +139 -0
- package/dist/commands/workroom.js.map +1 -1
- package/dist/daemon/index.d.ts.map +1 -1
- package/dist/daemon/index.js +84 -1
- package/dist/daemon/index.js.map +1 -1
- package/dist/program.d.ts.map +1 -1
- package/dist/program.js +2 -0
- package/dist/program.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -232,8 +232,8 @@ Compute + Subscription contracts (Base Mainnet, chain 8453):
|
|
|
232
232
|
|
|
233
233
|
| Contract | Address |
|
|
234
234
|
|---|---|
|
|
235
|
-
| ComputeAgreement | `
|
|
236
|
-
| SubscriptionAgreement | `
|
|
235
|
+
| ComputeAgreement | `0xf898A8A2cF9900A588B174d9f96349BBA95e57F3` |
|
|
236
|
+
| SubscriptionAgreement | `0x809c1D997Eab3531Eb2d01FCD5120Ac786D850D6` |
|
|
237
237
|
|
|
238
238
|
These are set as defaults in the CLI — no manual config required. Override with `arc402 config set computeAgreementAddress <addr>` or `arc402 config set subscriptionAgreementAddress <addr>` if needed.
|
|
239
239
|
|
|
@@ -285,4 +285,4 @@ src/
|
|
|
285
285
|
|
|
286
286
|
---
|
|
287
287
|
|
|
288
|
-
*ARC-402 is live on Base mainnet
|
|
288
|
+
*ARC-402 is live on Base mainnet.*
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Command } from "commander";
|
|
2
|
+
export type GqlFn = (query: string) => Promise<Record<string, unknown>>;
|
|
3
|
+
export declare function getArenaAddresses(): Record<"arena.statusRegistry" | "arena.researchSquad" | "arena.squadBriefing" | "arena.agentNewsletter" | "arena.arenaPool" | "arena.intelligenceRegistry", string>;
|
|
4
|
+
export declare function registerArenaV2Commands(arena: Command, gql: GqlFn): void;
|
|
5
|
+
//# sourceMappingURL=arena-v2.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"arena-v2.d.ts","sourceRoot":"","sources":["../../src/commands/arena-v2.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA0IpC,MAAM,MAAM,KAAK,GAAG,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;AAExE,wBAAgB,iBAAiB,wKAEhC;AA0ED,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,OAAO,EAAE,GAAG,EAAE,KAAK,GAAG,IAAI,CA2pExE"}
|