Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
chore: do not prefetch testnet by default
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Jun 3, 2024
1 parent 2c75d98 commit 3c16a02
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,5 @@ export const arnsContractTxId =
'bLAgYxAdX2Ry-nt6aH2ixgvJXbpsEYm28NgJgyqfs-U';

export const prefetchContractTxIds: string[] = process.env.PREFETCH_CONTRACT_IDS
? [
...new Set([
arnsContractTxId,
...process.env.PREFETCH_CONTRACT_IDS.split(','),
]),
] // filter out any duplicates
? [...new Set([...process.env.PREFETCH_CONTRACT_IDS.split(',')])] // filter out any duplicates
: [arnsContractTxId];

0 comments on commit 3c16a02

Please sign in to comment.