挖矿手册

v

观看挖矿与桌面边缘节点。称「贡献积分 / 贡献奖励」,不保证收益。

两条线,不要混

类型谁能做操作入口
观看挖矿(W2E) 桌面完整版为主场 Watch 有效播放 → Wallet「领取积分」
边缘节点 Win / Mac / Linux Wallet → 安装/检测 Agent → 注册 → 领节点奖励

Android / iOS 入口版:可看片与轻付费;不做边缘节点。

1. 观看挖矿

规则

操作

  1. 桌面客户端打开片子,正常观看(勿切后台挂机)
  2. 打开 Wallet,看待领 / 余额
  3. 领取积分

2. 边缘节点(仅桌面)

独立进程出网供片,不进浏览器内核。网页只做注册与状态。两种安装方式任选。

装好后:Wallet → 注册并连接 → 有奖励时 领取奖励

2.1 方式 A · 下载脚本(快捷)

  1. 桌面 Noctis → Wallet → 一键安装启动(或「环境检测」)
  2. 方式 A · 下载脚本,下载对应文件并运行(会登记登录启动,可关窗口):
平台文件怎么跑
macOSstart-agent.command双击;拦截时右键 → 打开
Windowsstart-agent-windows.bat双击;缺 Node 会打开官网
Linux(Debian / Ubuntu)start-agent.shchmod +x./start-agent.sh

脚本会检查 Node ≥ 18,拉取 Agent 到 ~/.noctis/node-agent/(Windows:%USERPROFILE%\.noctis\node-agent),并登记登录后自动运行。

检查是否成功

2.2 方式 B · 分系统命令(含检查)

适合脚本不好双击时。主界面弹窗里也可切换「方式 B」并一键复制。

macOS

# 1) 检查 Node(应 ≥ v18)
node -v

# 2) 拉取
mkdir -p ~/.noctis/node-agent && cd ~/.noctis/node-agent
curl -fsSL https://app.noctis.world/install/agent.mjs -o agent.mjs
curl -fsSL https://app.noctis.world/install/package.json -o package.json

# 3) 登录后自动运行(可关窗口)
export NOCTIS_TRACKER=https://api.noctis.world
curl -fsSL https://app.noctis.world/install/persist-unix.sh -o persist-unix.sh
bash persist-unix.sh

# 4) 另开终端检查
curl -sS http://127.0.0.1:8791/health

Windows(CMD)

REM 1) 检查
node -v

REM 2) 拉取
mkdir %USERPROFILE%\.noctis\node-agent
cd /d %USERPROFILE%\.noctis\node-agent
powershell -NoProfile -Command "Invoke-WebRequest -UseBasicParsing https://app.noctis.world/install/agent.mjs -OutFile agent.mjs; Invoke-WebRequest -UseBasicParsing https://app.noctis.world/install/package.json -OutFile package.json"

REM 3) 登录后自动运行(可关窗口)
set NOCTIS_TRACKER=https://api.noctis.world
powershell -NoProfile -Command "Invoke-WebRequest -UseBasicParsing https://app.noctis.world/install/persist-windows.ps1 -OutFile persist-windows.ps1"
powershell -NoProfile -ExecutionPolicy Bypass -File persist-windows.ps1

REM 4) 检查
curl http://127.0.0.1:8791/health

Linux(Debian / Ubuntu)

# 1) 检查
node -v

# 2) 拉取
mkdir -p ~/.noctis/node-agent && cd ~/.noctis/node-agent
curl -fsSL https://app.noctis.world/install/agent.mjs -o agent.mjs
curl -fsSL https://app.noctis.world/install/package.json -o package.json

# 3) 登录后自动运行(可关窗口)
export NOCTIS_TRACKER=https://api.noctis.world
curl -fsSL https://app.noctis.world/install/persist-unix.sh -o persist-unix.sh
bash persist-unix.sh

# 4) 检查
curl -sS http://127.0.0.1:8791/health

2.3 注册与公网(可选)

  1. 连接钱包 → 注册并连接(写入本机 token)
  2. 有待领时点 领取奖励
  3. 跨机供片时设置公网地址后重启 Agent:
export NOCTIS_PUBLIC_URL=http://YOUR_PUBLIC_IP:8791

未设公网 URL 时仍可本机缓存供片,但不会进入 Tracker peer 列表。

红线