Runs every 1 hrs
1
2
3
4
5
6
7
8
import { fetchJSON } from "https://esm.town/v/stevekrouse/fetchJSON?v=41";
export const mil = async () => {
const json = await fetchJSON(
"https://www.coingecko.com/nft/milady-maker/chart.json?currency=eth&days=1",
);
return json.stats[json.stats.length - 1];
};