@flarestudio/fcc-workbench 1.0.12 → 1.0.13

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.
@@ -41,7 +41,7 @@ export function runDockerCompose(args) {
41
41
  * Check if the ext-proxy is healthy by polling its /info endpoint.
42
42
  * Returns true when ready, throws after timeout.
43
43
  */
44
- export async function waitForProxy(proxyUrl = 'http://localhost:6676', timeoutMs = 60000) {
44
+ export async function waitForProxy(proxyUrl = 'http://localhost:6675', timeoutMs = 60000) {
45
45
  const deadline = Date.now() + timeoutMs;
46
46
  while (Date.now() < deadline) {
47
47
  try {
@@ -59,7 +59,7 @@ export async function waitForProxy(proxyUrl = 'http://localhost:6676', timeoutMs
59
59
  /**
60
60
  * Fetch the TEE public key and version info from the running ext-proxy.
61
61
  */
62
- export async function fetchProxyInfo(proxyUrl = 'http://localhost:6676') {
62
+ export async function fetchProxyInfo(proxyUrl = 'http://localhost:6675') {
63
63
  const res = await fetch(`${proxyUrl}/info`);
64
64
  if (!res.ok)
65
65
  throw new Error(`Proxy /info returned ${res.status}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flarestudio/fcc-workbench",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "Tactical Workbench for Flare Confidential Compute (FCC). Scaffold, encrypt, and relay sovereign AI agents.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",