From 5a36628cb1a27c29ecbda0584330b85475275370 Mon Sep 17 00:00:00 2001 From: Srdjan S Date: Tue, 25 Mar 2025 17:56:21 +0100 Subject: [PATCH] Add experimental walrus subnet. --- README.md | 1 + lib/zinnia.js | 5 +++++ test/checker.js | 3 ++- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4423b4a9..0536b03a 100644 --- a/README.md +++ b/README.md @@ -133,6 +133,7 @@ production use. _Run this at your own risk!_ Checker Modules currently in experimental mode: - [Arweave](https://github.com/CheckerNetwork/arweave-checker/) +- [Walrus](https://github.com/CheckerNetwork/walrus-checker/) ### `$ checker --help` diff --git a/lib/zinnia.js b/lib/zinnia.js index dff24d97..362cdabc 100644 --- a/lib/zinnia.js +++ b/lib/zinnia.js @@ -18,6 +18,11 @@ const SUBNETS = [ subnet: 'arweave', ipnsKey: 'k51qzi5uqu5dgwm6tk4gibgfqbqjopwdtlphvyczrixay6oesadjdxt1eorimg', experimental: true + }, + { + subnet: 'walrus', + ipnsKey: 'k51qzi5uqu5dghv7chp14rx3w89xwbbi2pwzpz1xt02ddpcev6j7guyg60yi4m', + experimental: true } ] const { diff --git a/test/checker.js b/test/checker.js index 90769671..c3d3ece6 100644 --- a/test/checker.js +++ b/test/checker.js @@ -20,9 +20,10 @@ describe('Checker', () => { stopChecker() }) it('runs experimental subnets', () => { - it('runs Arweave', async () => { + it('runs Arweave & Walrus', async () => { const ps = startChecker(['--experimental']) await streamMatch(ps.stdout, 'Arweave subnet started.') + await streamMatch(ps.stdout, 'Walrus subnet started.') stopChecker() }) })