We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fe5e61 commit 872238fCopy full SHA for 872238f
routes/v1/getCrvusdTotalSupplyNumber.js
@@ -23,7 +23,7 @@ export default fn(async () => {
23
crvusdAllocatedToYieldbasis,
24
] = await Promise.all([
25
crvusd.default.totalSupply(),
26
- getCrvusdAllocatedToYieldbasis(),
+ getCrvusdAllocatedToYieldbasis(), // In later versions of @curvefi/stablecoin-api, this number is already included in `crvusd.totalSupply()`
27
]);
28
29
return Number(crvusdTotalSupply.total) + Number(crvusdAllocatedToYieldbasis);
0 commit comments