https://github.com/arronf2e/coresky_bot
https://share.coresky.com/dtsfy5/tasks-rewards
https://github.com/arronf2e/coresky_bot
Last synced: 4 months ago
JSON representation
https://share.coresky.com/dtsfy5/tasks-rewards
- Host: GitHub
- URL: https://github.com/arronf2e/coresky_bot
- Owner: arronf2e
- Created: 2025-03-31T03:50:59.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-31T05:52:34.000Z (about 1 year ago)
- Last Synced: 2025-06-16T07:51:22.364Z (about 1 year ago)
- Language: JavaScript
- Size: 16.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Coresky 自动签到机器人
这是一个用于自动完成 Coresky 平台每日签到任务的 Node.js 脚本。
Invitation: https://share.coresky.com/dtsfy5/tasks-rewards
## 功能特性
- 自动登录 Coresky 平台
- 自动完成每日签到任务
- 支持多账号并发执行
- 支持代理设置
- 定时任务功能(默认每天北京时间早上8点执行)
## 使用说明
### 1. 环境准备
确保已安装 Node.js (建议版本 16+)
### 2. 安装依赖
```bash
npm install
```
### 3. 配置账号信息
在 `private_keys.txt` 文件中配置你的 Coresky 私钥(一行一个)。
```txt
private_key1
private_key2
...
```
在 `proxies.txt` 文件中配置你的 代理信息(一行一个)。
```txt
socks5://127.0.0.1:1080
...
```
### 4. 运行脚本(默认每天早上8点执行,推荐使用pm2启动)
```bash
node main.js # 直接运行
pm2 start main.js # 使用pm2启动
```