Skip to content
This repository was archived by the owner on Jun 30, 2025. It is now read-only.

Commit df52119

Browse files
authored
Add experimental walrus subnet. (#706)
1 parent ecacdef commit df52119

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ production use. _Run this at your own risk!_
133133
Checker Modules currently in experimental mode:
134134

135135
- [Arweave](https://github.com/CheckerNetwork/arweave-checker/)
136+
- [Walrus](https://github.com/CheckerNetwork/walrus-checker/)
136137

137138
### `$ checker --help`
138139

lib/zinnia.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ const SUBNETS = [
1818
subnet: 'arweave',
1919
ipnsKey: 'k51qzi5uqu5dgwm6tk4gibgfqbqjopwdtlphvyczrixay6oesadjdxt1eorimg',
2020
experimental: true
21+
},
22+
{
23+
subnet: 'walrus',
24+
ipnsKey: 'k51qzi5uqu5dghv7chp14rx3w89xwbbi2pwzpz1xt02ddpcev6j7guyg60yi4m',
25+
experimental: true
2126
}
2227
]
2328
const {

test/checker.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ describe('Checker', () => {
2020
stopChecker()
2121
})
2222
it('runs experimental subnets', () => {
23-
it('runs Arweave', async () => {
23+
it('runs Arweave & Walrus', async () => {
2424
const ps = startChecker(['--experimental'])
2525
await streamMatch(ps.stdout, 'Arweave subnet started.')
26+
await streamMatch(ps.stdout, 'Walrus subnet started.')
2627
stopChecker()
2728
})
2829
})

0 commit comments

Comments
 (0)