This repository was archived by the owner on Jun 30, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ production use. _Run this at your own risk!_
133133Checker 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
Original file line number Diff line number Diff 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]
2328const {
Original file line number Diff line number Diff 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 } )
You can’t perform that action at this time.
0 commit comments