Skip to content
This repository was archived by the owner on Jan 6, 2026. It is now read-only.

Commit 483b81d

Browse files
authored
feat! shut down (#140)
* feat! shut down Signed-off-by: Miroslav Bajtoš <oss@bajtos.net> * fixup! eslint - missing Zinnia global Signed-off-by: Miroslav Bajtoš <oss@bajtos.net> * fixup! add infinite no-op loop Signed-off-by: Miroslav Bajtoš <oss@bajtos.net> * fixup! update message Signed-off-by: Miroslav Bajtoš <oss@bajtos.net> * fixup! revert unintended changes Signed-off-by: Miroslav Bajtoš <oss@bajtos.net> * fixup! prefix the message to trigger offline mode In order to trigger offline mode in Checker Desktop and show offline status icon in the tray menu, the error message has to start with the prefix `Spark ` (the space character is important). Signed-off-by: Miroslav Bajtoš <oss@bajtos.net> --------- Signed-off-by: Miroslav Bajtoš <oss@bajtos.net>
1 parent 3c5219c commit 483b81d

File tree

2 files changed

+18
-36
lines changed

2 files changed

+18
-36
lines changed

README.md

Lines changed: 6 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -2,36 +2,9 @@
22

33
SP Retrieval Checker Module
44

5-
- [Roadmap](https://pl-strflt.notion.site/SPARK-Roadmap-ac729c11c49b409fbec54751d1bc6c8a)
6-
- [API](https://github.com/filecoin-station/spark-api)
7-
8-
## Development
9-
10-
Install [Zinnia CLI](https://github.com/filecoin-station/zinnia).
11-
12-
```bash
13-
$ # Install dev tooling
14-
$ npm ci
15-
$ # Lint
16-
$ npm run lint
17-
$ # Fix linting issues
18-
$ npm run lint:fix
19-
$ # Run module
20-
$ zinnia run main.js
21-
$ # Test module
22-
$ zinnia run test.js
23-
```
24-
25-
## Release
26-
27-
On a clean working tree, run the following command:
28-
29-
```bash
30-
$ ./release.sh <semver>
31-
$ # Example
32-
$ ./release.sh 1.0.0
33-
```
34-
35-
Use GitHub's changelog feature to fill out the release notes.
36-
37-
Publish the new release and let the CI/CD workflow upload the sources to IPFS & IPNS.
5+
> [!CAUTION]
6+
>
7+
> **This repository is no longer mantained.**
8+
>
9+
> Filecoin Spark and Checker Network continue to operate in a permissioned architecture.
10+
> See the [announcement](https://x.com/FilecoinCDN/status/1932472254245298504) for more details.

main.js

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
import Spark from './lib/spark.js'
1+
/* global Zinnia */
22

3-
const spark = new Spark()
4-
await spark.run()
3+
Zinnia.activity.error(
4+
'Spark update: Filecoin Station and Checker Network programmes ended. The node is no longer contributing to the network, and there will be no further rewards. Thank you for your participation!',
5+
)
6+
7+
while (true) {
8+
await new Promise((resolve) => setTimeout(resolve, 60_000))
9+
}
10+
11+
// import Spark from './lib/spark.js'
12+
// const spark = new Spark()
13+
// await spark.run()

0 commit comments

Comments
 (0)