Some checks failed
deploy / deploy (push) Failing after 2s
Proof: Implement the active turn for pre-credit funding visibility and durable operator alerts while keeping spendable inventory truth limited to bridge/verifier credit. Assumptions: The BTC deposit handle can be observed through a mempool.space-compatible API, bridge recent_deposits remains the credit truth for correlation, and pausing market-reference-ingest or inventory-sync briefly for alert validation is safe without disarming strategy or executor. Still fake: Gnosis pre-credit observation is not implemented, executor failure alert validation may still depend on an existing real failure unless a separate live failure is explicitly approved, and a new live deposit is still required to prove a fresh pre-credit-to-credit path if no suitable recent funding exists.
23 lines
774 B
JSON
23 lines
774 B
JSON
{
|
|
"name": "near-intents-monitor-poc",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"near-intents:ingest": "node src/apps/near-intents-ingest.mjs",
|
|
"market-reference:ingest": "node src/apps/market-reference-ingest.mjs",
|
|
"inventory:sync": "node src/apps/inventory-sync.mjs",
|
|
"liquidity:manager": "node src/apps/liquidity-manager.mjs",
|
|
"history:writer": "node src/apps/history-writer.mjs",
|
|
"ops:sentinel": "node src/apps/ops-sentinel.mjs",
|
|
"strategy:engine": "node src/apps/strategy-engine.mjs",
|
|
"trade:executor": "node src/apps/trade-executor.mjs",
|
|
"start": "node index.mjs",
|
|
"test": "node --test"
|
|
},
|
|
"dependencies": {
|
|
"kafkajs": "^2.2.4",
|
|
"near-api-js": "^7.2.0",
|
|
"pg": "^8.20.0"
|
|
}
|
|
}
|