From 5f0923101ddab9e448d6fc68959ad690899998d0 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Mon, 15 Jun 2026 01:33:22 -0600 Subject: [PATCH] make mrc and nrc env vars --- bvs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bvs.js b/bvs.js index 31af0dc..3aee7cb 100644 --- a/bvs.js +++ b/bvs.js @@ -113,7 +113,7 @@ async function searchPurchasableDIDs(query) { return []; }); // console.log(dids) - const purchasableDIDs = dids.filter(did => did.Nrc <= "0.50" && did.Mrc <= "0.10"); + const purchasableDIDs = dids.filter(did => did.Nrc <= "0.50" && did.Mrc <= "0.15"); // console.log(purchasableDIDs) // Shuffle the purchasableDIDs array, then take the first 6 let shuffled = [...purchasableDIDs];