import { atom } from "recoil"; /** * track globally the USD value of the reliquary emissions, so we can fetch them once but use them * anywhere to compute the 'bonus' returns on pools */ export const oathPriceState = atom({ key: "oathPriceState", default: 0, });