One holding contract a party owns, as useHoldings reports it. A locked one is escrowed, which is why the two are summed apart.
const spendable = holdings.filter((holding) => !holding.isLocked) Copy
const spendable = holdings.filter((holding) => !holding.isLocked)
One holding contract a party owns, as useHoldings reports it. A locked one is escrowed, which is why the two are summed apart.
Example