Files
defi-arbitrage/package.json

33 lines
737 B
JSON
Raw Permalink Normal View History

Initial commit: Deal orchestration tool - Freeze-resistant arbitrage loop - Implemented complete arbitrage loop (Steps 0-4) - Risk control service with hard caps (30% LTV, 25% USDTz exposure) - Progressive redemption testing (0k → 50k → cd /home/intlc/projects/proxmox/dbis_core/src/core/defi/arbitrage && git commit -m "Initial commit: Deal orchestration tool - Freeze-resistant arbitrage loop - Implemented complete arbitrage loop (Steps 0-4) - Risk control service with hard caps (30% LTV, 25% USDTz exposure) - Progressive redemption testing ($50k → $250k → $1M+) - Graceful failure handling and state management - CLI interface and programmatic API - Comprehensive documentation Features: - Capital split into three buckets (Core ETH, Working Liquidity, Opportunistic) - ETH wrapping and collateral supply - USDT borrowing at controlled LTV - Discount arbitrage execution - Partial monetization with redemption testing - Loop closing with profit capture Design Principles: - One-way risk only - Anchor asset (ETH) untouchable - No leverage on discounted assets - Independent leg settlement"M+) - Graceful failure handling and state management - CLI interface and programmatic API - Comprehensive documentation Features: - Capital split into three buckets (Core ETH, Working Liquidity, Opportunistic) - ETH wrapping and collateral supply - USDT borrowing at controlled LTV - Discount arbitrage execution - Partial monetization with redemption testing - Loop closing with profit capture Design Principles: - One-way risk only - Anchor asset (ETH) untouchable - No leverage on discounted assets - Independent leg settlement
2026-01-27 14:45:19 -08:00
{
"name": "@dbis-core/defi-arbitrage",
"version": "1.0.0",
"description": "Freeze-resistant, capital-preserving arbitrage loop orchestration tool",
"main": "index.ts",
"types": "index.ts",
"scripts": {
"build": "tsc",
"dev": "ts-node cli.ts",
"test": "echo \"Tests to be implemented\" && exit 0"
},
"keywords": [
"defi",
"arbitrage",
"ethereum",
"chainid-138",
"risk-management"
],
"author": "DBIS Core Team",
"license": "UNLICENSED",
"dependencies": {
"@prisma/client": "^5.0.0",
"decimal.js": "^10.4.0",
"uuid": "^9.0.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.0",
"typescript": "^5.0.0"
}
}