unrip/package.json
philipp 41b9ec680b
Some checks failed
deploy / deploy (push) Failing after 1m35s
Implement funded NEAR Intents trade loop
Proof: first non-mocked tradeable loop for one pair using funded NEAR Intents inventory, Kafka, and PostgreSQL.

Assumptions: solver-side execution is performed by signed token_diff quote responses over the Solver Relay; EURe is treated as 1:1 with EUR; k3s runtime uses unrip-dev.near as the named signer account.

Still fake: signer key is not yet registered on intents.near, strategy and executor remain disarmed by default, and no live mainnet quote response has been submitted from this repo yet.
2026-04-02 10:01:15 +02:00

22 lines
720 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",
"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"
}
}