7c7fad45f3
- Watcher: polls Data API for trader activity - Executor: buy/sell with market orders + retry logic - Position manager: JSON-based state tracking - Auto-sell: limit orders at profit target - Redeemer: check & redeem winning positions on-chain - Config: env-based settings with validation - DRY_RUN mode for safe testing
23 lines
563 B
JSON
23 lines
563 B
JSON
{
|
|
"name": "polymarket-copy",
|
|
"version": "1.0.0",
|
|
"description": "Polymarket Copy Trade Tool - Auto copy trades from any trader",
|
|
"main": "src/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"dev": "nodemon --ignore 'data/*.json' src/index.js"
|
|
},
|
|
"keywords": ["polymarket", "copy-trade", "crypto"],
|
|
"author": "direkturcrypto",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@polymarket/clob-client": "^4.7.3",
|
|
"dotenv": "^16.4.7",
|
|
"ethers": "^5.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.1.9"
|
|
}
|
|
}
|