Security: Remove hardcoded credentials

- Remove hardcoded API URL and auth token from pool/coin_pool.go
- Update config.json.example with placeholder format
- Credentials should now be configured via config.json file
This commit is contained in:
tinkle-community
2025-10-28 20:44:38 +08:00
parent b13b761fb6
commit b97c5f663f
2 changed files with 4 additions and 4 deletions

View File

@@ -21,8 +21,8 @@
"scan_interval_minutes": 3
}
],
"coin_pool_api_url": "http://x.x.x.x:x/api/ai500/list?auth=",
"oi_top_api_url": "http://x.x.x.x:x/api/oi/top?auth=",
"coin_pool_api_url": "http://x.x.x.x:x/api/ai500/list?auth=YOUR_AUTH_TOKEN",
"oi_top_api_url": "http://x.x.x.x:x/api/oi/top?auth=YOUR_AUTH_TOKEN",
"api_server_port": 8080,
"max_daily_loss": 5.0,
"max_drawdown": 10.0,