Skip to content

Commit 8e88023

Browse files
committed
Warning for Near chains
1 parent bafbccb commit 8e88023

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/cli/src/commands/init.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,10 @@ async function processInitForm(
494494
return 'Arweave only supported via substreams';
495495
}
496496
if (name === 'cosmos') {
497-
return 'Cosmos only supported via substreams';
497+
return 'Cosmos chains only supported via substreams';
498+
}
499+
if (name === 'near') {
500+
return 'Near chains only supported via substreams';
498501
}
499502
return true;
500503
},

0 commit comments

Comments
 (0)