Skip to content

Commit 14fa2a2

Browse files
TokenBriceclaude
andcommitted
fix(reserves): classify USDC/OUSG direct treasuries as very-low risk
Migration script used 'treasury' pattern which doesn't match 'treasuries' (different suffix). Fix 2 slices that were missed: - USDC: U.S. Treasuries 75% (low → very-low) - OUSG: Short-Term U.S. Treasuries 80% (low → very-low) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 06c6681 commit 14fa2a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/stablecoins.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export const TRACKED_STABLECOINS: StablecoinMeta[] = [
109109
],
110110
},
111111
reserves: [
112-
{ name: "U.S. Treasuries", pct: 75, risk: "low" },
112+
{ name: "U.S. Treasuries", pct: 75, risk: "very-low" },
113113
{ name: "Overnight Repos", pct: 18, risk: "very-low" },
114114
{ name: "Cash Deposits", pct: 7, risk: "very-low" },
115115
],
@@ -352,7 +352,7 @@ export const TRACKED_STABLECOINS: StablecoinMeta[] = [
352352
],
353353
reserves: [
354354
// Source: Ondo Finance docs + Ankura Trust daily reports. Ondo targets 99%+ Treasuries; 104% overcollateralized.
355-
{ name: "Short-Term U.S. Treasuries", pct: 80, risk: "low" },
355+
{ name: "Short-Term U.S. Treasuries", pct: 80, risk: "very-low" },
356356
{ name: "iShares Short Treasury Bond ETF", pct: 15, risk: "very-low" },
357357
{ name: "Bank Demand Deposits", pct: 5, risk: "very-low" },
358358
],

0 commit comments

Comments
 (0)