@jinn-network/client 0.1.9 → 0.2.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/CONTRIBUTING.md +2 -2
- package/README.md +13 -2
- package/deployments/deployment-phase1b-mech-baseSepolia-fast.json +3 -3
- package/deployments/deployment-stolas-l2-baseSepolia-fast.json +23 -3
- package/deployments/deployment-task-coordinator-router-v3-baseSepolia-fast.json +34 -6
- package/dist/adapters/mech/adapter.d.ts +30 -0
- package/dist/adapters/mech/adapter.js +198 -54
- package/dist/adapters/mech/adapter.js.map +1 -1
- package/dist/adapters/mech/contracts.d.ts +174 -13
- package/dist/adapters/mech/contracts.js +37 -21
- package/dist/adapters/mech/contracts.js.map +1 -1
- package/dist/adapters/mech/ipfs.d.ts +15 -27
- package/dist/adapters/mech/ipfs.js +39 -102
- package/dist/adapters/mech/ipfs.js.map +1 -1
- package/dist/adapters/mech/safe.js +74 -2
- package/dist/adapters/mech/safe.js.map +1 -1
- package/dist/adapters/mech/types.d.ts +15 -130
- package/dist/adapters/mech/types.js +9 -65
- package/dist/adapters/mech/types.js.map +1 -1
- package/dist/api/bootstrap-endpoint.d.ts +19 -3
- package/dist/api/bootstrap-endpoint.js +4 -0
- package/dist/api/bootstrap-endpoint.js.map +1 -1
- package/dist/api/gather-status.d.ts +49 -15
- package/dist/api/gather-status.js +115 -417
- package/dist/api/gather-status.js.map +1 -1
- package/dist/api/harness-auth-status-endpoint.d.ts +21 -0
- package/dist/api/harness-auth-status-endpoint.js +17 -0
- package/dist/api/harness-auth-status-endpoint.js.map +1 -0
- package/dist/api/launcher-endpoints.js +6 -1
- package/dist/api/launcher-endpoints.js.map +1 -1
- package/dist/api/launcher-status.d.ts +2 -0
- package/dist/api/launcher-status.js.map +1 -1
- package/dist/api/launcher-tasks.d.ts +47 -0
- package/dist/api/launcher-tasks.js +88 -3
- package/dist/api/launcher-tasks.js.map +1 -1
- package/dist/api/loop-completion-build.d.ts +2 -2
- package/dist/api/loop-completion-build.js +2 -3
- package/dist/api/loop-completion-build.js.map +1 -1
- package/dist/api/operator-artifacts-endpoint.js +1 -1
- package/dist/api/operator-artifacts-endpoint.js.map +1 -1
- package/dist/api/portfolio-v0-build.d.ts +2 -1
- package/dist/api/portfolio-v0-build.js +5 -7
- package/dist/api/portfolio-v0-build.js.map +1 -1
- package/dist/api/prediction-v1-build.d.ts +2 -2
- package/dist/api/prediction-v1-build.js +5 -7
- package/dist/api/prediction-v1-build.js.map +1 -1
- package/dist/api/rewards-build.d.ts +8 -1
- package/dist/api/rewards-build.js +32 -4
- package/dist/api/rewards-build.js.map +1 -1
- package/dist/api/rewards-endpoint.d.ts +12 -0
- package/dist/api/rewards-endpoint.js +46 -0
- package/dist/api/rewards-endpoint.js.map +1 -0
- package/dist/api/run-outcome.d.ts +49 -0
- package/dist/api/run-outcome.js +65 -0
- package/dist/api/run-outcome.js.map +1 -0
- package/dist/api/server.d.ts +6 -16
- package/dist/api/server.js +36 -26
- package/dist/api/server.js.map +1 -1
- package/dist/api/setup-endpoints.d.ts +32 -0
- package/dist/api/setup-endpoints.js +232 -32
- package/dist/api/setup-endpoints.js.map +1 -1
- package/dist/api/solvernets-endpoints.js +1 -1
- package/dist/api/solvernets-endpoints.js.map +1 -1
- package/dist/api/status-build.d.ts +74 -64
- package/dist/api/status-build.js +31 -55
- package/dist/api/status-build.js.map +1 -1
- package/dist/api/stop-hook.d.ts +1 -1
- package/dist/api/stop-hook.js +1 -1
- package/dist/api/stop-hook.js.map +1 -1
- package/dist/api/task-run-routing.d.ts +1 -1
- package/dist/api/task-runs-build.d.ts +21 -2
- package/dist/api/task-runs-build.js +27 -7
- package/dist/api/task-runs-build.js.map +1 -1
- package/dist/build-info.json +4 -4
- package/dist/build-meta.json +1 -1
- package/dist/captures/ingest.d.ts +21 -0
- package/dist/captures/ingest.js +133 -0
- package/dist/captures/ingest.js.map +1 -0
- package/dist/captures/live-publisher.d.ts +9 -0
- package/dist/captures/live-publisher.js +5 -3
- package/dist/captures/live-publisher.js.map +1 -1
- package/dist/captures/publish.d.ts +25 -0
- package/dist/captures/publish.js +17 -7
- package/dist/captures/publish.js.map +1 -1
- package/dist/cli/commands/backfill-failed-deliveries.d.ts +40 -0
- package/dist/cli/commands/backfill-failed-deliveries.js +172 -0
- package/dist/cli/commands/backfill-failed-deliveries.js.map +1 -0
- package/dist/cli/commands/doctor.js +4 -7
- package/dist/cli/commands/doctor.js.map +1 -1
- package/dist/cli/commands/eval.d.ts +11 -0
- package/dist/cli/commands/eval.js +103 -23
- package/dist/cli/commands/eval.js.map +1 -1
- package/dist/cli/commands/kill.d.ts +14 -0
- package/dist/cli/commands/kill.js +141 -0
- package/dist/cli/commands/kill.js.map +1 -0
- package/dist/cli/commands/rewards.js +17 -15
- package/dist/cli/commands/rewards.js.map +1 -1
- package/dist/cli/commands/run.js +18 -4
- package/dist/cli/commands/run.js.map +1 -1
- package/dist/cli/commands/solver-nets.d.ts +6 -0
- package/dist/cli/commands/solver-nets.js +145 -2
- package/dist/cli/commands/solver-nets.js.map +1 -1
- package/dist/cli/commands/solver-plugins.js +2 -2
- package/dist/cli/commands/solver-plugins.js.map +1 -1
- package/dist/cli/commands/stop.js +97 -21
- package/dist/cli/commands/stop.js.map +1 -1
- package/dist/cli/commands/update.js +8 -0
- package/dist/cli/commands/update.js.map +1 -1
- package/dist/cli/commands/version.js +4 -0
- package/dist/cli/commands/version.js.map +1 -1
- package/dist/cli/execution-context.js +2 -1
- package/dist/cli/execution-context.js.map +1 -1
- package/dist/cli/index.js +4 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/introspection-context.js +0 -3
- package/dist/cli/introspection-context.js.map +1 -1
- package/dist/cli/ui-auto-open-gate.d.ts +22 -0
- package/dist/cli/ui-auto-open-gate.js +24 -0
- package/dist/cli/ui-auto-open-gate.js.map +1 -0
- package/dist/config.d.ts +258 -540
- package/dist/config.js +280 -193
- package/dist/config.js.map +1 -1
- package/dist/conformance/execution-envelope-authenticator.d.ts +2 -0
- package/dist/conformance/execution-envelope-authenticator.js +38 -0
- package/dist/conformance/execution-envelope-authenticator.js.map +1 -0
- package/dist/contracts/abis.d.ts +100 -0
- package/dist/contracts/abis.js +58 -0
- package/dist/contracts/abis.js.map +1 -0
- package/dist/contracts/addresses.d.ts +36 -0
- package/dist/contracts/addresses.js +60 -0
- package/dist/contracts/addresses.js.map +1 -0
- package/dist/corpus/acquire.d.ts +1 -40
- package/dist/corpus/acquire.js +1 -212
- package/dist/corpus/acquire.js.map +1 -1
- package/dist/corpus/cache.d.ts +1 -14
- package/dist/corpus/cache.js +1 -17
- package/dist/corpus/cache.js.map +1 -1
- package/dist/corpus/fetch-artifact.d.ts +1 -0
- package/dist/corpus/fetch-artifact.js +2 -0
- package/dist/corpus/fetch-artifact.js.map +1 -0
- package/dist/corpus/fetch.d.ts +3 -7
- package/dist/corpus/fetch.js +9 -22
- package/dist/corpus/fetch.js.map +1 -1
- package/dist/corpus/index.d.ts +2 -3
- package/dist/corpus/index.js +19 -110
- package/dist/corpus/index.js.map +1 -1
- package/dist/corpus/onchain-query.d.ts +0 -1
- package/dist/corpus/onchain-query.js +2 -5
- package/dist/corpus/onchain-query.js.map +1 -1
- package/dist/corpus/route-resolver.d.ts +1 -16
- package/dist/corpus/route-resolver.js +1 -19
- package/dist/corpus/route-resolver.js.map +1 -1
- package/dist/corpus/types.d.ts +1 -17
- package/dist/corpus/types.js +1 -34
- package/dist/corpus/types.js.map +1 -1
- package/dist/daemon/balance-topup-loop.js +27 -9
- package/dist/daemon/balance-topup-loop.js.map +1 -1
- package/dist/daemon/checkpoint-loop.js +2 -2
- package/dist/daemon/creator.d.ts +1 -0
- package/dist/daemon/creator.js +39 -25
- package/dist/daemon/creator.js.map +1 -1
- package/dist/daemon/daemon.d.ts +31 -12
- package/dist/daemon/daemon.js +138 -32
- package/dist/daemon/daemon.js.map +1 -1
- package/dist/daemon/delivery-watcher.d.ts +9 -0
- package/dist/daemon/delivery-watcher.js +24 -1
- package/dist/daemon/delivery-watcher.js.map +1 -1
- package/dist/daemon/eviction-loop.d.ts +3 -0
- package/dist/daemon/eviction-loop.js +7 -4
- package/dist/daemon/eviction-loop.js.map +1 -1
- package/dist/daemon/harvest-loop.d.ts +72 -0
- package/dist/daemon/harvest-loop.js +474 -0
- package/dist/daemon/harvest-loop.js.map +1 -0
- package/dist/daemon/join-applier.d.ts +40 -0
- package/dist/daemon/join-applier.js +52 -0
- package/dist/daemon/join-applier.js.map +1 -0
- package/dist/daemon/loop-heartbeat.d.ts +95 -0
- package/dist/daemon/loop-heartbeat.js +80 -0
- package/dist/daemon/loop-heartbeat.js.map +1 -0
- package/dist/{api/peers.js → daemon/peer-sync.js} +3 -1
- package/dist/daemon/peer-sync.js.map +1 -0
- package/dist/daemon/reward-claim-loop.js +28 -10
- package/dist/daemon/reward-claim-loop.js.map +1 -1
- package/dist/daemon/skip-log-dedup.d.ts +1 -1
- package/dist/daemon/skip-log-dedup.js +3 -0
- package/dist/daemon/skip-log-dedup.js.map +1 -1
- package/dist/daemon/spend-cap-gate.d.ts +0 -6
- package/dist/daemon/spend-cap-gate.js +1 -8
- package/dist/daemon/spend-cap-gate.js.map +1 -1
- package/dist/daemon/watchdog-loop.d.ts +84 -0
- package/dist/daemon/watchdog-loop.js +91 -0
- package/dist/daemon/watchdog-loop.js.map +1 -0
- package/dist/dashboard/assets/index-C988eu68.js +95 -0
- package/dist/dashboard/assets/index-CawZUjVI.css +1 -0
- package/dist/dashboard/index.html +2 -2
- package/dist/discovery/http.d.ts +10 -0
- package/dist/discovery/http.js +178 -335
- package/dist/discovery/http.js.map +1 -1
- package/dist/discovery/onchain.js +30 -9
- package/dist/discovery/onchain.js.map +1 -1
- package/dist/discovery/types.d.ts +98 -52
- package/dist/discovery/types.js.map +1 -1
- package/dist/discovery/with-fallback.js +19 -0
- package/dist/discovery/with-fallback.js.map +1 -1
- package/dist/earning/bootstrap-run.d.ts +25 -0
- package/dist/earning/bootstrap-run.js +315 -0
- package/dist/earning/bootstrap-run.js.map +1 -0
- package/dist/earning/bootstrap.d.ts +11 -14
- package/dist/earning/bootstrap.js +56 -204
- package/dist/earning/bootstrap.js.map +1 -1
- package/dist/earning/contracts.d.ts +2 -232
- package/dist/earning/contracts.js +16 -205
- package/dist/earning/contracts.js.map +1 -1
- package/dist/earning/faucet-topup-store.d.ts +41 -0
- package/dist/earning/faucet-topup-store.js +89 -0
- package/dist/earning/faucet-topup-store.js.map +1 -0
- package/dist/earning/master-gas.d.ts +10 -0
- package/dist/earning/master-gas.js +11 -0
- package/dist/earning/master-gas.js.map +1 -0
- package/dist/earning/safe-adapter.js +1 -45
- package/dist/earning/safe-adapter.js.map +1 -1
- package/dist/earning/steps/context.d.ts +42 -0
- package/dist/earning/steps/context.js +4 -0
- package/dist/earning/steps/context.js.map +1 -0
- package/dist/earning/steps/fleet-identity-register.d.ts +4 -0
- package/dist/earning/steps/fleet-identity-register.js +65 -0
- package/dist/earning/steps/fleet-identity-register.js.map +1 -0
- package/dist/earning/steps/fleet-safe-deploy.d.ts +4 -0
- package/dist/earning/steps/fleet-safe-deploy.js +62 -0
- package/dist/earning/steps/fleet-safe-deploy.js.map +1 -0
- package/dist/earning/steps/fleet-safe-predict.d.ts +4 -0
- package/dist/earning/steps/fleet-safe-predict.js +18 -0
- package/dist/earning/steps/fleet-safe-predict.js.map +1 -0
- package/dist/earning/steps/receipt-parsing.d.ts +12 -0
- package/dist/earning/steps/receipt-parsing.js +71 -0
- package/dist/earning/steps/receipt-parsing.js.map +1 -0
- package/dist/earning/stolas-claim.js +8 -8
- package/dist/earning/stolas-claim.js.map +1 -1
- package/dist/earning/{jinn-rewards.d.ts → stolas-staking.d.ts} +4 -8
- package/dist/earning/{jinn-rewards.js → stolas-staking.js} +25 -23
- package/dist/earning/stolas-staking.js.map +1 -0
- package/dist/earning/testnet-setup-migration.d.ts +1 -0
- package/dist/earning/testnet-setup-migration.js +7 -2
- package/dist/earning/testnet-setup-migration.js.map +1 -1
- package/dist/earning/types.d.ts +9 -9
- package/dist/earning/types.js +1 -1
- package/dist/earning/types.js.map +1 -1
- package/dist/earning/viem-clients.d.ts +3 -19
- package/dist/earning/viem-clients.js +4 -31
- package/dist/earning/viem-clients.js.map +1 -1
- package/dist/erc8004/abis.d.ts +16 -0
- package/dist/erc8004/abis.js +12 -0
- package/dist/erc8004/abis.js.map +1 -1
- package/dist/erc8004/addresses.d.ts +6 -5
- package/dist/erc8004/addresses.js +7 -5
- package/dist/erc8004/addresses.js.map +1 -1
- package/dist/erc8004/identity.d.ts +54 -1
- package/dist/erc8004/identity.js +114 -5
- package/dist/erc8004/identity.js.map +1 -1
- package/dist/erc8004/index.d.ts +5 -2
- package/dist/erc8004/index.js +6 -2
- package/dist/erc8004/index.js.map +1 -1
- package/dist/erc8004/manifest-consumer.d.ts +32 -0
- package/dist/erc8004/manifest-consumer.js +95 -0
- package/dist/erc8004/manifest-consumer.js.map +1 -0
- package/dist/erc8004/manifest-registry.d.ts +1 -0
- package/dist/erc8004/manifest-registry.js +2 -0
- package/dist/erc8004/manifest-registry.js.map +1 -0
- package/dist/erc8004/merkle.d.ts +1 -0
- package/dist/erc8004/merkle.js +2 -0
- package/dist/erc8004/merkle.js.map +1 -0
- package/dist/erc8004/publisher-safe-resolver.d.ts +32 -0
- package/dist/erc8004/publisher-safe-resolver.js +102 -0
- package/dist/erc8004/publisher-safe-resolver.js.map +1 -0
- package/dist/erc8004/reputation.js +16 -12
- package/dist/erc8004/reputation.js.map +1 -1
- package/dist/erc8004/validation.js +5 -4
- package/dist/erc8004/validation.js.map +1 -1
- package/dist/eval/attribution-instrument.d.ts +190 -0
- package/dist/eval/attribution-instrument.js +719 -0
- package/dist/eval/attribution-instrument.js.map +1 -0
- package/dist/eval/attribution-verdict-evidence.d.ts +41 -0
- package/dist/eval/attribution-verdict-evidence.js +124 -0
- package/dist/eval/attribution-verdict-evidence.js.map +1 -0
- package/dist/eval/capability-slate.d.ts +64 -0
- package/dist/eval/capability-slate.js +136 -0
- package/dist/eval/capability-slate.js.map +1 -0
- package/dist/eval/capability-stats.d.ts +39 -0
- package/dist/eval/capability-stats.js +123 -0
- package/dist/eval/capability-stats.js.map +1 -0
- package/dist/eval/contested-band.d.ts +18 -0
- package/dist/eval/contested-band.js +19 -0
- package/dist/eval/contested-band.js.map +1 -0
- package/dist/eval/corpus-index.d.ts +21 -0
- package/dist/eval/corpus-index.js +55 -0
- package/dist/eval/corpus-index.js.map +1 -0
- package/dist/eval/disjointness.d.ts +26 -0
- package/dist/eval/disjointness.js +67 -0
- package/dist/eval/disjointness.js.map +1 -0
- package/dist/eval/mcnemar-power.d.ts +14 -0
- package/dist/eval/mcnemar-power.js +40 -0
- package/dist/eval/mcnemar-power.js.map +1 -0
- package/dist/eval/orchestrator.d.ts +64 -3
- package/dist/eval/orchestrator.js +37 -19
- package/dist/eval/orchestrator.js.map +1 -1
- package/dist/eval/paired.d.ts +2 -68
- package/dist/eval/paired.js +2 -92
- package/dist/eval/paired.js.map +1 -1
- package/dist/eval/resolve-slate-tasks.js +2 -2
- package/dist/eval/resolve-slate-tasks.js.map +1 -1
- package/dist/eval/screen-discovery.d.ts +5 -8
- package/dist/eval/screen-discovery.js +13 -55
- package/dist/eval/screen-discovery.js.map +1 -1
- package/dist/events/types.d.ts +1 -1
- package/dist/events/types.js +1 -1
- package/dist/events/types.js.map +1 -1
- package/dist/harnesses/auth-source.d.ts +51 -0
- package/dist/harnesses/auth-source.js +155 -0
- package/dist/harnesses/auth-source.js.map +1 -0
- package/dist/harnesses/engine/backfill-failed-deliveries.d.ts +59 -0
- package/dist/harnesses/engine/backfill-failed-deliveries.js +94 -0
- package/dist/harnesses/engine/backfill-failed-deliveries.js.map +1 -0
- package/dist/harnesses/engine/canonical-json.d.ts +2 -1
- package/dist/harnesses/engine/canonical-json.js +2 -67
- package/dist/harnesses/engine/canonical-json.js.map +1 -1
- package/dist/harnesses/engine/corpus-knowledge.d.ts +67 -0
- package/dist/harnesses/engine/corpus-knowledge.js +194 -0
- package/dist/harnesses/engine/corpus-knowledge.js.map +1 -0
- package/dist/harnesses/engine/engine.d.ts +85 -1
- package/dist/harnesses/engine/engine.js +313 -6
- package/dist/harnesses/engine/engine.js.map +1 -1
- package/dist/harnesses/engine/envelope-assembly.d.ts +9 -1
- package/dist/harnesses/engine/envelope-assembly.js +6 -0
- package/dist/harnesses/engine/envelope-assembly.js.map +1 -1
- package/dist/harnesses/engine/generator-model.d.ts +36 -0
- package/dist/harnesses/engine/generator-model.js +118 -0
- package/dist/harnesses/engine/generator-model.js.map +1 -0
- package/dist/harnesses/engine/packaging.js +5 -5
- package/dist/harnesses/engine/packaging.js.map +1 -1
- package/dist/harnesses/engine/persistence.d.ts +37 -62
- package/dist/harnesses/engine/persistence.js +66 -0
- package/dist/harnesses/engine/persistence.js.map +1 -1
- package/dist/harnesses/impls/_evaluator-base.d.ts +48 -0
- package/dist/harnesses/impls/_evaluator-base.js +35 -0
- package/dist/harnesses/impls/_evaluator-base.js.map +1 -0
- package/dist/harnesses/impls/claude-mcp-hyperliquid/mcp-tools.d.ts +1 -1
- package/dist/harnesses/impls/claude-mcp-hyperliquid/mcp-tools.js +1 -1
- package/dist/harnesses/impls/claude-mcp-hyperliquid/mcp-tools.js.map +1 -1
- package/dist/harnesses/impls/claude-mcp-prediction/index.d.ts +2 -3
- package/dist/harnesses/impls/claude-mcp-prediction/index.js +29 -99
- package/dist/harnesses/impls/claude-mcp-prediction/index.js.map +1 -1
- package/dist/harnesses/impls/claude-mcp-prediction/mcp-tools.js +4 -21
- package/dist/harnesses/impls/claude-mcp-prediction/mcp-tools.js.map +1 -1
- package/dist/harnesses/impls/claude-mcp-prediction/session-orchestrator.d.ts +2 -0
- package/dist/harnesses/impls/claude-mcp-prediction/session-orchestrator.js +1 -1
- package/dist/harnesses/impls/claude-mcp-prediction/session-orchestrator.js.map +1 -1
- package/dist/harnesses/impls/claude-mcp-prediction-apy/index.js +30 -79
- package/dist/harnesses/impls/claude-mcp-prediction-apy/index.js.map +1 -1
- package/dist/harnesses/impls/claude-mcp-prediction-apy/mcp-tools.js +4 -19
- package/dist/harnesses/impls/claude-mcp-prediction-apy/mcp-tools.js.map +1 -1
- package/dist/harnesses/impls/claude-mcp-prediction-apy/session-orchestrator.d.ts +2 -0
- package/dist/harnesses/impls/claude-mcp-prediction-apy/session-orchestrator.js +1 -1
- package/dist/harnesses/impls/claude-mcp-prediction-apy/session-orchestrator.js.map +1 -1
- package/dist/harnesses/impls/claude-mcp-shared/mcp-server-script.d.ts +39 -0
- package/dist/harnesses/impls/claude-mcp-shared/mcp-server-script.js +62 -0
- package/dist/harnesses/impls/claude-mcp-shared/mcp-server-script.js.map +1 -0
- package/dist/harnesses/impls/claude-mcp-shared/mcp-server.d.ts +40 -0
- package/dist/harnesses/impls/claude-mcp-shared/mcp-server.js +44 -0
- package/dist/harnesses/impls/claude-mcp-shared/mcp-server.js.map +1 -0
- package/dist/harnesses/impls/claude-mcp-shared/single-session-harness.d.ts +56 -0
- package/dist/harnesses/impls/claude-mcp-shared/single-session-harness.js +79 -0
- package/dist/harnesses/impls/claude-mcp-shared/single-session-harness.js.map +1 -0
- package/dist/harnesses/impls/hermes-agent/adapter.js +56 -2
- package/dist/harnesses/impls/hermes-agent/adapter.js.map +1 -1
- package/dist/harnesses/impls/hermes-agent/bootstrap.d.ts +6 -0
- package/dist/harnesses/impls/hermes-agent/bootstrap.js +7 -2
- package/dist/harnesses/impls/hermes-agent/bootstrap.js.map +1 -1
- package/dist/harnesses/impls/hermes-agent/harness.d.ts +8 -0
- package/dist/harnesses/impls/hermes-agent/harness.js +21 -0
- package/dist/harnesses/impls/hermes-agent/harness.js.map +1 -1
- package/dist/harnesses/impls/index.js +8 -1
- package/dist/harnesses/impls/index.js.map +1 -1
- package/dist/harnesses/impls/jinn-repo-evaluator/eval-runner.d.ts +34 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/eval-runner.js +111 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/eval-runner.js.map +1 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/evaluator.d.ts +24 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/evaluator.js +19 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/evaluator.js.map +1 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/harness.d.ts +97 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/harness.js +265 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/harness.js.map +1 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/live-eval-runner.d.ts +68 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/live-eval-runner.js +223 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/live-eval-runner.js.map +1 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/repro.d.ts +32 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/repro.js +73 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/repro.js.map +1 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/scope-tests.d.ts +62 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/scope-tests.js +91 -0
- package/dist/harnesses/impls/jinn-repo-evaluator/scope-tests.js.map +1 -0
- package/dist/harnesses/impls/learner/adapters/claude-code.js +9 -2
- package/dist/harnesses/impls/learner/adapters/claude-code.js.map +1 -1
- package/dist/harnesses/impls/learner/adapters/codex-code.d.ts +11 -1
- package/dist/harnesses/impls/learner/adapters/codex-code.js +130 -15
- package/dist/harnesses/impls/learner/adapters/codex-code.js.map +1 -1
- package/dist/harnesses/impls/learner/harness.d.ts +12 -0
- package/dist/harnesses/impls/learner/harness.js +42 -0
- package/dist/harnesses/impls/learner/harness.js.map +1 -1
- package/dist/harnesses/impls/learner/harvest.js +51 -1
- package/dist/harnesses/impls/learner/harvest.js.map +1 -1
- package/dist/harnesses/impls/portfolio-v0-evaluator/index.d.ts +5 -15
- package/dist/harnesses/impls/portfolio-v0-evaluator/index.js +10 -29
- package/dist/harnesses/impls/portfolio-v0-evaluator/index.js.map +1 -1
- package/dist/harnesses/impls/prediction-apy-v0-evaluator/index.d.ts +5 -15
- package/dist/harnesses/impls/prediction-apy-v0-evaluator/index.js +10 -23
- package/dist/harnesses/impls/prediction-apy-v0-evaluator/index.js.map +1 -1
- package/dist/harnesses/impls/prediction-v0-evaluator/index.d.ts +5 -15
- package/dist/harnesses/impls/prediction-v0-evaluator/index.js +10 -25
- package/dist/harnesses/impls/prediction-v0-evaluator/index.js.map +1 -1
- package/dist/harnesses/impls/stub.d.ts +2 -2
- package/dist/harnesses/impls/stub.js +2 -2
- package/dist/harnesses/impls/swe-rebench-v2-evaluator/eval-runner.js +16 -2
- package/dist/harnesses/impls/swe-rebench-v2-evaluator/eval-runner.js.map +1 -1
- package/dist/harnesses/impls/swe-rebench-v2-evaluator/harness.d.ts +65 -6
- package/dist/harnesses/impls/swe-rebench-v2-evaluator/harness.js +590 -35
- package/dist/harnesses/impls/swe-rebench-v2-evaluator/harness.js.map +1 -1
- package/dist/harnesses/impls/swe-rebench-v2-evaluator/hf-fetcher.js +4 -1
- package/dist/harnesses/impls/swe-rebench-v2-evaluator/hf-fetcher.js.map +1 -1
- package/dist/harnesses/impls/swe-rebench-v2-evaluator/routing-task-row-fetcher.d.ts +37 -0
- package/dist/harnesses/impls/swe-rebench-v2-evaluator/routing-task-row-fetcher.js +59 -0
- package/dist/harnesses/impls/swe-rebench-v2-evaluator/routing-task-row-fetcher.js.map +1 -0
- package/dist/harnesses/impls/swe-rebench-v2-evaluator/upstream-patches/passed-actual.patch +21 -0
- package/dist/harnesses/readiness-registry.d.ts +16 -0
- package/dist/harnesses/readiness-registry.js +28 -6
- package/dist/harnesses/readiness-registry.js.map +1 -1
- package/dist/harnesses/types.d.ts +12 -0
- package/dist/learner/verification-gate.d.ts +53 -0
- package/dist/learner/verification-gate.js +80 -0
- package/dist/learner/verification-gate.js.map +1 -0
- package/dist/lifecycle/process-discovery.d.ts +41 -0
- package/dist/lifecycle/process-discovery.js +109 -0
- package/dist/lifecycle/process-discovery.js.map +1 -0
- package/dist/main.js +358 -581
- package/dist/main.js.map +1 -1
- package/dist/mcp/acquire-artifact.d.ts +3 -3
- package/dist/mcp/acquire-artifact.js +3 -3
- package/dist/mcp/operator-server.js +1 -1
- package/dist/mcp/operator-server.js.map +1 -1
- package/dist/mcp/server.js +5 -6
- package/dist/mcp/server.js.map +1 -1
- package/dist/monitoring/net-liveness.d.ts +143 -0
- package/dist/monitoring/net-liveness.js +301 -0
- package/dist/monitoring/net-liveness.js.map +1 -0
- package/dist/observability/emit-event.d.ts +1 -1
- package/dist/observability/emit-event.js +2 -4
- package/dist/observability/emit-event.js.map +1 -1
- package/dist/observability/progress.d.ts +11 -0
- package/dist/observability/progress.js +16 -0
- package/dist/observability/progress.js.map +1 -0
- package/dist/pilot/arm-homes.d.ts +39 -0
- package/dist/pilot/arm-homes.js +104 -0
- package/dist/pilot/arm-homes.js.map +1 -0
- package/dist/pilot/cost.d.ts +19 -0
- package/dist/pilot/cost.js +31 -0
- package/dist/pilot/cost.js.map +1 -0
- package/dist/pilot/instance.d.ts +26 -0
- package/dist/pilot/instance.js +53 -0
- package/dist/pilot/instance.js.map +1 -0
- package/dist/pilot/pipeline.d.ts +17 -0
- package/dist/pilot/pipeline.js +35 -0
- package/dist/pilot/pipeline.js.map +1 -0
- package/dist/pilot/repo.d.ts +37 -0
- package/dist/pilot/repo.js +65 -0
- package/dist/pilot/repo.js.map +1 -0
- package/dist/pilot/resume.d.ts +101 -0
- package/dist/pilot/resume.js +204 -0
- package/dist/pilot/resume.js.map +1 -0
- package/dist/pilot/solve.d.ts +23 -0
- package/dist/pilot/solve.js +37 -0
- package/dist/pilot/solve.js.map +1 -0
- package/dist/pilot/tally.d.ts +42 -0
- package/dist/pilot/tally.js +100 -0
- package/dist/pilot/tally.js.map +1 -0
- package/dist/pilot/task-selection.d.ts +27 -0
- package/dist/pilot/task-selection.js +112 -0
- package/dist/pilot/task-selection.js.map +1 -0
- package/dist/plugins/resolvers.js +7 -4
- package/dist/plugins/resolvers.js.map +1 -1
- package/dist/plugins/types.d.ts +8 -0
- package/dist/preflight/deployment-readiness.d.ts +2 -22
- package/dist/preflight/deployment-readiness.js +1 -59
- package/dist/preflight/deployment-readiness.js.map +1 -1
- package/dist/preflight/pidfile-liveness.d.ts +3 -2
- package/dist/preflight/pidfile-liveness.js +18 -2
- package/dist/preflight/pidfile-liveness.js.map +1 -1
- package/dist/preflight/rpc-network.d.ts +10 -3
- package/dist/preflight/rpc-network.js +46 -13
- package/dist/preflight/rpc-network.js.map +1 -1
- package/dist/preflight/stable-cwd.d.ts +29 -0
- package/dist/preflight/stable-cwd.js +98 -0
- package/dist/preflight/stable-cwd.js.map +1 -0
- package/dist/preflight/version-check.d.ts +41 -0
- package/dist/preflight/version-check.js +80 -0
- package/dist/preflight/version-check.js.map +1 -0
- package/dist/rpc/transport.d.ts +7 -5
- package/dist/rpc/transport.js +8 -6
- package/dist/rpc/transport.js.map +1 -1
- package/dist/scripts/swe-rebench-v2-evaluator.bundle.v1.patch +79 -0
- package/dist/solver-nets/registry.d.ts +19 -0
- package/dist/solver-nets/registry.js +99 -66
- package/dist/solver-nets/registry.js.map +1 -1
- package/dist/solver-types/_jinn-repo-pool.d.ts +61 -0
- package/dist/solver-types/_jinn-repo-pool.js +34 -0
- package/dist/solver-types/_jinn-repo-pool.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-commit-echo-git.d.ts +46 -0
- package/dist/solver-types/_swe-rebench-v2-commit-echo-git.js +192 -0
- package/dist/solver-types/_swe-rebench-v2-commit-echo-git.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-commit-echo.d.ts +57 -0
- package/dist/solver-types/_swe-rebench-v2-commit-echo.js +57 -0
- package/dist/solver-types/_swe-rebench-v2-commit-echo.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-differential-admission.d.ts +395 -0
- package/dist/solver-types/_swe-rebench-v2-differential-admission.js +231 -0
- package/dist/solver-types/_swe-rebench-v2-differential-admission.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-empirical-tests.d.ts +47 -0
- package/dist/solver-types/_swe-rebench-v2-empirical-tests.js +67 -0
- package/dist/solver-types/_swe-rebench-v2-empirical-tests.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-escrow.d.ts +2 -0
- package/dist/solver-types/_swe-rebench-v2-escrow.js +13 -0
- package/dist/solver-types/_swe-rebench-v2-escrow.js.map +1 -1
- package/dist/solver-types/_swe-rebench-v2-guards.d.ts +44 -0
- package/dist/solver-types/_swe-rebench-v2-guards.js +111 -0
- package/dist/solver-types/_swe-rebench-v2-guards.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-harvest-state.d.ts +191 -0
- package/dist/solver-types/_swe-rebench-v2-harvest-state.js +349 -0
- package/dist/solver-types/_swe-rebench-v2-harvest-state.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-harvest.d.ts +123 -0
- package/dist/solver-types/_swe-rebench-v2-harvest.js +539 -0
- package/dist/solver-types/_swe-rebench-v2-harvest.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-held-out-slate.d.ts +1 -1
- package/dist/solver-types/_swe-rebench-v2-held-out-slate.js +1 -1
- package/dist/solver-types/_swe-rebench-v2-held-out-slate.js.map +1 -1
- package/dist/solver-types/_swe-rebench-v2-hunk-echo.d.ts +28 -0
- package/dist/solver-types/_swe-rebench-v2-hunk-echo.js +32 -0
- package/dist/solver-types/_swe-rebench-v2-hunk-echo.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-lookup-tripwire.d.ts +16 -0
- package/dist/solver-types/_swe-rebench-v2-lookup-tripwire.js +18 -0
- package/dist/solver-types/_swe-rebench-v2-lookup-tripwire.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-mineable-store-port.d.ts +74 -0
- package/dist/solver-types/_swe-rebench-v2-mineable-store-port.js +9 -0
- package/dist/solver-types/_swe-rebench-v2-mineable-store-port.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-mineable-store.d.ts +51 -0
- package/dist/solver-types/_swe-rebench-v2-mineable-store.js +171 -0
- package/dist/solver-types/_swe-rebench-v2-mineable-store.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-mint-cli.d.ts +82 -0
- package/dist/solver-types/_swe-rebench-v2-mint-cli.js +434 -0
- package/dist/solver-types/_swe-rebench-v2-mint-cli.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-minted-environment-verifier.d.ts +25 -0
- package/dist/solver-types/_swe-rebench-v2-minted-environment-verifier.js +101 -0
- package/dist/solver-types/_swe-rebench-v2-minted-environment-verifier.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-minted-pool.d.ts +179 -0
- package/dist/solver-types/_swe-rebench-v2-minted-pool.js +408 -0
- package/dist/solver-types/_swe-rebench-v2-minted-pool.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-session-echo.d.ts +36 -0
- package/dist/solver-types/_swe-rebench-v2-session-echo.js +193 -0
- package/dist/solver-types/_swe-rebench-v2-session-echo.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-substrate.d.ts +11 -0
- package/dist/solver-types/_swe-rebench-v2-substrate.js +24 -0
- package/dist/solver-types/_swe-rebench-v2-substrate.js.map +1 -1
- package/dist/solver-types/_swe-rebench-v2-synthetic-claim.d.ts +9 -0
- package/dist/solver-types/_swe-rebench-v2-synthetic-claim.js +16 -0
- package/dist/solver-types/_swe-rebench-v2-synthetic-claim.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-validated-pool.d.ts +144 -1
- package/dist/solver-types/_swe-rebench-v2-validated-pool.js +292 -14
- package/dist/solver-types/_swe-rebench-v2-validated-pool.js.map +1 -1
- package/dist/solver-types/_swe-rebench-v2-verifier-facts.d.ts +93 -0
- package/dist/solver-types/_swe-rebench-v2-verifier-facts.js +583 -0
- package/dist/solver-types/_swe-rebench-v2-verifier-facts.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-yield-report-data.d.ts +5 -0
- package/dist/solver-types/_swe-rebench-v2-yield-report-data.js +16 -0
- package/dist/solver-types/_swe-rebench-v2-yield-report-data.js.map +1 -0
- package/dist/solver-types/_swe-rebench-v2-yield.d.ts +51 -0
- package/dist/solver-types/_swe-rebench-v2-yield.js +53 -0
- package/dist/solver-types/_swe-rebench-v2-yield.js.map +1 -0
- package/dist/solver-types/index.js +2 -0
- package/dist/solver-types/index.js.map +1 -1
- package/dist/solver-types/jinn-repo-admit.d.ts +17 -0
- package/dist/solver-types/jinn-repo-admit.js +16 -0
- package/dist/solver-types/jinn-repo-admit.js.map +1 -0
- package/dist/solver-types/jinn-repo-auto.d.ts +60 -0
- package/dist/solver-types/jinn-repo-auto.js +163 -0
- package/dist/solver-types/jinn-repo-auto.js.map +1 -0
- package/dist/solver-types/jinn-repo-definition.d.ts +15 -0
- package/dist/solver-types/jinn-repo-definition.js +34 -0
- package/dist/solver-types/jinn-repo-definition.js.map +1 -0
- package/dist/solver-types/jinn-repo-extract.d.ts +16 -0
- package/dist/solver-types/jinn-repo-extract.js +33 -0
- package/dist/solver-types/jinn-repo-extract.js.map +1 -0
- package/dist/solver-types/jinn-repo-live-auto.d.ts +203 -0
- package/dist/solver-types/jinn-repo-live-auto.js +348 -0
- package/dist/solver-types/jinn-repo-live-auto.js.map +1 -0
- package/dist/solver-types/jinn-repo.d.ts +42 -0
- package/dist/solver-types/jinn-repo.js +42 -0
- package/dist/solver-types/jinn-repo.js.map +1 -0
- package/dist/solver-types/learner-loop-test.js +1 -1
- package/dist/solver-types/learner-loop-test.js.map +1 -1
- package/dist/solver-types/slates/held-out-slate.swe-rebench-v2.v3.json +34 -0
- package/dist/solver-types/slates/held-out-slate.swe-rebench-v2.v3.quality-screen.json +186 -0
- package/dist/solver-types/slates/held-out-slate.swe-rebench-v2.v3.screening-report.json +488 -0
- package/dist/solver-types/swe-rebench-v2-auto.d.ts +13 -0
- package/dist/solver-types/swe-rebench-v2-auto.js +36 -1
- package/dist/solver-types/swe-rebench-v2-auto.js.map +1 -1
- package/dist/solver-types/swe-rebench-v2.js +48 -11
- package/dist/solver-types/swe-rebench-v2.js.map +1 -1
- package/dist/solvernets/launched-record-dispatcher.d.ts +14 -0
- package/dist/solvernets/launched-record-dispatcher.js +28 -1
- package/dist/solvernets/launched-record-dispatcher.js.map +1 -1
- package/dist/solvernets/store.d.ts +1 -1
- package/dist/solvernets/store.js +1 -1
- package/dist/solvernets/store.js.map +1 -1
- package/dist/spend/credential.d.ts +2 -2
- package/dist/spend/credential.js +9 -3
- package/dist/spend/credential.js.map +1 -1
- package/dist/spend/spend-cap.d.ts +10 -0
- package/dist/spend/spend-cap.js +13 -0
- package/dist/spend/spend-cap.js.map +1 -0
- package/dist/spend/usage.js +39 -3
- package/dist/spend/usage.js.map +1 -1
- package/dist/store/store.d.ts +59 -1
- package/dist/store/store.js +157 -6
- package/dist/store/store.js.map +1 -1
- package/dist/task-creator/environment/adapters.d.ts +139 -0
- package/dist/task-creator/environment/adapters.js +446 -0
- package/dist/task-creator/environment/adapters.js.map +1 -0
- package/dist/task-creator/environment/build.d.ts +5 -0
- package/dist/task-creator/environment/build.js +53 -0
- package/dist/task-creator/environment/build.js.map +1 -0
- package/dist/task-creator/environment/contracts.d.ts +1338 -0
- package/dist/task-creator/environment/contracts.js +207 -0
- package/dist/task-creator/environment/contracts.js.map +1 -0
- package/dist/task-creator/environment/github.d.ts +25 -0
- package/dist/task-creator/environment/github.js +67 -0
- package/dist/task-creator/environment/github.js.map +1 -0
- package/dist/task-creator/environment/interfaces.d.ts +60 -0
- package/dist/task-creator/environment/interfaces.js +3 -0
- package/dist/task-creator/environment/interfaces.js.map +1 -0
- package/dist/task-creator/environment/jinn-differential-policy.d.ts +22 -0
- package/dist/task-creator/environment/jinn-differential-policy.js +73 -0
- package/dist/task-creator/environment/jinn-differential-policy.js.map +1 -0
- package/dist/task-creator/environment/policy.d.ts +38 -0
- package/dist/task-creator/environment/policy.js +51 -0
- package/dist/task-creator/environment/policy.js.map +1 -0
- package/dist/task-creator/environment/publication.d.ts +39 -0
- package/dist/task-creator/environment/publication.js +139 -0
- package/dist/task-creator/environment/publication.js.map +1 -0
- package/dist/task-creator/environment/publish-cli.d.ts +427 -0
- package/dist/task-creator/environment/publish-cli.js +180 -0
- package/dist/task-creator/environment/publish-cli.js.map +1 -0
- package/dist/task-creator/environment/recipes.d.ts +19 -0
- package/dist/task-creator/environment/recipes.js +122 -0
- package/dist/task-creator/environment/recipes.js.map +1 -0
- package/dist/task-creator/environment/resolver.d.ts +53 -0
- package/dist/task-creator/environment/resolver.js +57 -0
- package/dist/task-creator/environment/resolver.js.map +1 -0
- package/dist/task-creator/proofs/differential-receipt-bound-proof.d.ts +27 -0
- package/dist/task-creator/proofs/differential-receipt-bound-proof.js +86 -0
- package/dist/task-creator/proofs/differential-receipt-bound-proof.js.map +1 -0
- package/dist/task-creator/proofs/ipfs-cid.d.ts +7 -0
- package/dist/task-creator/proofs/ipfs-cid.js +98 -0
- package/dist/task-creator/proofs/ipfs-cid.js.map +1 -0
- package/dist/task-creator/proofs/live-proof.d.ts +99 -0
- package/dist/task-creator/proofs/live-proof.js +419 -0
- package/dist/task-creator/proofs/live-proof.js.map +1 -0
- package/dist/task-creator/proofs/public-repo-fixtures.d.ts +53 -0
- package/dist/task-creator/proofs/public-repo-fixtures.js +93 -0
- package/dist/task-creator/proofs/public-repo-fixtures.js.map +1 -0
- package/dist/task-creator/proofs/vitest-json-fixture.d.ts +40 -0
- package/dist/task-creator/proofs/vitest-json-fixture.js +115 -0
- package/dist/task-creator/proofs/vitest-json-fixture.js.map +1 -0
- package/dist/trajectory/emit.d.ts +6 -0
- package/dist/trajectory/emit.js +9 -1
- package/dist/trajectory/emit.js.map +1 -1
- package/dist/trajectory/harness-bundle-schema.d.ts +3 -3
- package/dist/trajectory/harness-bundle-schema.js +1 -1
- package/dist/trajectory/harness-bundle-schema.js.map +1 -1
- package/dist/trajectory/hash-chain.d.ts +1 -18
- package/dist/trajectory/hash-chain.js +1 -22
- package/dist/trajectory/hash-chain.js.map +1 -1
- package/dist/trajectory/index.d.ts +2 -0
- package/dist/trajectory/index.js +2 -0
- package/dist/trajectory/index.js.map +1 -1
- package/dist/trajectory/processors/identity-scrub.js +22 -3
- package/dist/trajectory/processors/identity-scrub.js.map +1 -1
- package/dist/trajectory/schema.d.ts +1 -598
- package/dist/trajectory/schema.js +1 -102
- package/dist/trajectory/schema.js.map +1 -1
- package/dist/trajectory/scrub/build.d.ts +1 -0
- package/dist/trajectory/scrub/build.js +2 -0
- package/dist/trajectory/scrub/build.js.map +1 -0
- package/dist/trajectory/scrub/emit-scrub.d.ts +1 -0
- package/dist/trajectory/scrub/emit-scrub.js +2 -0
- package/dist/trajectory/scrub/emit-scrub.js.map +1 -0
- package/dist/trajectory/scrub/key-policy.d.ts +1 -0
- package/dist/trajectory/scrub/key-policy.js +2 -0
- package/dist/trajectory/scrub/key-policy.js.map +1 -0
- package/dist/trajectory/scrub/layer2.d.ts +1 -0
- package/dist/trajectory/scrub/layer2.js +2 -0
- package/dist/trajectory/scrub/layer2.js.map +1 -0
- package/dist/trajectory/scrub/ml-pii-stage.d.ts +1 -0
- package/dist/trajectory/scrub/ml-pii-stage.js +2 -0
- package/dist/trajectory/scrub/ml-pii-stage.js.map +1 -0
- package/dist/trajectory/scrub/openredaction-stage.d.ts +1 -0
- package/dist/trajectory/scrub/openredaction-stage.js +2 -0
- package/dist/trajectory/scrub/openredaction-stage.js.map +1 -0
- package/dist/trajectory/scrub/pii-build.d.ts +1 -0
- package/dist/trajectory/scrub/pii-build.js +2 -0
- package/dist/trajectory/scrub/pii-build.js.map +1 -0
- package/dist/trajectory/scrub/pipeline.d.ts +1 -0
- package/dist/trajectory/scrub/pipeline.js +2 -0
- package/dist/trajectory/scrub/pipeline.js.map +1 -0
- package/dist/trajectory/scrub/plain-patterns-stage.d.ts +1 -0
- package/dist/trajectory/scrub/plain-patterns-stage.js +2 -0
- package/dist/trajectory/scrub/plain-patterns-stage.js.map +1 -0
- package/dist/trajectory/scrub/secretlint-stage.d.ts +1 -0
- package/dist/trajectory/scrub/secretlint-stage.js +2 -0
- package/dist/trajectory/scrub/secretlint-stage.js.map +1 -0
- package/dist/trajectory/scrub/transformers-detector.d.ts +1 -0
- package/dist/trajectory/scrub/transformers-detector.js +2 -0
- package/dist/trajectory/scrub/transformers-detector.js.map +1 -0
- package/dist/trajectory/scrub/types.d.ts +1 -0
- package/dist/trajectory/scrub/types.js +2 -0
- package/dist/trajectory/scrub/types.js.map +1 -0
- package/dist/trajectory/secret-scrub.d.ts +4 -6
- package/dist/trajectory/secret-scrub.js +52 -12
- package/dist/trajectory/secret-scrub.js.map +1 -1
- package/dist/trajectory/span-profile.js +14 -0
- package/dist/trajectory/span-profile.js.map +1 -1
- package/dist/trajectory/transcript-parsers/aider-history.d.ts +1 -42
- package/dist/trajectory/transcript-parsers/aider-history.js +1 -181
- package/dist/trajectory/transcript-parsers/aider-history.js.map +1 -1
- package/dist/trajectory/transcript-parsers/claude-code-jsonl.d.ts +1 -37
- package/dist/trajectory/transcript-parsers/claude-code-jsonl.js +1 -142
- package/dist/trajectory/transcript-parsers/claude-code-jsonl.js.map +1 -1
- package/dist/trajectory/transcript-parsers/codex-session.d.ts +1 -42
- package/dist/trajectory/transcript-parsers/codex-session.js +1 -235
- package/dist/trajectory/transcript-parsers/codex-session.js.map +1 -1
- package/dist/trajectory/transcript-parsers/continue-devdata.d.ts +1 -41
- package/dist/trajectory/transcript-parsers/continue-devdata.js +1 -190
- package/dist/trajectory/transcript-parsers/continue-devdata.js.map +1 -1
- package/dist/trajectory/transcript-parsers/cursor-sqlite.d.ts +1 -38
- package/dist/trajectory/transcript-parsers/cursor-sqlite.js +1 -118
- package/dist/trajectory/transcript-parsers/cursor-sqlite.js.map +1 -1
- package/dist/trajectory/transcript-parsers/gemini-session.d.ts +1 -35
- package/dist/trajectory/transcript-parsers/gemini-session.js +1 -137
- package/dist/trajectory/transcript-parsers/gemini-session.js.map +1 -1
- package/dist/trajectory/transcript-parsers/types.d.ts +1 -101
- package/dist/trajectory/transcript-parsers/types.js +1 -32
- package/dist/trajectory/transcript-parsers/types.js.map +1 -1
- package/dist/trajectory/transcript-to-spans/attrs.d.ts +1 -0
- package/dist/trajectory/transcript-to-spans/attrs.js +2 -0
- package/dist/trajectory/transcript-to-spans/attrs.js.map +1 -0
- package/dist/trajectory/transcript-to-spans/claude-code-stream-json.d.ts +1 -0
- package/dist/trajectory/transcript-to-spans/claude-code-stream-json.js +2 -0
- package/dist/trajectory/transcript-to-spans/claude-code-stream-json.js.map +1 -0
- package/dist/trajectory/transcript-to-spans/codex-exec-json.d.ts +1 -0
- package/dist/trajectory/transcript-to-spans/codex-exec-json.js +2 -0
- package/dist/trajectory/transcript-to-spans/codex-exec-json.js.map +1 -0
- package/dist/trajectory/transcript-to-spans/hermes-session-json.d.ts +48 -0
- package/dist/trajectory/transcript-to-spans/hermes-session-json.js +193 -0
- package/dist/trajectory/transcript-to-spans/hermes-session-json.js.map +1 -0
- package/dist/trajectory/transcript-to-spans/index.d.ts +38 -0
- package/dist/trajectory/transcript-to-spans/index.js +77 -0
- package/dist/trajectory/transcript-to-spans/index.js.map +1 -0
- package/dist/trajectory/transcript-to-spans/types.d.ts +16 -0
- package/dist/trajectory/transcript-to-spans/types.js +11 -0
- package/dist/trajectory/transcript-to-spans/types.js.map +1 -0
- package/dist/trajectory/transcript-watcher.d.ts +41 -0
- package/dist/trajectory/transcript-watcher.js +34 -0
- package/dist/trajectory/transcript-watcher.js.map +1 -1
- package/dist/tx-retry.d.ts +18 -0
- package/dist/tx-retry.js +52 -12
- package/dist/tx-retry.js.map +1 -1
- package/dist/types/envelope.d.ts +3 -2785
- package/dist/types/envelope.js +3 -160
- package/dist/types/envelope.js.map +1 -1
- package/dist/types/manifest.d.ts +1 -0
- package/dist/types/manifest.js +2 -0
- package/dist/types/manifest.js.map +1 -0
- package/dist/types/payloads/index.d.ts +1 -1
- package/dist/types/payloads/index.js +7 -1
- package/dist/types/payloads/index.js.map +1 -1
- package/dist/types/payloads/portfolio-v0.d.ts +4 -4
- package/dist/types/payloads/portfolio-v0.js +1 -1
- package/dist/types/payloads/portfolio-v0.js.map +1 -1
- package/dist/types/payloads/prediction-apy-v0.d.ts +4 -4
- package/dist/types/payloads/prediction-apy-v0.js +1 -1
- package/dist/types/payloads/prediction-apy-v0.js.map +1 -1
- package/dist/types/payloads/prediction-v0.d.ts +4 -4
- package/dist/types/payloads/prediction-v0.js +1 -1
- package/dist/types/payloads/prediction-v0.js.map +1 -1
- package/dist/types/portfolio.d.ts +1 -1
- package/dist/types/portfolio.js +1 -1
- package/dist/types/portfolio.js.map +1 -1
- package/dist/types/prediction-apy.d.ts +1 -1
- package/dist/types/prediction-apy.js +1 -1
- package/dist/types/prediction-apy.js.map +1 -1
- package/dist/types/prediction.d.ts +1 -1
- package/dist/types/prediction.js +1 -1
- package/dist/types/prediction.js.map +1 -1
- package/dist/types/session-provenance.d.ts +2 -71
- package/dist/types/session-provenance.js +2 -18
- package/dist/types/session-provenance.js.map +1 -1
- package/dist/types/skill-artifact.d.ts +5 -0
- package/dist/types/skill-artifact.js +6 -0
- package/dist/types/skill-artifact.js.map +1 -0
- package/dist/types/task-document.d.ts +315 -1
- package/dist/types/task-document.js +9 -1
- package/dist/types/task-document.js.map +1 -1
- package/dist/types/task-run-read-model.d.ts +21 -0
- package/dist/types/task-run-read-model.js +2 -0
- package/dist/types/task-run-read-model.js.map +1 -0
- package/dist/types/task-run.d.ts +88 -0
- package/dist/types/task-run.js +2 -0
- package/dist/types/task-run.js.map +1 -0
- package/dist/types/task.d.ts +36 -1
- package/dist/types/task.js +1 -1
- package/dist/types/task.js.map +1 -1
- package/dist/types/window.d.ts +2 -12
- package/dist/types/window.js +2 -5
- package/dist/types/window.js.map +1 -1
- package/dist/util/redact-rpc-urls.d.ts +1 -1
- package/dist/util/redact-rpc-urls.js +57 -2
- package/dist/util/redact-rpc-urls.js.map +1 -1
- package/dist/vendor/@jinn-network/core/dist/canonical-json.d.ts +1 -0
- package/dist/vendor/@jinn-network/core/dist/canonical-json.js +67 -0
- package/dist/vendor/@jinn-network/core/dist/captured-task.d.ts +140 -0
- package/dist/vendor/@jinn-network/core/dist/captured-task.js +122 -0
- package/dist/vendor/@jinn-network/core/dist/contribution-store.d.ts +97 -0
- package/dist/vendor/@jinn-network/core/dist/contribution-store.js +770 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/acquire.d.ts +39 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/acquire.js +212 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/cache.d.ts +14 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/cache.js +17 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/capture-meta.d.ts +16 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/capture-meta.js +18 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/create-corpus.d.ts +2 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/create-corpus.js +97 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/fetch-artifact.d.ts +21 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/fetch-artifact.js +32 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/fetch.d.ts +12 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/fetch.js +24 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/http-discovery.d.ts +9 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/http-discovery.js +128 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/index.d.ts +10 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/index.js +10 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/ipfs.d.ts +5 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/ipfs.js +72 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/route-resolver.d.ts +16 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/route-resolver.js +19 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/types.d.ts +177 -0
- package/dist/vendor/@jinn-network/core/dist/corpus-read/types.js +42 -0
- package/dist/vendor/@jinn-network/core/dist/envelope.d.ts +134 -0
- package/dist/vendor/@jinn-network/core/dist/envelope.js +162 -0
- package/dist/vendor/@jinn-network/core/dist/evidence-adapter.d.ts +26 -0
- package/dist/vendor/@jinn-network/core/dist/evidence-adapter.js +321 -0
- package/dist/vendor/@jinn-network/core/dist/evidence-filesystem.d.ts +40 -0
- package/dist/vendor/@jinn-network/core/dist/evidence-filesystem.js +267 -0
- package/dist/vendor/@jinn-network/core/dist/evidence-index.d.ts +117 -0
- package/dist/vendor/@jinn-network/core/dist/evidence-index.js +1083 -0
- package/dist/vendor/@jinn-network/core/dist/evidence-store-lock.d.ts +2 -0
- package/dist/vendor/@jinn-network/core/dist/evidence-store-lock.js +208 -0
- package/dist/vendor/@jinn-network/core/dist/execution-envelope.d.ts +3142 -0
- package/dist/vendor/@jinn-network/core/dist/execution-envelope.js +203 -0
- package/dist/vendor/@jinn-network/core/dist/index.d.ts +12 -0
- package/dist/vendor/@jinn-network/core/dist/index.js +12 -0
- package/dist/vendor/@jinn-network/core/dist/manifest.d.ts +75 -0
- package/dist/vendor/@jinn-network/core/dist/manifest.js +184 -0
- package/dist/vendor/@jinn-network/core/dist/paired.d.ts +68 -0
- package/dist/vendor/@jinn-network/core/dist/paired.js +92 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/build.d.ts +55 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/build.js +87 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/emit-scrub.d.ts +41 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/emit-scrub.js +87 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/index.d.ts +12 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/index.js +12 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/key-policy.d.ts +20 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/key-policy.js +42 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/layer2.d.ts +24 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/layer2.js +33 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/ml-pii-stage.d.ts +24 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/ml-pii-stage.js +42 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/openredaction-stage.d.ts +196 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/openredaction-stage.js +270 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/pii-build.d.ts +38 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/pii-build.js +67 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/pipeline.d.ts +38 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/pipeline.js +83 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/plain-patterns-stage.d.ts +42 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/plain-patterns-stage.js +114 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/secretlint-stage.d.ts +36 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/secretlint-stage.js +249 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/transformers-detector.d.ts +35 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/transformers-detector.js +67 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/types.d.ts +25 -0
- package/dist/vendor/@jinn-network/core/dist/scrub/types.js +1 -0
- package/dist/vendor/@jinn-network/core/dist/session-provenance.d.ts +75 -0
- package/dist/vendor/@jinn-network/core/dist/session-provenance.js +20 -0
- package/dist/vendor/@jinn-network/core/dist/skill-artifact.d.ts +442 -0
- package/dist/vendor/@jinn-network/core/dist/skill-artifact.js +136 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/hash-chain.d.ts +18 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/hash-chain.js +47 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/index.d.ts +4 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/index.js +4 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/schema.d.ts +606 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/schema.js +110 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/aider-history.d.ts +42 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/aider-history.js +181 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/claude-code-jsonl.d.ts +37 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/claude-code-jsonl.js +142 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/codex-session.d.ts +42 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/codex-session.js +235 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/continue-devdata.d.ts +41 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/continue-devdata.js +190 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/cursor-sqlite.d.ts +38 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/cursor-sqlite.js +118 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/gemini-session.d.ts +35 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/gemini-session.js +137 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/index.d.ts +7 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/index.js +7 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/types.d.ts +101 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-parsers/types.js +32 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-to-spans/attrs.d.ts +4 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-to-spans/attrs.js +30 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-to-spans/claude-code-stream-json.d.ts +8 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-to-spans/claude-code-stream-json.js +162 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-to-spans/codex-exec-json.d.ts +8 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-to-spans/codex-exec-json.js +253 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-to-spans/index.d.ts +4 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-to-spans/index.js +4 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-to-spans/types.d.ts +18 -0
- package/dist/vendor/@jinn-network/core/dist/trajectory/transcript-to-spans/types.js +1 -0
- package/dist/vendor/@jinn-network/core/dist/window.d.ts +12 -0
- package/dist/vendor/@jinn-network/core/dist/window.js +5 -0
- package/dist/vendor/@jinn-network/core/package.json +38 -0
- package/dist/vendor/@jinn-network/plugin/dist/eligibility.d.ts +12 -0
- package/dist/vendor/@jinn-network/plugin/dist/eligibility.js +12 -0
- package/dist/vendor/@jinn-network/plugin/dist/history.d.ts +35 -0
- package/dist/vendor/@jinn-network/plugin/dist/history.js +140 -0
- package/dist/vendor/@jinn-network/plugin/dist/index.d.ts +32 -0
- package/dist/vendor/@jinn-network/plugin/dist/index.js +15 -0
- package/dist/vendor/@jinn-network/plugin/dist/outcome.d.ts +26 -0
- package/dist/vendor/@jinn-network/plugin/dist/outcome.js +23 -0
- package/dist/vendor/@jinn-network/plugin/dist/pickup.d.ts +101 -0
- package/dist/vendor/@jinn-network/plugin/dist/pickup.js +354 -0
- package/dist/vendor/@jinn-network/plugin/dist/plugin.d.ts +157 -0
- package/dist/vendor/@jinn-network/plugin/dist/plugin.js +586 -0
- package/dist/vendor/@jinn-network/plugin/dist/ports/contribution-port.d.ts +53 -0
- package/dist/vendor/@jinn-network/plugin/dist/ports/contribution-port.js +14 -0
- package/dist/vendor/@jinn-network/plugin/dist/ports/corpus-port.d.ts +63 -0
- package/dist/vendor/@jinn-network/plugin/dist/ports/corpus-port.js +1 -0
- package/dist/vendor/@jinn-network/plugin/dist/ports/evidence-port.d.ts +17 -0
- package/dist/vendor/@jinn-network/plugin/dist/ports/evidence-port.js +1 -0
- package/dist/vendor/@jinn-network/plugin/dist/ports/local-learning-port.d.ts +22 -0
- package/dist/vendor/@jinn-network/plugin/dist/ports/local-learning-port.js +1 -0
- package/dist/vendor/@jinn-network/plugin/dist/ports/skills-port.d.ts +12 -0
- package/dist/vendor/@jinn-network/plugin/dist/ports/skills-port.js +1 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/contribution-candidate.d.ts +116 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/contribution-candidate.js +63 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/eligibility-verdict.d.ts +8 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/eligibility-verdict.js +7 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/episode.d.ts +432 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/episode.js +452 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/history-entry.d.ts +40 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/history-entry.js +30 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/knowledge-hit.d.ts +27 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/knowledge-hit.js +23 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/knowledge-packet.d.ts +79 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/knowledge-packet.js +213 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/pickup-config.d.ts +20 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/pickup-config.js +34 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/session-summary.d.ts +17 -0
- package/dist/vendor/@jinn-network/plugin/dist/schemas/session-summary.js +19 -0
- package/dist/vendor/@jinn-network/plugin/dist/testing/contract-kits.d.ts +12 -0
- package/dist/vendor/@jinn-network/plugin/dist/testing/contract-kits.js +201 -0
- package/dist/vendor/@jinn-network/plugin/dist/testing/in-memory-contribution.d.ts +93 -0
- package/dist/vendor/@jinn-network/plugin/dist/testing/in-memory-contribution.js +104 -0
- package/dist/vendor/@jinn-network/plugin/dist/testing/in-memory-corpus.d.ts +47 -0
- package/dist/vendor/@jinn-network/plugin/dist/testing/in-memory-corpus.js +54 -0
- package/dist/vendor/@jinn-network/plugin/dist/testing/in-memory-evidence.d.ts +335 -0
- package/dist/vendor/@jinn-network/plugin/dist/testing/in-memory-evidence.js +23 -0
- package/dist/vendor/@jinn-network/plugin/dist/testing/in-memory-local-learning.d.ts +25 -0
- package/dist/vendor/@jinn-network/plugin/dist/testing/in-memory-local-learning.js +30 -0
- package/dist/vendor/@jinn-network/plugin/dist/testing/in-memory-skills.d.ts +9 -0
- package/dist/vendor/@jinn-network/plugin/dist/testing/in-memory-skills.js +16 -0
- package/dist/vendor/@jinn-network/plugin/dist/testing.d.ts +6 -0
- package/dist/vendor/@jinn-network/plugin/dist/testing.js +8 -0
- package/dist/vendor/@jinn-network/plugin/dist/visibility.d.ts +7 -0
- package/dist/vendor/@jinn-network/plugin/dist/visibility.js +9 -0
- package/dist/vendor/@jinn-network/plugin/package.json +22 -0
- package/dist/vendor/@jinn-network/sdk/dist/checkpoint.d.ts +1 -1
- package/dist/vendor/@jinn-network/sdk/dist/checkpoint.js +1 -1
- package/dist/vendor/@jinn-network/sdk/dist/contracts.d.ts +3 -2
- package/dist/vendor/@jinn-network/sdk/dist/contracts.js +49 -0
- package/dist/vendor/@jinn-network/sdk/dist/jinn-repo.d.ts +214 -0
- package/dist/vendor/@jinn-network/sdk/dist/jinn-repo.js +75 -0
- package/dist/vendor/@jinn-network/sdk/dist/json-schema.d.ts +1 -1
- package/dist/vendor/@jinn-network/sdk/dist/json-schema.js +1 -1
- package/dist/vendor/@jinn-network/sdk/dist/payloads/jinn-repo.d.ts +140 -0
- package/dist/vendor/@jinn-network/sdk/dist/payloads/jinn-repo.js +52 -0
- package/dist/vendor/@jinn-network/sdk/dist/payloads/prediction-v1.d.ts +1 -1
- package/dist/vendor/@jinn-network/sdk/dist/payloads/prediction-v1.js +1 -1
- package/dist/vendor/@jinn-network/sdk/dist/payloads/session-derived.d.ts +1 -1
- package/dist/vendor/@jinn-network/sdk/dist/payloads/session-derived.js +1 -1
- package/dist/vendor/@jinn-network/sdk/dist/payloads/swe-rebench-v2.d.ts +1 -1
- package/dist/vendor/@jinn-network/sdk/dist/payloads/swe-rebench-v2.js +1 -1
- package/dist/vendor/@jinn-network/sdk/dist/prediction-v1.d.ts +1 -1
- package/dist/vendor/@jinn-network/sdk/dist/prediction-v1.js +1 -1
- package/dist/vendor/@jinn-network/sdk/dist/solvernets/jinn-repo.d.ts +4 -0
- package/dist/vendor/@jinn-network/sdk/dist/solvernets/jinn-repo.js +2 -0
- package/dist/vendor/@jinn-network/sdk/dist/solvernets/manifest-schema.d.ts +1 -1
- package/dist/vendor/@jinn-network/sdk/dist/solvernets/manifest-schema.js +1 -1
- package/dist/vendor/@jinn-network/sdk/dist/swe-rebench-v2.d.ts +34 -6
- package/dist/vendor/@jinn-network/sdk/dist/swe-rebench-v2.js +28 -5
- package/dist/vendor/@jinn-network/sdk/package.json +5 -1
- package/node_modules/@jinn-network/core/dist/canonical-json.d.ts +1 -0
- package/node_modules/@jinn-network/core/dist/canonical-json.js +67 -0
- package/node_modules/@jinn-network/core/dist/captured-task.d.ts +140 -0
- package/node_modules/@jinn-network/core/dist/captured-task.js +122 -0
- package/node_modules/@jinn-network/core/dist/contribution-store.d.ts +97 -0
- package/node_modules/@jinn-network/core/dist/contribution-store.js +770 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/acquire.d.ts +39 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/acquire.js +212 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/cache.d.ts +14 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/cache.js +17 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/capture-meta.d.ts +16 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/capture-meta.js +18 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/create-corpus.d.ts +2 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/create-corpus.js +97 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/fetch-artifact.d.ts +21 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/fetch-artifact.js +32 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/fetch.d.ts +12 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/fetch.js +24 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/http-discovery.d.ts +9 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/http-discovery.js +128 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/index.d.ts +10 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/index.js +10 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/ipfs.d.ts +5 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/ipfs.js +72 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/route-resolver.d.ts +16 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/route-resolver.js +19 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/types.d.ts +177 -0
- package/node_modules/@jinn-network/core/dist/corpus-read/types.js +42 -0
- package/node_modules/@jinn-network/core/dist/envelope.d.ts +134 -0
- package/node_modules/@jinn-network/core/dist/envelope.js +162 -0
- package/node_modules/@jinn-network/core/dist/evidence-adapter.d.ts +26 -0
- package/node_modules/@jinn-network/core/dist/evidence-adapter.js +321 -0
- package/node_modules/@jinn-network/core/dist/evidence-filesystem.d.ts +40 -0
- package/node_modules/@jinn-network/core/dist/evidence-filesystem.js +267 -0
- package/node_modules/@jinn-network/core/dist/evidence-index.d.ts +117 -0
- package/node_modules/@jinn-network/core/dist/evidence-index.js +1083 -0
- package/node_modules/@jinn-network/core/dist/evidence-store-lock.d.ts +2 -0
- package/node_modules/@jinn-network/core/dist/evidence-store-lock.js +208 -0
- package/node_modules/@jinn-network/core/dist/execution-envelope.d.ts +3142 -0
- package/node_modules/@jinn-network/core/dist/execution-envelope.js +203 -0
- package/node_modules/@jinn-network/core/dist/index.d.ts +12 -0
- package/node_modules/@jinn-network/core/dist/index.js +12 -0
- package/node_modules/@jinn-network/core/dist/manifest.d.ts +75 -0
- package/node_modules/@jinn-network/core/dist/manifest.js +184 -0
- package/node_modules/@jinn-network/core/dist/paired.d.ts +68 -0
- package/node_modules/@jinn-network/core/dist/paired.js +92 -0
- package/node_modules/@jinn-network/core/dist/scrub/build.d.ts +55 -0
- package/node_modules/@jinn-network/core/dist/scrub/build.js +87 -0
- package/node_modules/@jinn-network/core/dist/scrub/emit-scrub.d.ts +41 -0
- package/node_modules/@jinn-network/core/dist/scrub/emit-scrub.js +87 -0
- package/node_modules/@jinn-network/core/dist/scrub/index.d.ts +12 -0
- package/node_modules/@jinn-network/core/dist/scrub/index.js +12 -0
- package/node_modules/@jinn-network/core/dist/scrub/key-policy.d.ts +20 -0
- package/node_modules/@jinn-network/core/dist/scrub/key-policy.js +42 -0
- package/node_modules/@jinn-network/core/dist/scrub/layer2.d.ts +24 -0
- package/node_modules/@jinn-network/core/dist/scrub/layer2.js +33 -0
- package/node_modules/@jinn-network/core/dist/scrub/ml-pii-stage.d.ts +24 -0
- package/node_modules/@jinn-network/core/dist/scrub/ml-pii-stage.js +42 -0
- package/node_modules/@jinn-network/core/dist/scrub/openredaction-stage.d.ts +196 -0
- package/node_modules/@jinn-network/core/dist/scrub/openredaction-stage.js +270 -0
- package/node_modules/@jinn-network/core/dist/scrub/pii-build.d.ts +38 -0
- package/node_modules/@jinn-network/core/dist/scrub/pii-build.js +67 -0
- package/node_modules/@jinn-network/core/dist/scrub/pipeline.d.ts +38 -0
- package/node_modules/@jinn-network/core/dist/scrub/pipeline.js +83 -0
- package/node_modules/@jinn-network/core/dist/scrub/plain-patterns-stage.d.ts +42 -0
- package/node_modules/@jinn-network/core/dist/scrub/plain-patterns-stage.js +114 -0
- package/node_modules/@jinn-network/core/dist/scrub/secretlint-stage.d.ts +36 -0
- package/node_modules/@jinn-network/core/dist/scrub/secretlint-stage.js +249 -0
- package/node_modules/@jinn-network/core/dist/scrub/transformers-detector.d.ts +35 -0
- package/node_modules/@jinn-network/core/dist/scrub/transformers-detector.js +67 -0
- package/node_modules/@jinn-network/core/dist/scrub/types.d.ts +25 -0
- package/node_modules/@jinn-network/core/dist/scrub/types.js +1 -0
- package/node_modules/@jinn-network/core/dist/session-provenance.d.ts +75 -0
- package/node_modules/@jinn-network/core/dist/session-provenance.js +20 -0
- package/node_modules/@jinn-network/core/dist/skill-artifact.d.ts +442 -0
- package/node_modules/@jinn-network/core/dist/skill-artifact.js +136 -0
- package/node_modules/@jinn-network/core/dist/trajectory/hash-chain.d.ts +18 -0
- package/node_modules/@jinn-network/core/dist/trajectory/hash-chain.js +47 -0
- package/node_modules/@jinn-network/core/dist/trajectory/index.d.ts +4 -0
- package/node_modules/@jinn-network/core/dist/trajectory/index.js +4 -0
- package/node_modules/@jinn-network/core/dist/trajectory/schema.d.ts +606 -0
- package/node_modules/@jinn-network/core/dist/trajectory/schema.js +110 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/aider-history.d.ts +42 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/aider-history.js +181 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/claude-code-jsonl.d.ts +37 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/claude-code-jsonl.js +142 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/codex-session.d.ts +42 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/codex-session.js +235 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/continue-devdata.d.ts +41 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/continue-devdata.js +190 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/cursor-sqlite.d.ts +38 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/cursor-sqlite.js +118 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/gemini-session.d.ts +35 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/gemini-session.js +137 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/index.d.ts +7 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/index.js +7 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/types.d.ts +101 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-parsers/types.js +32 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-to-spans/attrs.d.ts +4 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-to-spans/attrs.js +30 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-to-spans/claude-code-stream-json.d.ts +8 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-to-spans/claude-code-stream-json.js +162 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-to-spans/codex-exec-json.d.ts +8 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-to-spans/codex-exec-json.js +253 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-to-spans/index.d.ts +4 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-to-spans/index.js +4 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-to-spans/types.d.ts +18 -0
- package/node_modules/@jinn-network/core/dist/trajectory/transcript-to-spans/types.js +1 -0
- package/node_modules/@jinn-network/core/dist/window.d.ts +12 -0
- package/node_modules/@jinn-network/core/dist/window.js +5 -0
- package/node_modules/@jinn-network/core/package.json +61 -0
- package/node_modules/@jinn-network/plugin/dist/eligibility.d.ts +12 -0
- package/node_modules/@jinn-network/plugin/dist/eligibility.js +12 -0
- package/node_modules/@jinn-network/plugin/dist/history.d.ts +35 -0
- package/node_modules/@jinn-network/plugin/dist/history.js +140 -0
- package/node_modules/@jinn-network/plugin/dist/index.d.ts +32 -0
- package/node_modules/@jinn-network/plugin/dist/index.js +15 -0
- package/node_modules/@jinn-network/plugin/dist/outcome.d.ts +26 -0
- package/node_modules/@jinn-network/plugin/dist/outcome.js +23 -0
- package/node_modules/@jinn-network/plugin/dist/pickup.d.ts +101 -0
- package/node_modules/@jinn-network/plugin/dist/pickup.js +354 -0
- package/node_modules/@jinn-network/plugin/dist/plugin.d.ts +157 -0
- package/node_modules/@jinn-network/plugin/dist/plugin.js +586 -0
- package/node_modules/@jinn-network/plugin/dist/ports/contribution-port.d.ts +53 -0
- package/node_modules/@jinn-network/plugin/dist/ports/contribution-port.js +14 -0
- package/node_modules/@jinn-network/plugin/dist/ports/corpus-port.d.ts +63 -0
- package/node_modules/@jinn-network/plugin/dist/ports/corpus-port.js +1 -0
- package/node_modules/@jinn-network/plugin/dist/ports/evidence-port.d.ts +17 -0
- package/node_modules/@jinn-network/plugin/dist/ports/evidence-port.js +1 -0
- package/node_modules/@jinn-network/plugin/dist/ports/local-learning-port.d.ts +22 -0
- package/node_modules/@jinn-network/plugin/dist/ports/local-learning-port.js +1 -0
- package/node_modules/@jinn-network/plugin/dist/ports/skills-port.d.ts +12 -0
- package/node_modules/@jinn-network/plugin/dist/ports/skills-port.js +1 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/contribution-candidate.d.ts +116 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/contribution-candidate.js +63 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/eligibility-verdict.d.ts +8 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/eligibility-verdict.js +7 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/episode.d.ts +432 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/episode.js +452 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/history-entry.d.ts +40 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/history-entry.js +30 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/knowledge-hit.d.ts +27 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/knowledge-hit.js +23 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/knowledge-packet.d.ts +79 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/knowledge-packet.js +213 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/pickup-config.d.ts +20 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/pickup-config.js +34 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/session-summary.d.ts +17 -0
- package/node_modules/@jinn-network/plugin/dist/schemas/session-summary.js +19 -0
- package/node_modules/@jinn-network/plugin/dist/testing/contract-kits.d.ts +12 -0
- package/node_modules/@jinn-network/plugin/dist/testing/contract-kits.js +201 -0
- package/node_modules/@jinn-network/plugin/dist/testing/in-memory-contribution.d.ts +93 -0
- package/node_modules/@jinn-network/plugin/dist/testing/in-memory-contribution.js +104 -0
- package/node_modules/@jinn-network/plugin/dist/testing/in-memory-corpus.d.ts +47 -0
- package/node_modules/@jinn-network/plugin/dist/testing/in-memory-corpus.js +54 -0
- package/node_modules/@jinn-network/plugin/dist/testing/in-memory-evidence.d.ts +335 -0
- package/node_modules/@jinn-network/plugin/dist/testing/in-memory-evidence.js +23 -0
- package/node_modules/@jinn-network/plugin/dist/testing/in-memory-local-learning.d.ts +25 -0
- package/node_modules/@jinn-network/plugin/dist/testing/in-memory-local-learning.js +30 -0
- package/node_modules/@jinn-network/plugin/dist/testing/in-memory-skills.d.ts +9 -0
- package/node_modules/@jinn-network/plugin/dist/testing/in-memory-skills.js +16 -0
- package/node_modules/@jinn-network/plugin/dist/testing.d.ts +6 -0
- package/node_modules/@jinn-network/plugin/dist/testing.js +8 -0
- package/node_modules/@jinn-network/plugin/dist/visibility.d.ts +7 -0
- package/node_modules/@jinn-network/plugin/dist/visibility.js +9 -0
- package/node_modules/@jinn-network/plugin/package.json +50 -0
- package/node_modules/@jinn-network/plugin/process-contract.json +8 -0
- package/package.json +60 -18
- package/plugins/jinn-repo-runtime/.claude-plugin/plugin.json +5 -0
- package/plugins/jinn-repo-runtime/.codex-plugin/plugin.json +39 -0
- package/plugins/jinn-repo-runtime/README.md +27 -0
- package/plugins/jinn-repo-runtime/hooks/hooks.json +16 -0
- package/plugins/jinn-repo-runtime/hooks/session-start +73 -0
- package/plugins/jinn-repo-runtime/jinn.plugin.json +11 -0
- package/plugins/jinn-repo-runtime/skills/task/SKILL.md +92 -0
- package/skills/jinn-operator/SKILL.md +29 -15
- package/deployments/deployment-jinn-mvi-l1-sepolia-fast.json +0 -55
- package/deployments/deployment-jinn-mvi-l1-sepolia.json +0 -55
- package/deployments/deployment-jinn-mvi-l2-baseSepolia.json +0 -13
- package/deployments/deployment-jinn-testnet-faucet-baseSepolia-fast.json +0 -15
- package/dist/api/peers.js.map +0 -1
- package/dist/daemon/jinn-claim-loop-canonical.d.ts +0 -207
- package/dist/daemon/jinn-claim-loop-canonical.js +0 -296
- package/dist/daemon/jinn-claim-loop-canonical.js.map +0 -1
- package/dist/daemon/jinn-claim-loop-mock.d.ts +0 -61
- package/dist/daemon/jinn-claim-loop-mock.js +0 -122
- package/dist/daemon/jinn-claim-loop-mock.js.map +0 -1
- package/dist/daemon/jinn-claim-loop-wiring.d.ts +0 -33
- package/dist/daemon/jinn-claim-loop-wiring.js +0 -40
- package/dist/daemon/jinn-claim-loop-wiring.js.map +0 -1
- package/dist/daemon/jinn-claim-loop.d.ts +0 -130
- package/dist/daemon/jinn-claim-loop.js +0 -328
- package/dist/daemon/jinn-claim-loop.js.map +0 -1
- package/dist/dashboard/assets/index-BVAWkLwY.css +0 -1
- package/dist/dashboard/assets/index-DEPqtGOA.js +0 -167
- package/dist/earning/jinn-rewards.js.map +0 -1
- package/dist/scripts/donation-consumption-acceptance.d.ts +0 -85
- package/dist/scripts/donation-consumption-acceptance.js +0 -1382
- package/dist/scripts/donation-consumption-acceptance.js.map +0 -1
- package/dist/x402/acquire.d.ts +0 -17
- package/dist/x402/acquire.js +0 -49
- package/dist/x402/acquire.js.map +0 -1
- package/dist/x402/facilitator.d.ts +0 -11
- package/dist/x402/facilitator.js +0 -52
- package/dist/x402/facilitator.js.map +0 -1
- package/dist/x402/handler.d.ts +0 -27
- package/dist/x402/handler.js +0 -236
- package/dist/x402/handler.js.map +0 -1
- /package/dist/{api/peers.d.ts → daemon/peer-sync.d.ts} +0 -0
package/dist/config.d.ts
CHANGED
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
* Router claims: JINN_ROUTER_CLAIM_DELIVERY_VERSION=v1|v2 overrides chain default
|
|
14
14
|
* (mainnet V1, testnet V2) for JinnRouter claimDelivery encoding.
|
|
15
15
|
*/
|
|
16
|
-
import { z } from 'zod';
|
|
16
|
+
import { z } from 'zod/v3';
|
|
17
17
|
import type { Task } from './types/task.js';
|
|
18
|
-
export declare const JinnConfigSchema: z.
|
|
18
|
+
export declare const JinnConfigSchema: z.ZodObject<{
|
|
19
19
|
/**
|
|
20
20
|
* Network to connect to.
|
|
21
21
|
* 'testnet' → Base Sepolia (default during Phase 1b; fast epochs, free funds).
|
|
@@ -36,13 +36,6 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
36
36
|
*/
|
|
37
37
|
rpcUrl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
38
38
|
archiveRpcUrl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
39
|
-
/**
|
|
40
|
-
* Optional L2 proof/archive RPC endpoint(s) for canonical cross-chain canaries.
|
|
41
|
-
* The daemon can use its normal rpcUrl for writes while proof construction
|
|
42
|
-
* uses this endpoint for historical eth_getProof at OP dispute-game blocks.
|
|
43
|
-
* Accepts string or array form (see rpcUrl). Env: JINN_L2_PROOF_RPC_URL.
|
|
44
|
-
*/
|
|
45
|
-
l2ProofRpcUrl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
46
39
|
/**
|
|
47
40
|
* Single volume-aware durable-state root. When set (env JINN_STATE_DIR or
|
|
48
41
|
* this file field), `earningDir`, `dbPath`, `engine.implStateDirRoot`, and
|
|
@@ -63,8 +56,8 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
63
56
|
pollIntervalMs: z.ZodDefault<z.ZodNumber>;
|
|
64
57
|
/**
|
|
65
58
|
* How often the daemon attempts stOLAS ExternalStakingDistributor.claim for each staked
|
|
66
|
-
* fleet service (ms). Default
|
|
67
|
-
*
|
|
59
|
+
* fleet service (ms). Default 0 so operators claim OLAS manually from the app.
|
|
60
|
+
* Set JINN_REWARD_CLAIM_INTERVAL_MS=600000 for managed/headless auto-claim.
|
|
68
61
|
* Env: JINN_REWARD_CLAIM_INTERVAL_MS
|
|
69
62
|
*/
|
|
70
63
|
rewardClaimIntervalMs: z.ZodDefault<z.ZodNumber>;
|
|
@@ -222,6 +215,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
222
215
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
223
216
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
224
217
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
218
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
225
219
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
226
220
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
227
221
|
maxClaims: z.ZodNumber;
|
|
@@ -232,6 +226,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
232
226
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
233
227
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
234
228
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
229
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
235
230
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
236
231
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
237
232
|
maxClaims: z.ZodNumber;
|
|
@@ -242,6 +237,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
242
237
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
243
238
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
244
239
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
240
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
245
241
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
246
242
|
signedTask: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
247
243
|
signature: z.ZodObject<{
|
|
@@ -290,6 +286,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
290
286
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
291
287
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
292
288
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
289
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
293
290
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
294
291
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
295
292
|
maxClaims: z.ZodNumber;
|
|
@@ -300,6 +297,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
300
297
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
301
298
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
302
299
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
300
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
303
301
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
304
302
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
305
303
|
maxClaims: z.ZodNumber;
|
|
@@ -310,6 +308,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
310
308
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
311
309
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
312
310
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
311
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
313
312
|
}, z.ZodTypeAny, "passthrough">>;
|
|
314
313
|
creator: z.ZodObject<{
|
|
315
314
|
safeAddress: z.ZodString;
|
|
@@ -369,6 +368,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
369
368
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
370
369
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
371
370
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
371
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
372
372
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
373
373
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
374
374
|
maxClaims: z.ZodNumber;
|
|
@@ -379,6 +379,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
379
379
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
380
380
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
381
381
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
382
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
382
383
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
383
384
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
384
385
|
maxClaims: z.ZodNumber;
|
|
@@ -389,6 +390,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
389
390
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
390
391
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
391
392
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
393
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
392
394
|
}, z.ZodTypeAny, "passthrough">>;
|
|
393
395
|
creator: z.ZodObject<{
|
|
394
396
|
safeAddress: z.ZodString;
|
|
@@ -448,6 +450,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
448
450
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
449
451
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
450
452
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
453
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
451
454
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
452
455
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
453
456
|
maxClaims: z.ZodNumber;
|
|
@@ -458,6 +461,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
458
461
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
459
462
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
460
463
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
464
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
461
465
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
462
466
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
463
467
|
maxClaims: z.ZodNumber;
|
|
@@ -468,6 +472,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
468
472
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
469
473
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
470
474
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
475
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
471
476
|
}, z.ZodTypeAny, "passthrough">>;
|
|
472
477
|
creator: z.ZodObject<{
|
|
473
478
|
safeAddress: z.ZodString;
|
|
@@ -527,6 +532,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
527
532
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
528
533
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
529
534
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
535
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
530
536
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
531
537
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
532
538
|
maxClaims: z.ZodNumber;
|
|
@@ -537,6 +543,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
537
543
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
538
544
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
539
545
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
546
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
540
547
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
541
548
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
542
549
|
maxClaims: z.ZodNumber;
|
|
@@ -547,6 +554,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
547
554
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
548
555
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
549
556
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
557
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
550
558
|
}, z.ZodTypeAny, "passthrough">>;
|
|
551
559
|
creator: z.ZodObject<{
|
|
552
560
|
safeAddress: z.ZodString;
|
|
@@ -606,6 +614,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
606
614
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
607
615
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
608
616
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
617
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
609
618
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
610
619
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
611
620
|
maxClaims: z.ZodNumber;
|
|
@@ -616,6 +625,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
616
625
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
617
626
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
618
627
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
628
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
619
629
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
620
630
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
621
631
|
maxClaims: z.ZodNumber;
|
|
@@ -626,6 +636,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
626
636
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
627
637
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
628
638
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
639
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
629
640
|
}, z.ZodTypeAny, "passthrough">>;
|
|
630
641
|
creator: z.ZodObject<{
|
|
631
642
|
safeAddress: z.ZodString;
|
|
@@ -669,6 +680,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
669
680
|
submissionDeadlineTs?: number | undefined;
|
|
670
681
|
policyHook?: string | undefined;
|
|
671
682
|
requiredVerdicts?: number | undefined;
|
|
683
|
+
allowSolverSelfEvaluation?: boolean | undefined;
|
|
672
684
|
} & {
|
|
673
685
|
[k: string]: unknown;
|
|
674
686
|
};
|
|
@@ -724,6 +736,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
724
736
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
725
737
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
726
738
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
739
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
727
740
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
728
741
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
729
742
|
maxClaims: z.ZodNumber;
|
|
@@ -734,6 +747,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
734
747
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
735
748
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
736
749
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
750
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
737
751
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
738
752
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
739
753
|
maxClaims: z.ZodNumber;
|
|
@@ -744,6 +758,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
744
758
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
745
759
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
746
760
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
761
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
747
762
|
}, z.ZodTypeAny, "passthrough">>;
|
|
748
763
|
creator: z.ZodObject<{
|
|
749
764
|
safeAddress: z.ZodString;
|
|
@@ -781,6 +796,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
781
796
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
782
797
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
783
798
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
799
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
784
800
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
785
801
|
context?: Record<string, unknown> | undefined;
|
|
786
802
|
attemptId?: string | undefined;
|
|
@@ -817,6 +833,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
817
833
|
submissionDeadlineTs?: number | undefined;
|
|
818
834
|
policyHook?: string | undefined;
|
|
819
835
|
requiredVerdicts?: number | undefined;
|
|
836
|
+
allowSolverSelfEvaluation?: boolean | undefined;
|
|
820
837
|
} & {
|
|
821
838
|
[k: string]: unknown;
|
|
822
839
|
};
|
|
@@ -850,6 +867,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
850
867
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
851
868
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
852
869
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
870
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
853
871
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
854
872
|
context?: Record<string, unknown> | undefined;
|
|
855
873
|
attemptId?: string | undefined;
|
|
@@ -902,6 +920,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
902
920
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
903
921
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
904
922
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
923
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
905
924
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
906
925
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
907
926
|
maxClaims: z.ZodNumber;
|
|
@@ -912,6 +931,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
912
931
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
913
932
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
914
933
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
934
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
915
935
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
916
936
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
917
937
|
maxClaims: z.ZodNumber;
|
|
@@ -922,6 +942,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
922
942
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
923
943
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
924
944
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
945
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
925
946
|
}, z.ZodTypeAny, "passthrough">>;
|
|
926
947
|
creator: z.ZodObject<{
|
|
927
948
|
safeAddress: z.ZodString;
|
|
@@ -949,88 +970,12 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
949
970
|
/** Optional Base Sepolia stOLAS deployment artifact path */
|
|
950
971
|
testnetStolasDeploymentPath: z.ZodOptional<z.ZodString>;
|
|
951
972
|
/**
|
|
952
|
-
*
|
|
953
|
-
*
|
|
954
|
-
*
|
|
955
|
-
*
|
|
956
|
-
*/
|
|
957
|
-
jinnMviL1DeploymentPath: z.ZodOptional<z.ZodString>;
|
|
958
|
-
/**
|
|
959
|
-
* Optional deployment artifact for the v0 MVI L2 emitter
|
|
960
|
-
* (deployment-jinn-mvi-l2-{network}.json). Provides the
|
|
961
|
-
* TaskClaimEmitter address on the measurement chain (Base / Base Sepolia).
|
|
962
|
-
*/
|
|
963
|
-
jinnMviL2DeploymentPath: z.ZodOptional<z.ZodString>;
|
|
964
|
-
/**
|
|
965
|
-
* RPC endpoint(s) for the L1 governance chain (Ethereum / Sepolia) where
|
|
966
|
-
* the JinnDistributor lives. Accepts string or array form (see rpcUrl) and
|
|
967
|
-
* supports comma-separated env values. Testnet defaults to a public Sepolia
|
|
968
|
-
* RPC; mainnet requires an operator override when L1 submit mode is
|
|
969
|
-
* configured. Env: JINN_ETHEREUM_RPC_URL.
|
|
970
|
-
*/
|
|
971
|
-
ethereumRpcUrl: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
972
|
-
/**
|
|
973
|
-
* Optional archive RPC endpoint(s) for the L1 governance chain. Used for
|
|
974
|
-
* historical block lookups when constructing canonical-mode proofs. Accepts
|
|
975
|
-
* string or array form. Env: JINN_ETHEREUM_ARCHIVE_RPC_URL.
|
|
973
|
+
* Loop-watchdog auto-restart gate (#1043). Default OFF (the locked Option A
|
|
974
|
+
* decision): the watchdog always detects a stale loop and loud-logs + emits
|
|
975
|
+
* a `loop_watchdog_stale` event, but the non-zero process.exit recovery only
|
|
976
|
+
* fires when this is on. Env: JINN_WATCHDOG_AUTO_RESTART=1|true|yes.
|
|
976
977
|
*/
|
|
977
|
-
|
|
978
|
-
/**
|
|
979
|
-
* L1 network used by the cross-chain claim loop. 'sepolia' tracks Base
|
|
980
|
-
* Sepolia testnet; 'ethereum' tracks Base mainnet. Defaults to 'sepolia'
|
|
981
|
-
* during Phase 1b. Env: JINN_L1_NETWORK.
|
|
982
|
-
*/
|
|
983
|
-
jinnL1Network: z.ZodDefault<z.ZodEnum<["sepolia", "ethereum"]>>;
|
|
984
|
-
/**
|
|
985
|
-
* JinnDistributor address on the L1 governance chain. Required for
|
|
986
|
-
* jinnClaimSubmissionMode='submit'. When set for submit mode, ethereumRpcUrl
|
|
987
|
-
* MUST also be set. Resolved from jinnMviL1DeploymentPath when omitted;
|
|
988
|
-
* otherwise a manual override. Env: JINN_DISTRIBUTOR_ADDRESS.
|
|
989
|
-
*/
|
|
990
|
-
jinnDistributorAddress: z.ZodOptional<z.ZodString>;
|
|
991
|
-
/**
|
|
992
|
-
* TaskClaimEmitter address on the L2 measurement chain (Base / Base
|
|
993
|
-
* Sepolia). Resolved from jinnMviL2DeploymentPath when omitted.
|
|
994
|
-
* Env: JINN_CLAIM_EMITTER_ADDRESS.
|
|
995
|
-
*/
|
|
996
|
-
jinnClaimEmitterAddress: z.ZodOptional<z.ZodString>;
|
|
997
|
-
/**
|
|
998
|
-
* Messenger address on the L1 governance chain. Resolved from
|
|
999
|
-
* jinnMviL1DeploymentPath when omitted.
|
|
1000
|
-
* Env: JINN_MESSENGER_ADDRESS.
|
|
1001
|
-
*/
|
|
1002
|
-
jinnMessengerAddress: z.ZodOptional<z.ZodString>;
|
|
1003
|
-
/**
|
|
1004
|
-
* Messenger mode driving proof construction. `mock` submits MockMessenger
|
|
1005
|
-
* fixtures — required for automated Sepolia burn-in (`runOnce`). `canonical`
|
|
1006
|
-
* builds OP-Stack storage proofs for verifier-only checks; scheduled daemon
|
|
1007
|
-
* ticks **skip** canonical mode (multi-day finality) — use
|
|
1008
|
-
* `tsx scripts/verify-canonical-canary.ts` after finality instead. Defaults
|
|
1009
|
-
* to `canonical`.
|
|
1010
|
-
* Env: JINN_MESSENGER_MODE.
|
|
1011
|
-
*/
|
|
1012
|
-
jinnMessengerMode: z.ZodDefault<z.ZodEnum<["canonical", "mock"]>>;
|
|
1013
|
-
/**
|
|
1014
|
-
* Claim submission mode. `emit-only` only submits TaskClaimEmitter.emitClaim
|
|
1015
|
-
* on L2 and records the resulting ticket. `submit` continues into the L1
|
|
1016
|
-
* messenger/distributor path.
|
|
1017
|
-
* Env: JINN_CLAIM_SUBMISSION_MODE.
|
|
1018
|
-
*/
|
|
1019
|
-
jinnClaimSubmissionMode: z.ZodDefault<z.ZodEnum<["emit-only", "submit"]>>;
|
|
1020
|
-
/**
|
|
1021
|
-
* Explicit operator gate for the cross-chain JINN claim loop. The schema
|
|
1022
|
-
* default stays off for mainnet/unknown networks; loadConfig defaults this
|
|
1023
|
-
* on for testnet now that the emitter and standing relayer are live.
|
|
1024
|
-
* Env: JINN_CLAIM_LOOP_ENABLED=1|true|yes.
|
|
1025
|
-
*/
|
|
1026
|
-
jinnClaimLoopEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
1027
|
-
/**
|
|
1028
|
-
* How often the daemon ticks the cross-chain JINN claim loop (ms). Default
|
|
1029
|
-
* 3 600 000 (1 hour) — well below mainnet challenge windows while
|
|
1030
|
-
* minimising RPC/gas churn. Set to 0 to disable when the address is set.
|
|
1031
|
-
* Env: JINN_CLAIM_LOOP_INTERVAL_MS.
|
|
1032
|
-
*/
|
|
1033
|
-
jinnClaimLoopIntervalMs: z.ZodDefault<z.ZodNumber>;
|
|
978
|
+
watchdogAutoRestart: z.ZodDefault<z.ZodBoolean>;
|
|
1034
979
|
/** Staking mode: 'standard' uses stOLAS (no OLAS needed), 'self-bond' uses operator-provided OLAS. */
|
|
1035
980
|
stakingMode: z.ZodDefault<z.ZodEnum<["standard", "self-bond"]>>;
|
|
1036
981
|
/** Number of services to bootstrap and run. */
|
|
@@ -1056,6 +1001,21 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1056
1001
|
* Env: JINN_MIN_SAFE_ETH_WEI
|
|
1057
1002
|
*/
|
|
1058
1003
|
minSafeEthWei: z.ZodOptional<z.ZodString>;
|
|
1004
|
+
/**
|
|
1005
|
+
* Faucet top-up daily cap + cooldown (issue #560). Single source of truth
|
|
1006
|
+
* for the running-mode Dashboard "Top up from faucet" batch action, shared
|
|
1007
|
+
* by the daemon endpoint and surfaced to the SPA via GET /v1/setup/drip/quota.
|
|
1008
|
+
*
|
|
1009
|
+
* `faucetDailyTopupCap` — number of faucet drips a single operator click may
|
|
1010
|
+
* issue in one batch (and the per-24h ceiling per wallet). Env:
|
|
1011
|
+
* JINN_FAUCET_DAILY_TOPUP_CAP.
|
|
1012
|
+
*
|
|
1013
|
+
* `faucetTopupCooldownMs` — once the cap is reached, the top-up action is
|
|
1014
|
+
* disabled until this window elapses since the first call of that batch.
|
|
1015
|
+
* Env: JINN_FAUCET_TOPUP_COOLDOWN_MS.
|
|
1016
|
+
*/
|
|
1017
|
+
faucetDailyTopupCap: z.ZodDefault<z.ZodNumber>;
|
|
1018
|
+
faucetTopupCooldownMs: z.ZodDefault<z.ZodNumber>;
|
|
1059
1019
|
/**
|
|
1060
1020
|
* Operator-controlled Harness inventory.
|
|
1061
1021
|
*/
|
|
@@ -1129,6 +1089,25 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1129
1089
|
}, {
|
|
1130
1090
|
mode?: "train" | "frozen" | undefined;
|
|
1131
1091
|
}>>;
|
|
1092
|
+
/**
|
|
1093
|
+
* Mineable-trace retention consent (task-creator spec §10, decision D2).
|
|
1094
|
+
* Two independent, deliberate opt-in tiers:
|
|
1095
|
+
* - `consent` ('off' default) — retain contract fields (repo,
|
|
1096
|
+
* The single sharing consent (mono#1714): local capture, mining, and
|
|
1097
|
+
* distillation happen unconditionally (they never leave the machine), and
|
|
1098
|
+
* `share` governs only whether a mined task is published off the box.
|
|
1099
|
+
* Default is false — nothing derived from work leaves the machine unless
|
|
1100
|
+
* the operator opts in. Env: JINN_SHARE_CONSENT. Legacy
|
|
1101
|
+
* `consent`/`publishConsent` (and JINN_MINEABLE_PUBLISH_CONSENT) migrate to
|
|
1102
|
+
* `share` at load time (only the old publish bit maps).
|
|
1103
|
+
*/
|
|
1104
|
+
mineableTraces: z.ZodDefault<z.ZodObject<{
|
|
1105
|
+
share: z.ZodDefault<z.ZodBoolean>;
|
|
1106
|
+
}, "strip", z.ZodTypeAny, {
|
|
1107
|
+
share: boolean;
|
|
1108
|
+
}, {
|
|
1109
|
+
share?: boolean | undefined;
|
|
1110
|
+
}>>;
|
|
1132
1111
|
/**
|
|
1133
1112
|
* Manifest-keyed joined SolverNets.
|
|
1134
1113
|
*
|
|
@@ -1187,6 +1166,18 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1187
1166
|
plugins?: string[] | undefined;
|
|
1188
1167
|
disabledDefaultPlugins?: string[] | undefined;
|
|
1189
1168
|
}>>>;
|
|
1169
|
+
/**
|
|
1170
|
+
* Set true once the operator clicks "Enter dashboard" at the end of the
|
|
1171
|
+
* #983 guided onboarding takeover. Distinct from `joinedSolverNets` being
|
|
1172
|
+
* non-empty: a node can have a membership mid-onboarding (the first join
|
|
1173
|
+
* populates the map) yet not have finished harness/model selection. The SPA
|
|
1174
|
+
* gates the bootstrap→dashboard hand-off on this flag (see App.tsx), so the
|
|
1175
|
+
* first join no longer ejects the operator before the harness step.
|
|
1176
|
+
*
|
|
1177
|
+
* Written by POST /v1/operator/onboarding-complete (persisted to disk AND
|
|
1178
|
+
* mutated in-memory so GET /v1/bootstrap reflects it without a restart).
|
|
1179
|
+
*/
|
|
1180
|
+
onboardingComplete: z.ZodOptional<z.ZodBoolean>;
|
|
1190
1181
|
/**
|
|
1191
1182
|
* Trusted ed25519 publishers for external harness impls. The daemon
|
|
1192
1183
|
* refuses to load any external impl whose manifest signature is not
|
|
@@ -1216,12 +1207,20 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1216
1207
|
engine: z.ZodOptional<z.ZodObject<{
|
|
1217
1208
|
workingDirRoot: z.ZodOptional<z.ZodString>;
|
|
1218
1209
|
implStateDirRoot: z.ZodOptional<z.ZodString>;
|
|
1210
|
+
/**
|
|
1211
|
+
* Auto-load top-3 corpus solution records for the task's solverType
|
|
1212
|
+
* into task.context.corpusKnowledge before each restoration harness
|
|
1213
|
+
* spawn (#1393). Default true; env JINN_ENGINE_KNOWLEDGE_AUTOLOAD.
|
|
1214
|
+
*/
|
|
1215
|
+
knowledgeAutoload: z.ZodOptional<z.ZodBoolean>;
|
|
1219
1216
|
}, "strip", z.ZodTypeAny, {
|
|
1220
1217
|
workingDirRoot?: string | undefined;
|
|
1221
1218
|
implStateDirRoot?: string | undefined;
|
|
1219
|
+
knowledgeAutoload?: boolean | undefined;
|
|
1222
1220
|
}, {
|
|
1223
1221
|
workingDirRoot?: string | undefined;
|
|
1224
1222
|
implStateDirRoot?: string | undefined;
|
|
1223
|
+
knowledgeAutoload?: boolean | undefined;
|
|
1225
1224
|
}>>;
|
|
1226
1225
|
/**
|
|
1227
1226
|
* Operator-local artifact and donation configuration.
|
|
@@ -1292,16 +1291,45 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1292
1291
|
enabled?: boolean | undefined;
|
|
1293
1292
|
port?: number | undefined;
|
|
1294
1293
|
}>>;
|
|
1294
|
+
/**
|
|
1295
|
+
* Seller-side ML PII detection (Transformers.js NER, in-process) applied
|
|
1296
|
+
* before captures (and task trajectories) are published. Off by default:
|
|
1297
|
+
* the structural key policy + openredaction + secretlint/entropy stages
|
|
1298
|
+
* always scrub (the non-ML guarantee); this adds person/org/location NER
|
|
1299
|
+
* at the cost of a one-time model download. When enabled, a model-load
|
|
1300
|
+
* failure fails closed at the publish altitude — the trajectory is not
|
|
1301
|
+
* published — while the daemon's other loops keep running.
|
|
1302
|
+
* Env: JINN_CAPTURES_PII_DETECTION_ENABLED=1|true|yes,
|
|
1303
|
+
* JINN_CAPTURES_PII_DETECTION_MODEL=<hf-model-id>
|
|
1304
|
+
*/
|
|
1305
|
+
piiDetection: z.ZodDefault<z.ZodObject<{
|
|
1306
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1307
|
+
model: z.ZodOptional<z.ZodString>;
|
|
1308
|
+
}, "strip", z.ZodTypeAny, {
|
|
1309
|
+
enabled: boolean;
|
|
1310
|
+
model?: string | undefined;
|
|
1311
|
+
}, {
|
|
1312
|
+
model?: string | undefined;
|
|
1313
|
+
enabled?: boolean | undefined;
|
|
1314
|
+
}>>;
|
|
1295
1315
|
}, "strip", z.ZodTypeAny, {
|
|
1296
1316
|
llmProxy: {
|
|
1297
1317
|
enabled: boolean;
|
|
1298
1318
|
port: number;
|
|
1299
1319
|
};
|
|
1320
|
+
piiDetection: {
|
|
1321
|
+
enabled: boolean;
|
|
1322
|
+
model?: string | undefined;
|
|
1323
|
+
};
|
|
1300
1324
|
}, {
|
|
1301
1325
|
llmProxy?: {
|
|
1302
1326
|
enabled?: boolean | undefined;
|
|
1303
1327
|
port?: number | undefined;
|
|
1304
1328
|
} | undefined;
|
|
1329
|
+
piiDetection?: {
|
|
1330
|
+
model?: string | undefined;
|
|
1331
|
+
enabled?: boolean | undefined;
|
|
1332
|
+
} | undefined;
|
|
1305
1333
|
}>>;
|
|
1306
1334
|
/**
|
|
1307
1335
|
* Run idempotent legacy migrations at daemon startup (jinn-mono-jgp:
|
|
@@ -1370,6 +1398,69 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1370
1398
|
}, {
|
|
1371
1399
|
blockedCids?: string[] | undefined;
|
|
1372
1400
|
}>>;
|
|
1401
|
+
/**
|
|
1402
|
+
* Commit-echo harvest loop (task-creator v0). When enabled, the daemon scans
|
|
1403
|
+
* configured local git clones for fix-shaped commits and admits minted tasks.
|
|
1404
|
+
*
|
|
1405
|
+
* `sources` selects which harvest sources the loop mines each tick — absent
|
|
1406
|
+
* ⇒ `['commits']`, so existing configs behave identically. `'sessions'`
|
|
1407
|
+
* mines locally-captured task-creator sessions (local retention is
|
|
1408
|
+
* unconditional per mono#1714; whether a mined task is published off the box
|
|
1409
|
+
* is gated by `mineableTraces.share`, see above). Env: JINN_HARVEST_SOURCES
|
|
1410
|
+
* (comma-separated).
|
|
1411
|
+
*/
|
|
1412
|
+
harvest: z.ZodDefault<z.ZodObject<{
|
|
1413
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1414
|
+
intervalMs: z.ZodDefault<z.ZodNumber>;
|
|
1415
|
+
limitPerRepo: z.ZodDefault<z.ZodNumber>;
|
|
1416
|
+
publish: z.ZodDefault<z.ZodBoolean>;
|
|
1417
|
+
repos: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1418
|
+
path: z.ZodString;
|
|
1419
|
+
/** GitHub `owner/repo`; inferred from `git remote` when omitted. */
|
|
1420
|
+
repo: z.ZodOptional<z.ZodString>;
|
|
1421
|
+
remote: z.ZodOptional<z.ZodString>;
|
|
1422
|
+
/**
|
|
1423
|
+
* Operator-approved G0b recipe plus its published, attested
|
|
1424
|
+
* environment binding. Parsed strictly by the harvest adapter.
|
|
1425
|
+
*/
|
|
1426
|
+
explicitRecipe: z.ZodOptional<z.ZodUnknown>;
|
|
1427
|
+
}, "strip", z.ZodTypeAny, {
|
|
1428
|
+
path: string;
|
|
1429
|
+
repo?: string | undefined;
|
|
1430
|
+
remote?: string | undefined;
|
|
1431
|
+
explicitRecipe?: unknown;
|
|
1432
|
+
}, {
|
|
1433
|
+
path: string;
|
|
1434
|
+
repo?: string | undefined;
|
|
1435
|
+
remote?: string | undefined;
|
|
1436
|
+
explicitRecipe?: unknown;
|
|
1437
|
+
}>, "many">>;
|
|
1438
|
+
sources: z.ZodDefault<z.ZodArray<z.ZodEnum<["commits", "sessions"]>, "many">>;
|
|
1439
|
+
}, "strip", z.ZodTypeAny, {
|
|
1440
|
+
enabled: boolean;
|
|
1441
|
+
intervalMs: number;
|
|
1442
|
+
limitPerRepo: number;
|
|
1443
|
+
publish: boolean;
|
|
1444
|
+
repos: {
|
|
1445
|
+
path: string;
|
|
1446
|
+
repo?: string | undefined;
|
|
1447
|
+
remote?: string | undefined;
|
|
1448
|
+
explicitRecipe?: unknown;
|
|
1449
|
+
}[];
|
|
1450
|
+
sources: ("commits" | "sessions")[];
|
|
1451
|
+
}, {
|
|
1452
|
+
enabled?: boolean | undefined;
|
|
1453
|
+
intervalMs?: number | undefined;
|
|
1454
|
+
limitPerRepo?: number | undefined;
|
|
1455
|
+
publish?: boolean | undefined;
|
|
1456
|
+
repos?: {
|
|
1457
|
+
path: string;
|
|
1458
|
+
repo?: string | undefined;
|
|
1459
|
+
remote?: string | undefined;
|
|
1460
|
+
explicitRecipe?: unknown;
|
|
1461
|
+
}[] | undefined;
|
|
1462
|
+
sources?: ("commits" | "sessions")[] | undefined;
|
|
1463
|
+
}>>;
|
|
1373
1464
|
}, "strip", z.ZodTypeAny, {
|
|
1374
1465
|
network: "testnet" | "mainnet";
|
|
1375
1466
|
earningDir: string;
|
|
@@ -1409,6 +1500,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1409
1500
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
1410
1501
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
1411
1502
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
1503
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
1412
1504
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1413
1505
|
context?: Record<string, unknown> | undefined;
|
|
1414
1506
|
attemptId?: string | undefined;
|
|
@@ -1445,6 +1537,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1445
1537
|
submissionDeadlineTs?: number | undefined;
|
|
1446
1538
|
policyHook?: string | undefined;
|
|
1447
1539
|
requiredVerdicts?: number | undefined;
|
|
1540
|
+
allowSolverSelfEvaluation?: boolean | undefined;
|
|
1448
1541
|
} & {
|
|
1449
1542
|
[k: string]: unknown;
|
|
1450
1543
|
};
|
|
@@ -1457,431 +1550,26 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1457
1550
|
}[];
|
|
1458
1551
|
ipfsRegistryUrl: string;
|
|
1459
1552
|
ipfsGatewayUrl: string;
|
|
1460
|
-
|
|
1461
|
-
jinnMessengerMode: "canonical" | "mock";
|
|
1462
|
-
jinnClaimSubmissionMode: "emit-only" | "submit";
|
|
1463
|
-
jinnClaimLoopEnabled: boolean;
|
|
1464
|
-
jinnClaimLoopIntervalMs: number;
|
|
1553
|
+
watchdogAutoRestart: boolean;
|
|
1465
1554
|
stakingMode: "standard" | "self-bond";
|
|
1466
1555
|
targetServices: number;
|
|
1467
1556
|
debug: boolean;
|
|
1557
|
+
faucetDailyTopupCap: number;
|
|
1558
|
+
faucetTopupCooldownMs: number;
|
|
1468
1559
|
harness: {
|
|
1469
1560
|
mode: "train" | "frozen";
|
|
1470
1561
|
};
|
|
1562
|
+
mineableTraces: {
|
|
1563
|
+
share: boolean;
|
|
1564
|
+
};
|
|
1471
1565
|
captures: {
|
|
1472
1566
|
llmProxy: {
|
|
1473
1567
|
enabled: boolean;
|
|
1474
1568
|
port: number;
|
|
1475
1569
|
};
|
|
1476
|
-
|
|
1477
|
-
runLegacyMigrations: boolean;
|
|
1478
|
-
reputationEnabled: boolean;
|
|
1479
|
-
solverPlugins: {
|
|
1480
|
-
blockedCids: string[];
|
|
1481
|
-
};
|
|
1482
|
-
rpcUrl?: string | string[] | undefined;
|
|
1483
|
-
archiveRpcUrl?: string | string[] | undefined;
|
|
1484
|
-
l2ProofRpcUrl?: string | string[] | undefined;
|
|
1485
|
-
stateDir?: string | undefined;
|
|
1486
|
-
apiBindHost?: string | undefined;
|
|
1487
|
-
hermesPath?: string | undefined;
|
|
1488
|
-
hermesModel?: string | undefined;
|
|
1489
|
-
hermesProvider?: string | undefined;
|
|
1490
|
-
hermesBaseUrl?: string | undefined;
|
|
1491
|
-
codexPath?: string | undefined;
|
|
1492
|
-
runtimeMode?: "bare" | "docker-compose" | "container" | undefined;
|
|
1493
|
-
discovery?: {
|
|
1494
|
-
mode?: "http" | "embedded" | "onchain" | undefined;
|
|
1495
|
-
url?: string | undefined;
|
|
1496
|
-
fallbackToOnchain?: boolean | undefined;
|
|
1497
|
-
} | undefined;
|
|
1498
|
-
taskDiscoveryAllowedTaskIds?: string[] | undefined;
|
|
1499
|
-
taskDiscoveryOnchainFromBlock?: number | undefined;
|
|
1500
|
-
nodeEndpoint?: string | undefined;
|
|
1501
|
-
testnetL2DeploymentPath?: string | undefined;
|
|
1502
|
-
testnetL2TokenDeploymentPath?: string | undefined;
|
|
1503
|
-
testnetMechDeploymentPath?: string | undefined;
|
|
1504
|
-
testnetStolasDeploymentPath?: string | undefined;
|
|
1505
|
-
jinnMviL1DeploymentPath?: string | undefined;
|
|
1506
|
-
jinnMviL2DeploymentPath?: string | undefined;
|
|
1507
|
-
ethereumRpcUrl?: string | string[] | undefined;
|
|
1508
|
-
ethereumArchiveRpcUrl?: string | string[] | undefined;
|
|
1509
|
-
jinnDistributorAddress?: string | undefined;
|
|
1510
|
-
jinnClaimEmitterAddress?: string | undefined;
|
|
1511
|
-
jinnMessengerAddress?: string | undefined;
|
|
1512
|
-
masterEthDailyEstimateWei?: string | undefined;
|
|
1513
|
-
minEoaGasWei?: string | undefined;
|
|
1514
|
-
minSafeEthWei?: string | undefined;
|
|
1515
|
-
harnesses?: {
|
|
1516
|
-
default?: string | undefined;
|
|
1517
|
-
disabled?: string[] | undefined;
|
|
1518
|
-
externalImpls?: {
|
|
1519
|
-
name: string;
|
|
1520
|
-
entry: string;
|
|
1521
|
-
package?: string | undefined;
|
|
1522
|
-
version?: string | undefined;
|
|
1523
|
-
}[] | undefined;
|
|
1524
|
-
} | undefined;
|
|
1525
|
-
joinedSolverNets?: Record<string, {
|
|
1526
|
-
manifestCid: string;
|
|
1527
|
-
roles: ("solver" | "evaluator")[];
|
|
1528
|
-
plugins: string[];
|
|
1529
|
-
disabledDefaultPlugins: string[];
|
|
1530
|
-
name?: string | undefined;
|
|
1531
|
-
harness?: string | undefined;
|
|
1532
|
-
contract?: {
|
|
1533
|
-
id: string;
|
|
1534
|
-
version: string;
|
|
1535
|
-
} | undefined;
|
|
1536
|
-
model?: string | undefined;
|
|
1537
|
-
}> | undefined;
|
|
1538
|
-
trustedImplSigners?: {
|
|
1539
|
-
publicKey: string;
|
|
1540
|
-
alg: "ed25519";
|
|
1541
|
-
label?: string | undefined;
|
|
1542
|
-
}[] | undefined;
|
|
1543
|
-
engine?: {
|
|
1544
|
-
workingDirRoot?: string | undefined;
|
|
1545
|
-
implStateDirRoot?: string | undefined;
|
|
1546
|
-
} | undefined;
|
|
1547
|
-
operator?: {
|
|
1548
|
-
defaultPriceUsdc: string;
|
|
1549
|
-
perArtifactTypePrice: Record<string, string>;
|
|
1550
|
-
donation: {
|
|
1551
|
-
enabled: boolean;
|
|
1552
|
-
};
|
|
1553
|
-
publicEndpoint?: string | undefined;
|
|
1554
|
-
} | undefined;
|
|
1555
|
-
identityRegistryAddress?: string | undefined;
|
|
1556
|
-
validationRegistryAddress?: string | undefined;
|
|
1557
|
-
spendCaps?: Record<string, number> | undefined;
|
|
1558
|
-
}, {
|
|
1559
|
-
network?: "testnet" | "mainnet" | undefined;
|
|
1560
|
-
rpcUrl?: string | string[] | undefined;
|
|
1561
|
-
archiveRpcUrl?: string | string[] | undefined;
|
|
1562
|
-
l2ProofRpcUrl?: string | string[] | undefined;
|
|
1563
|
-
stateDir?: string | undefined;
|
|
1564
|
-
earningDir?: string | undefined;
|
|
1565
|
-
dbPath?: string | undefined;
|
|
1566
|
-
pollIntervalMs?: number | undefined;
|
|
1567
|
-
rewardClaimIntervalMs?: number | undefined;
|
|
1568
|
-
balanceTopupIntervalMs?: number | undefined;
|
|
1569
|
-
evictionCheckIntervalMs?: number | undefined;
|
|
1570
|
-
checkpointIntervalMs?: number | undefined;
|
|
1571
|
-
apiPort?: number | undefined;
|
|
1572
|
-
apiBindHost?: string | undefined;
|
|
1573
|
-
claudePath?: string | undefined;
|
|
1574
|
-
claudeModel?: string | undefined;
|
|
1575
|
-
hermesPath?: string | undefined;
|
|
1576
|
-
hermesModel?: string | undefined;
|
|
1577
|
-
hermesProvider?: string | undefined;
|
|
1578
|
-
hermesBaseUrl?: string | undefined;
|
|
1579
|
-
hermesDoctorTimeoutMs?: number | undefined;
|
|
1580
|
-
codexPath?: string | undefined;
|
|
1581
|
-
codexDoctorTimeoutMs?: number | undefined;
|
|
1582
|
-
runtimeMode?: "bare" | "docker-compose" | "container" | undefined;
|
|
1583
|
-
peers?: string | string[] | undefined;
|
|
1584
|
-
discovery?: {
|
|
1585
|
-
mode?: "http" | "embedded" | "onchain" | undefined;
|
|
1586
|
-
url?: string | undefined;
|
|
1587
|
-
fallbackToOnchain?: boolean | undefined;
|
|
1588
|
-
} | undefined;
|
|
1589
|
-
taskDiscoveryAllowedTaskIds?: string[] | undefined;
|
|
1590
|
-
taskDiscoveryOnchainFromBlock?: number | undefined;
|
|
1591
|
-
nodeEndpoint?: string | undefined;
|
|
1592
|
-
tasks?: {
|
|
1593
|
-
id?: string | undefined;
|
|
1594
|
-
solverType?: string | undefined;
|
|
1595
|
-
solverNetManifestCid?: string | undefined;
|
|
1596
|
-
contractId?: string | undefined;
|
|
1597
|
-
contractVersion?: string | undefined;
|
|
1598
|
-
role?: "restoration" | "evaluation" | undefined;
|
|
1599
|
-
description?: string | undefined;
|
|
1600
|
-
window?: {
|
|
1601
|
-
startTs: number;
|
|
1602
|
-
endTs: number;
|
|
1603
|
-
} | undefined;
|
|
1604
|
-
spec?: Record<string, unknown> | undefined;
|
|
1605
|
-
eligibility?: Record<string, unknown> | undefined;
|
|
1606
|
-
claimPolicy?: z.objectInputType<{
|
|
1607
|
-
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
1608
|
-
maxClaims: z.ZodNumber;
|
|
1609
|
-
maxClaimsPerOperator: z.ZodDefault<z.ZodNumber>;
|
|
1610
|
-
claimWindowStartTs: z.ZodOptional<z.ZodNumber>;
|
|
1611
|
-
claimWindowEndTs: z.ZodOptional<z.ZodNumber>;
|
|
1612
|
-
submissionDeadlineTs: z.ZodOptional<z.ZodNumber>;
|
|
1613
|
-
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
1614
|
-
policyHook: z.ZodOptional<z.ZodString>;
|
|
1615
|
-
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
1616
|
-
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1617
|
-
context?: Record<string, unknown> | undefined;
|
|
1618
|
-
attemptId?: string | undefined;
|
|
1619
|
-
attemptNumber?: number | undefined;
|
|
1620
|
-
restorationRequestId?: string | undefined;
|
|
1621
|
-
signedTask?: z.objectInputType<{
|
|
1622
|
-
signature: z.ZodObject<{
|
|
1623
|
-
algo: z.ZodLiteral<"secp256k1">;
|
|
1624
|
-
signer: z.ZodString;
|
|
1625
|
-
hash: z.ZodString;
|
|
1626
|
-
sig: z.ZodString;
|
|
1627
|
-
}, "strip", z.ZodTypeAny, {
|
|
1628
|
-
hash: string;
|
|
1629
|
-
algo: "secp256k1";
|
|
1630
|
-
signer: string;
|
|
1631
|
-
sig: string;
|
|
1632
|
-
}, {
|
|
1633
|
-
hash: string;
|
|
1634
|
-
algo: "secp256k1";
|
|
1635
|
-
signer: string;
|
|
1636
|
-
sig: string;
|
|
1637
|
-
}>;
|
|
1638
|
-
schemaVersion: z.ZodLiteral<"task.v1">;
|
|
1639
|
-
id: z.ZodString;
|
|
1640
|
-
solverType: z.ZodString;
|
|
1641
|
-
solverNetManifestCid: z.ZodString;
|
|
1642
|
-
contractId: z.ZodString;
|
|
1643
|
-
contractVersion: z.ZodString;
|
|
1644
|
-
role: z.ZodDefault<z.ZodEnum<["restoration", "evaluation"]>>;
|
|
1645
|
-
description: z.ZodString;
|
|
1646
|
-
window: z.ZodObject<{
|
|
1647
|
-
startTs: z.ZodNumber;
|
|
1648
|
-
endTs: z.ZodNumber;
|
|
1649
|
-
}, "strip", z.ZodTypeAny, {
|
|
1650
|
-
startTs: number;
|
|
1651
|
-
endTs: number;
|
|
1652
|
-
}, {
|
|
1653
|
-
startTs: number;
|
|
1654
|
-
endTs: number;
|
|
1655
|
-
}>;
|
|
1656
|
-
spec: z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, Record<string, unknown>>;
|
|
1657
|
-
eligibility: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
1658
|
-
claimPolicy: z.ZodObject<{
|
|
1659
|
-
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
1660
|
-
maxClaims: z.ZodNumber;
|
|
1661
|
-
maxClaimsPerOperator: z.ZodDefault<z.ZodNumber>;
|
|
1662
|
-
claimWindowStartTs: z.ZodOptional<z.ZodNumber>;
|
|
1663
|
-
claimWindowEndTs: z.ZodOptional<z.ZodNumber>;
|
|
1664
|
-
submissionDeadlineTs: z.ZodOptional<z.ZodNumber>;
|
|
1665
|
-
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
1666
|
-
policyHook: z.ZodOptional<z.ZodString>;
|
|
1667
|
-
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
1668
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1669
|
-
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
1670
|
-
maxClaims: z.ZodNumber;
|
|
1671
|
-
maxClaimsPerOperator: z.ZodDefault<z.ZodNumber>;
|
|
1672
|
-
claimWindowStartTs: z.ZodOptional<z.ZodNumber>;
|
|
1673
|
-
claimWindowEndTs: z.ZodOptional<z.ZodNumber>;
|
|
1674
|
-
submissionDeadlineTs: z.ZodOptional<z.ZodNumber>;
|
|
1675
|
-
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
1676
|
-
policyHook: z.ZodOptional<z.ZodString>;
|
|
1677
|
-
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
1678
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1679
|
-
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
1680
|
-
maxClaims: z.ZodNumber;
|
|
1681
|
-
maxClaimsPerOperator: z.ZodDefault<z.ZodNumber>;
|
|
1682
|
-
claimWindowStartTs: z.ZodOptional<z.ZodNumber>;
|
|
1683
|
-
claimWindowEndTs: z.ZodOptional<z.ZodNumber>;
|
|
1684
|
-
submissionDeadlineTs: z.ZodOptional<z.ZodNumber>;
|
|
1685
|
-
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
1686
|
-
policyHook: z.ZodOptional<z.ZodString>;
|
|
1687
|
-
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
1688
|
-
}, z.ZodTypeAny, "passthrough">>;
|
|
1689
|
-
creator: z.ZodObject<{
|
|
1690
|
-
safeAddress: z.ZodString;
|
|
1691
|
-
agentEoa: z.ZodString;
|
|
1692
|
-
}, "strip", z.ZodTypeAny, {
|
|
1693
|
-
safeAddress: string;
|
|
1694
|
-
agentEoa: string;
|
|
1695
|
-
}, {
|
|
1696
|
-
safeAddress: string;
|
|
1697
|
-
agentEoa: string;
|
|
1698
|
-
}>;
|
|
1699
|
-
createdAt: z.ZodNumber;
|
|
1700
|
-
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1701
|
-
}[] | undefined;
|
|
1702
|
-
ipfsRegistryUrl?: string | undefined;
|
|
1703
|
-
ipfsGatewayUrl?: string | undefined;
|
|
1704
|
-
testnetL2DeploymentPath?: string | undefined;
|
|
1705
|
-
testnetL2TokenDeploymentPath?: string | undefined;
|
|
1706
|
-
testnetMechDeploymentPath?: string | undefined;
|
|
1707
|
-
testnetStolasDeploymentPath?: string | undefined;
|
|
1708
|
-
jinnMviL1DeploymentPath?: string | undefined;
|
|
1709
|
-
jinnMviL2DeploymentPath?: string | undefined;
|
|
1710
|
-
ethereumRpcUrl?: string | string[] | undefined;
|
|
1711
|
-
ethereumArchiveRpcUrl?: string | string[] | undefined;
|
|
1712
|
-
jinnL1Network?: "sepolia" | "ethereum" | undefined;
|
|
1713
|
-
jinnDistributorAddress?: string | undefined;
|
|
1714
|
-
jinnClaimEmitterAddress?: string | undefined;
|
|
1715
|
-
jinnMessengerAddress?: string | undefined;
|
|
1716
|
-
jinnMessengerMode?: "canonical" | "mock" | undefined;
|
|
1717
|
-
jinnClaimSubmissionMode?: "emit-only" | "submit" | undefined;
|
|
1718
|
-
jinnClaimLoopEnabled?: boolean | undefined;
|
|
1719
|
-
jinnClaimLoopIntervalMs?: number | undefined;
|
|
1720
|
-
stakingMode?: "standard" | "self-bond" | undefined;
|
|
1721
|
-
targetServices?: number | undefined;
|
|
1722
|
-
debug?: boolean | undefined;
|
|
1723
|
-
masterEthDailyEstimateWei?: string | undefined;
|
|
1724
|
-
minEoaGasWei?: string | undefined;
|
|
1725
|
-
minSafeEthWei?: string | undefined;
|
|
1726
|
-
harnesses?: {
|
|
1727
|
-
default?: string | undefined;
|
|
1728
|
-
disabled?: string[] | undefined;
|
|
1729
|
-
externalImpls?: {
|
|
1730
|
-
name: string;
|
|
1731
|
-
entry: string;
|
|
1732
|
-
package?: string | undefined;
|
|
1733
|
-
version?: string | undefined;
|
|
1734
|
-
}[] | undefined;
|
|
1735
|
-
} | undefined;
|
|
1736
|
-
harness?: {
|
|
1737
|
-
mode?: "train" | "frozen" | undefined;
|
|
1738
|
-
} | undefined;
|
|
1739
|
-
joinedSolverNets?: Record<string, {
|
|
1740
|
-
manifestCid: string;
|
|
1741
|
-
roles: ("solver" | "evaluator")[];
|
|
1742
|
-
name?: string | undefined;
|
|
1743
|
-
harness?: string | undefined;
|
|
1744
|
-
contract?: {
|
|
1745
|
-
id: string;
|
|
1746
|
-
version: string;
|
|
1747
|
-
} | undefined;
|
|
1748
|
-
model?: string | undefined;
|
|
1749
|
-
plugins?: string[] | undefined;
|
|
1750
|
-
disabledDefaultPlugins?: string[] | undefined;
|
|
1751
|
-
}> | undefined;
|
|
1752
|
-
trustedImplSigners?: {
|
|
1753
|
-
publicKey: string;
|
|
1754
|
-
alg: "ed25519";
|
|
1755
|
-
label?: string | undefined;
|
|
1756
|
-
}[] | undefined;
|
|
1757
|
-
engine?: {
|
|
1758
|
-
workingDirRoot?: string | undefined;
|
|
1759
|
-
implStateDirRoot?: string | undefined;
|
|
1760
|
-
} | undefined;
|
|
1761
|
-
operator?: {
|
|
1762
|
-
publicEndpoint?: string | undefined;
|
|
1763
|
-
defaultPriceUsdc?: string | undefined;
|
|
1764
|
-
perArtifactTypePrice?: Record<string, string> | undefined;
|
|
1765
|
-
donation?: {
|
|
1766
|
-
enabled?: boolean | undefined;
|
|
1767
|
-
} | undefined;
|
|
1768
|
-
} | undefined;
|
|
1769
|
-
captures?: {
|
|
1770
|
-
llmProxy?: {
|
|
1771
|
-
enabled?: boolean | undefined;
|
|
1772
|
-
port?: number | undefined;
|
|
1773
|
-
} | undefined;
|
|
1774
|
-
} | undefined;
|
|
1775
|
-
runLegacyMigrations?: boolean | undefined;
|
|
1776
|
-
identityRegistryAddress?: string | undefined;
|
|
1777
|
-
validationRegistryAddress?: string | undefined;
|
|
1778
|
-
reputationEnabled?: boolean | undefined;
|
|
1779
|
-
spendCaps?: Record<string, number> | undefined;
|
|
1780
|
-
solverPlugins?: {
|
|
1781
|
-
blockedCids?: string[] | undefined;
|
|
1782
|
-
} | undefined;
|
|
1783
|
-
}>, {
|
|
1784
|
-
network: "testnet" | "mainnet";
|
|
1785
|
-
earningDir: string;
|
|
1786
|
-
dbPath: string;
|
|
1787
|
-
pollIntervalMs: number;
|
|
1788
|
-
rewardClaimIntervalMs: number;
|
|
1789
|
-
balanceTopupIntervalMs: number;
|
|
1790
|
-
evictionCheckIntervalMs: number;
|
|
1791
|
-
checkpointIntervalMs: number;
|
|
1792
|
-
apiPort: number;
|
|
1793
|
-
claudePath: string;
|
|
1794
|
-
claudeModel: string;
|
|
1795
|
-
hermesDoctorTimeoutMs: number;
|
|
1796
|
-
codexDoctorTimeoutMs: number;
|
|
1797
|
-
peers: string[];
|
|
1798
|
-
tasks: {
|
|
1799
|
-
id?: string | undefined;
|
|
1800
|
-
solverType?: string | undefined;
|
|
1801
|
-
solverNetManifestCid?: string | undefined;
|
|
1802
|
-
contractId?: string | undefined;
|
|
1803
|
-
contractVersion?: string | undefined;
|
|
1804
|
-
role?: "restoration" | "evaluation" | undefined;
|
|
1805
|
-
description?: string | undefined;
|
|
1806
|
-
window?: {
|
|
1807
|
-
startTs: number;
|
|
1808
|
-
endTs: number;
|
|
1809
|
-
} | undefined;
|
|
1810
|
-
spec?: Record<string, unknown> | undefined;
|
|
1811
|
-
eligibility?: Record<string, unknown> | undefined;
|
|
1812
|
-
claimPolicy?: z.objectOutputType<{
|
|
1813
|
-
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
1814
|
-
maxClaims: z.ZodNumber;
|
|
1815
|
-
maxClaimsPerOperator: z.ZodDefault<z.ZodNumber>;
|
|
1816
|
-
claimWindowStartTs: z.ZodOptional<z.ZodNumber>;
|
|
1817
|
-
claimWindowEndTs: z.ZodOptional<z.ZodNumber>;
|
|
1818
|
-
submissionDeadlineTs: z.ZodOptional<z.ZodNumber>;
|
|
1819
|
-
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
1820
|
-
policyHook: z.ZodOptional<z.ZodString>;
|
|
1821
|
-
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
1822
|
-
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1823
|
-
context?: Record<string, unknown> | undefined;
|
|
1824
|
-
attemptId?: string | undefined;
|
|
1825
|
-
attemptNumber?: number | undefined;
|
|
1826
|
-
restorationRequestId?: string | undefined;
|
|
1827
|
-
signedTask?: {
|
|
1828
|
-
id: string;
|
|
1829
|
-
signature: {
|
|
1830
|
-
hash: string;
|
|
1831
|
-
algo: "secp256k1";
|
|
1832
|
-
signer: string;
|
|
1833
|
-
sig: string;
|
|
1834
|
-
};
|
|
1835
|
-
schemaVersion: "task.v1";
|
|
1836
|
-
solverType: string;
|
|
1837
|
-
solverNetManifestCid: string;
|
|
1838
|
-
contractId: string;
|
|
1839
|
-
contractVersion: string;
|
|
1840
|
-
role: "restoration" | "evaluation";
|
|
1841
|
-
description: string;
|
|
1842
|
-
window: {
|
|
1843
|
-
startTs: number;
|
|
1844
|
-
endTs: number;
|
|
1845
|
-
};
|
|
1846
|
-
spec: Record<string, unknown>;
|
|
1847
|
-
eligibility: Record<string, unknown>;
|
|
1848
|
-
claimPolicy: {
|
|
1849
|
-
mode: "exclusive" | "parallel";
|
|
1850
|
-
maxClaims: number;
|
|
1851
|
-
maxClaimsPerOperator: number;
|
|
1852
|
-
claimLeaseTtlSeconds: number;
|
|
1853
|
-
claimWindowStartTs?: number | undefined;
|
|
1854
|
-
claimWindowEndTs?: number | undefined;
|
|
1855
|
-
submissionDeadlineTs?: number | undefined;
|
|
1856
|
-
policyHook?: string | undefined;
|
|
1857
|
-
requiredVerdicts?: number | undefined;
|
|
1858
|
-
} & {
|
|
1859
|
-
[k: string]: unknown;
|
|
1860
|
-
};
|
|
1861
|
-
creator: {
|
|
1862
|
-
safeAddress: string;
|
|
1863
|
-
agentEoa: string;
|
|
1864
|
-
};
|
|
1865
|
-
createdAt: number;
|
|
1866
|
-
} | undefined;
|
|
1867
|
-
}[];
|
|
1868
|
-
ipfsRegistryUrl: string;
|
|
1869
|
-
ipfsGatewayUrl: string;
|
|
1870
|
-
jinnL1Network: "sepolia" | "ethereum";
|
|
1871
|
-
jinnMessengerMode: "canonical" | "mock";
|
|
1872
|
-
jinnClaimSubmissionMode: "emit-only" | "submit";
|
|
1873
|
-
jinnClaimLoopEnabled: boolean;
|
|
1874
|
-
jinnClaimLoopIntervalMs: number;
|
|
1875
|
-
stakingMode: "standard" | "self-bond";
|
|
1876
|
-
targetServices: number;
|
|
1877
|
-
debug: boolean;
|
|
1878
|
-
harness: {
|
|
1879
|
-
mode: "train" | "frozen";
|
|
1880
|
-
};
|
|
1881
|
-
captures: {
|
|
1882
|
-
llmProxy: {
|
|
1570
|
+
piiDetection: {
|
|
1883
1571
|
enabled: boolean;
|
|
1884
|
-
|
|
1572
|
+
model?: string | undefined;
|
|
1885
1573
|
};
|
|
1886
1574
|
};
|
|
1887
1575
|
runLegacyMigrations: boolean;
|
|
@@ -1889,9 +1577,21 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1889
1577
|
solverPlugins: {
|
|
1890
1578
|
blockedCids: string[];
|
|
1891
1579
|
};
|
|
1580
|
+
harvest: {
|
|
1581
|
+
enabled: boolean;
|
|
1582
|
+
intervalMs: number;
|
|
1583
|
+
limitPerRepo: number;
|
|
1584
|
+
publish: boolean;
|
|
1585
|
+
repos: {
|
|
1586
|
+
path: string;
|
|
1587
|
+
repo?: string | undefined;
|
|
1588
|
+
remote?: string | undefined;
|
|
1589
|
+
explicitRecipe?: unknown;
|
|
1590
|
+
}[];
|
|
1591
|
+
sources: ("commits" | "sessions")[];
|
|
1592
|
+
};
|
|
1892
1593
|
rpcUrl?: string | string[] | undefined;
|
|
1893
1594
|
archiveRpcUrl?: string | string[] | undefined;
|
|
1894
|
-
l2ProofRpcUrl?: string | string[] | undefined;
|
|
1895
1595
|
stateDir?: string | undefined;
|
|
1896
1596
|
apiBindHost?: string | undefined;
|
|
1897
1597
|
hermesPath?: string | undefined;
|
|
@@ -1912,13 +1612,6 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1912
1612
|
testnetL2TokenDeploymentPath?: string | undefined;
|
|
1913
1613
|
testnetMechDeploymentPath?: string | undefined;
|
|
1914
1614
|
testnetStolasDeploymentPath?: string | undefined;
|
|
1915
|
-
jinnMviL1DeploymentPath?: string | undefined;
|
|
1916
|
-
jinnMviL2DeploymentPath?: string | undefined;
|
|
1917
|
-
ethereumRpcUrl?: string | string[] | undefined;
|
|
1918
|
-
ethereumArchiveRpcUrl?: string | string[] | undefined;
|
|
1919
|
-
jinnDistributorAddress?: string | undefined;
|
|
1920
|
-
jinnClaimEmitterAddress?: string | undefined;
|
|
1921
|
-
jinnMessengerAddress?: string | undefined;
|
|
1922
1615
|
masterEthDailyEstimateWei?: string | undefined;
|
|
1923
1616
|
minEoaGasWei?: string | undefined;
|
|
1924
1617
|
minSafeEthWei?: string | undefined;
|
|
@@ -1945,6 +1638,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1945
1638
|
} | undefined;
|
|
1946
1639
|
model?: string | undefined;
|
|
1947
1640
|
}> | undefined;
|
|
1641
|
+
onboardingComplete?: boolean | undefined;
|
|
1948
1642
|
trustedImplSigners?: {
|
|
1949
1643
|
publicKey: string;
|
|
1950
1644
|
alg: "ed25519";
|
|
@@ -1953,6 +1647,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1953
1647
|
engine?: {
|
|
1954
1648
|
workingDirRoot?: string | undefined;
|
|
1955
1649
|
implStateDirRoot?: string | undefined;
|
|
1650
|
+
knowledgeAutoload?: boolean | undefined;
|
|
1956
1651
|
} | undefined;
|
|
1957
1652
|
operator?: {
|
|
1958
1653
|
defaultPriceUsdc: string;
|
|
@@ -1969,7 +1664,6 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1969
1664
|
network?: "testnet" | "mainnet" | undefined;
|
|
1970
1665
|
rpcUrl?: string | string[] | undefined;
|
|
1971
1666
|
archiveRpcUrl?: string | string[] | undefined;
|
|
1972
|
-
l2ProofRpcUrl?: string | string[] | undefined;
|
|
1973
1667
|
stateDir?: string | undefined;
|
|
1974
1668
|
earningDir?: string | undefined;
|
|
1975
1669
|
dbPath?: string | undefined;
|
|
@@ -2023,6 +1717,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2023
1717
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
2024
1718
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
2025
1719
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
1720
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
2026
1721
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2027
1722
|
context?: Record<string, unknown> | undefined;
|
|
2028
1723
|
attemptId?: string | undefined;
|
|
@@ -2075,6 +1770,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2075
1770
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
2076
1771
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
2077
1772
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
1773
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
2078
1774
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2079
1775
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
2080
1776
|
maxClaims: z.ZodNumber;
|
|
@@ -2085,6 +1781,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2085
1781
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
2086
1782
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
2087
1783
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
1784
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
2088
1785
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2089
1786
|
mode: z.ZodDefault<z.ZodEnum<["exclusive", "parallel"]>>;
|
|
2090
1787
|
maxClaims: z.ZodNumber;
|
|
@@ -2095,6 +1792,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2095
1792
|
claimLeaseTtlSeconds: z.ZodDefault<z.ZodNumber>;
|
|
2096
1793
|
policyHook: z.ZodOptional<z.ZodString>;
|
|
2097
1794
|
requiredVerdicts: z.ZodOptional<z.ZodNumber>;
|
|
1795
|
+
allowSolverSelfEvaluation: z.ZodOptional<z.ZodBoolean>;
|
|
2098
1796
|
}, z.ZodTypeAny, "passthrough">>;
|
|
2099
1797
|
creator: z.ZodObject<{
|
|
2100
1798
|
safeAddress: z.ZodString;
|
|
@@ -2115,24 +1813,15 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2115
1813
|
testnetL2TokenDeploymentPath?: string | undefined;
|
|
2116
1814
|
testnetMechDeploymentPath?: string | undefined;
|
|
2117
1815
|
testnetStolasDeploymentPath?: string | undefined;
|
|
2118
|
-
|
|
2119
|
-
jinnMviL2DeploymentPath?: string | undefined;
|
|
2120
|
-
ethereumRpcUrl?: string | string[] | undefined;
|
|
2121
|
-
ethereumArchiveRpcUrl?: string | string[] | undefined;
|
|
2122
|
-
jinnL1Network?: "sepolia" | "ethereum" | undefined;
|
|
2123
|
-
jinnDistributorAddress?: string | undefined;
|
|
2124
|
-
jinnClaimEmitterAddress?: string | undefined;
|
|
2125
|
-
jinnMessengerAddress?: string | undefined;
|
|
2126
|
-
jinnMessengerMode?: "canonical" | "mock" | undefined;
|
|
2127
|
-
jinnClaimSubmissionMode?: "emit-only" | "submit" | undefined;
|
|
2128
|
-
jinnClaimLoopEnabled?: boolean | undefined;
|
|
2129
|
-
jinnClaimLoopIntervalMs?: number | undefined;
|
|
1816
|
+
watchdogAutoRestart?: boolean | undefined;
|
|
2130
1817
|
stakingMode?: "standard" | "self-bond" | undefined;
|
|
2131
1818
|
targetServices?: number | undefined;
|
|
2132
1819
|
debug?: boolean | undefined;
|
|
2133
1820
|
masterEthDailyEstimateWei?: string | undefined;
|
|
2134
1821
|
minEoaGasWei?: string | undefined;
|
|
2135
1822
|
minSafeEthWei?: string | undefined;
|
|
1823
|
+
faucetDailyTopupCap?: number | undefined;
|
|
1824
|
+
faucetTopupCooldownMs?: number | undefined;
|
|
2136
1825
|
harnesses?: {
|
|
2137
1826
|
default?: string | undefined;
|
|
2138
1827
|
disabled?: string[] | undefined;
|
|
@@ -2146,6 +1835,9 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2146
1835
|
harness?: {
|
|
2147
1836
|
mode?: "train" | "frozen" | undefined;
|
|
2148
1837
|
} | undefined;
|
|
1838
|
+
mineableTraces?: {
|
|
1839
|
+
share?: boolean | undefined;
|
|
1840
|
+
} | undefined;
|
|
2149
1841
|
joinedSolverNets?: Record<string, {
|
|
2150
1842
|
manifestCid: string;
|
|
2151
1843
|
roles: ("solver" | "evaluator")[];
|
|
@@ -2159,6 +1851,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2159
1851
|
plugins?: string[] | undefined;
|
|
2160
1852
|
disabledDefaultPlugins?: string[] | undefined;
|
|
2161
1853
|
}> | undefined;
|
|
1854
|
+
onboardingComplete?: boolean | undefined;
|
|
2162
1855
|
trustedImplSigners?: {
|
|
2163
1856
|
publicKey: string;
|
|
2164
1857
|
alg: "ed25519";
|
|
@@ -2167,6 +1860,7 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2167
1860
|
engine?: {
|
|
2168
1861
|
workingDirRoot?: string | undefined;
|
|
2169
1862
|
implStateDirRoot?: string | undefined;
|
|
1863
|
+
knowledgeAutoload?: boolean | undefined;
|
|
2170
1864
|
} | undefined;
|
|
2171
1865
|
operator?: {
|
|
2172
1866
|
publicEndpoint?: string | undefined;
|
|
@@ -2181,6 +1875,10 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2181
1875
|
enabled?: boolean | undefined;
|
|
2182
1876
|
port?: number | undefined;
|
|
2183
1877
|
} | undefined;
|
|
1878
|
+
piiDetection?: {
|
|
1879
|
+
model?: string | undefined;
|
|
1880
|
+
enabled?: boolean | undefined;
|
|
1881
|
+
} | undefined;
|
|
2184
1882
|
} | undefined;
|
|
2185
1883
|
runLegacyMigrations?: boolean | undefined;
|
|
2186
1884
|
identityRegistryAddress?: string | undefined;
|
|
@@ -2190,6 +1888,19 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2190
1888
|
solverPlugins?: {
|
|
2191
1889
|
blockedCids?: string[] | undefined;
|
|
2192
1890
|
} | undefined;
|
|
1891
|
+
harvest?: {
|
|
1892
|
+
enabled?: boolean | undefined;
|
|
1893
|
+
intervalMs?: number | undefined;
|
|
1894
|
+
limitPerRepo?: number | undefined;
|
|
1895
|
+
publish?: boolean | undefined;
|
|
1896
|
+
repos?: {
|
|
1897
|
+
path: string;
|
|
1898
|
+
repo?: string | undefined;
|
|
1899
|
+
remote?: string | undefined;
|
|
1900
|
+
explicitRecipe?: unknown;
|
|
1901
|
+
}[] | undefined;
|
|
1902
|
+
sources?: ("commits" | "sessions")[] | undefined;
|
|
1903
|
+
} | undefined;
|
|
2193
1904
|
}>;
|
|
2194
1905
|
/**
|
|
2195
1906
|
* JinnConfig with rpcUrl guaranteed to be resolved (never undefined) and tasks
|
|
@@ -2202,21 +1913,16 @@ export declare const JinnConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2202
1913
|
* which is what `buildFallbackTransport()` consumes. Same shape for the L1
|
|
2203
1914
|
* (ethereum) and optional archive/proof variants.
|
|
2204
1915
|
*/
|
|
2205
|
-
export type JinnConfig = Omit<z.infer<typeof JinnConfigSchema>, 'rpcUrl' | 'archiveRpcUrl' | '
|
|
1916
|
+
export type JinnConfig = Omit<z.infer<typeof JinnConfigSchema>, 'rpcUrl' | 'archiveRpcUrl' | 'tasks' | 'engine'> & {
|
|
2206
1917
|
rpcUrl: string;
|
|
2207
1918
|
rpcUrls: readonly string[];
|
|
2208
1919
|
archiveRpcUrl?: string;
|
|
2209
1920
|
archiveRpcUrls?: readonly string[];
|
|
2210
|
-
l2ProofRpcUrl?: string;
|
|
2211
|
-
l2ProofRpcUrls?: readonly string[];
|
|
2212
|
-
ethereumRpcUrl?: string;
|
|
2213
|
-
ethereumRpcUrls?: readonly string[];
|
|
2214
|
-
ethereumArchiveRpcUrl?: string;
|
|
2215
|
-
ethereumArchiveRpcUrls?: readonly string[];
|
|
2216
1921
|
tasks: Task[];
|
|
2217
1922
|
engine: {
|
|
2218
1923
|
workingDirRoot: string;
|
|
2219
1924
|
implStateDirRoot: string;
|
|
1925
|
+
knowledgeAutoload: boolean;
|
|
2220
1926
|
};
|
|
2221
1927
|
};
|
|
2222
1928
|
export declare const DEFAULT_CONFIG_PATH: string;
|
|
@@ -2228,18 +1934,30 @@ export declare const DEFAULT_CONFIG_PATH: string;
|
|
|
2228
1934
|
* historical sync — see ponder.config.ts).
|
|
2229
1935
|
*/
|
|
2230
1936
|
export declare const DEFAULT_TESTNET_DISCOVERY_URL = "https://jinn-indexer-production.up.railway.app";
|
|
2231
|
-
export declare const DEFAULT_TESTNET_ETHEREUM_RPC_URL = "https://ethereum-sepolia-rpc.publicnode.com";
|
|
2232
1937
|
/**
|
|
2233
|
-
* Default fallback chain for the L2 measurement chain (Base Sepolia
|
|
2234
|
-
* testnet.
|
|
2235
|
-
*
|
|
2236
|
-
*
|
|
2237
|
-
*
|
|
2238
|
-
*
|
|
1938
|
+
* Default fallback chain for the L2 measurement chain (Base Sepolia, chain-id
|
|
1939
|
+
* 84532) on testnet. Originally a two-provider chain (AC2 of issue #592);
|
|
1940
|
+
* widened to ≥5 distinct free providers per issue #911 so a default-config
|
|
1941
|
+
* daemon tolerates a single-provider quota cliff (the Tenderly shared-quota
|
|
1942
|
+
* cliff of 2026-05-24) without an operator key.
|
|
1943
|
+
* slot 0 — `https://base-sepolia.publicnode.com` (#835 no-auth primary,
|
|
1944
|
+
* 50k-block getLogs cap, no shared-quota cliff).
|
|
1945
|
+
* slot 1 — `https://base-sepolia-rpc.publicnode.com`
|
|
1946
|
+
* slot 2 — `https://base-sepolia.drpc.org`
|
|
1947
|
+
* slot 3 — `https://base-sepolia.gateway.tenderly.co`
|
|
1948
|
+
* slot 4 — `https://sepolia.base.org` (free public Coinbase endpoint,
|
|
1949
|
+
* 2k-block cap; last-resort backup, stays last).
|
|
2239
1950
|
* Operators are encouraged to prepend a paid primary key (Alchemy, Tenderly,
|
|
2240
1951
|
* etc.) via `rpcUrl` config or `JINN_RPC_URL` / `BASE_SEPOLIA_RPC_URL` env.
|
|
1952
|
+
* All five endpoints live-verified to return chain-id 84532 (#911).
|
|
2241
1953
|
*/
|
|
2242
1954
|
export declare const DEFAULT_TESTNET_RPC_URLS: readonly string[];
|
|
1955
|
+
/**
|
|
1956
|
+
* Default fallback chain for the L2 measurement chain (Base mainnet, chain-id
|
|
1957
|
+
* 8453). ≥5 distinct free providers per issue #911.
|
|
1958
|
+
* slot 0 — `https://mainnet.base.org` (free public Coinbase endpoint).
|
|
1959
|
+
*/
|
|
1960
|
+
export declare const DEFAULT_MAINNET_RPC_URLS: readonly string[];
|
|
2243
1961
|
export type ConfigLoadErrorCode = 'config_file_not_found' | 'config_json_invalid' | 'tasks_file_not_found' | 'tasks_json_invalid' | 'config_invalid';
|
|
2244
1962
|
export declare class ConfigLoadError extends Error {
|
|
2245
1963
|
readonly code: ConfigLoadErrorCode;
|