make mrc and nrc env vars

This commit is contained in:
Christopher Cookman 2026-06-15 01:33:22 -06:00
parent 4fc06cc8fb
commit 5f0923101d

2
bvs.js
View file

@ -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];