@totalreclaw/totalreclaw 3.2.3 → 3.3.0-rc.2
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/CHANGELOG.md +917 -0
- package/README.md +31 -2
- package/config.ts +5 -0
- package/first-run.ts +131 -0
- package/index.ts +256 -9
- package/onboarding-cli.ts +9 -2
- package/package.json +4 -2
- package/pair-cli.ts +351 -0
- package/pair-crypto.ts +474 -0
- package/pair-http.ts +527 -0
- package/pair-page.ts +841 -0
- package/pair-session-store.ts +764 -0
- package/subgraph-store.ts +2 -2
package/subgraph-store.ts
CHANGED
|
@@ -300,7 +300,7 @@ export async function submitFactOnChain(
|
|
|
300
300
|
}
|
|
301
301
|
|
|
302
302
|
if (!config.mnemonic) {
|
|
303
|
-
throw new Error('
|
|
303
|
+
throw new Error('Recovery phrase (TOTALRECLAW_RECOVERY_PHRASE) is required for on-chain submission');
|
|
304
304
|
}
|
|
305
305
|
|
|
306
306
|
const bundlerUrl = `${config.relayUrl}/v1/bundler`;
|
|
@@ -505,7 +505,7 @@ export async function submitFactBatchOnChain(
|
|
|
505
505
|
throw new Error('Relay URL (TOTALRECLAW_SERVER_URL) is required for on-chain submission');
|
|
506
506
|
}
|
|
507
507
|
if (!config.mnemonic) {
|
|
508
|
-
throw new Error('
|
|
508
|
+
throw new Error('Recovery phrase (TOTALRECLAW_RECOVERY_PHRASE) is required for on-chain submission');
|
|
509
509
|
}
|
|
510
510
|
|
|
511
511
|
const bundlerUrl = `${config.relayUrl}/v1/bundler`;
|