Dashboard
The lender dashboard combines your on-chain position (verifiable directly from the contracts) with UI-side conveniences like APR and accumulated yield.
On-chain, verifiable directly
Every item in this list can be read straight from the contracts. If the UI disappeared tomorrow, you could reconstruct all of it with a block explorer or an RPC call.
- PLUSD balance — via
PLUSD.balanceOf(yourAddress). - sPLUSD balance and share-to-PLUSD exchange rate — via
sPLUSD.balanceOf(yourAddress)andsPLUSD.convertToAssets(shares). - Whitelist status and Chainalysis
approvedAttimestamp — viaWhitelistRegistry.isAllowed(yourAddress)andWhitelistRegistry.isAllowedForMint(yourAddress). Screening must be fresher than 90 days for mint. - Withdrawal queue entries —
queue_id, amount, status (Pending / Funded / Claimed / AdminReleased) viaWithdrawalQueue.getEntry(queue_id)and the queue’s emitted events. - Full deposit history —
DepositManager.Depositedevents filtered by your address. - Full mint/burn history —
Transferand related events on PLUSD filtered by your address.
UI convenience rollups
These numbers are computed client-side from the on-chain data above. They’re convenient, but they are not themselves on-chain state. If you want to audit them, recompute from the raw events.
- Total deposited, total withdrawn, net position.
- Yield earned, expressed as nominal PLUSD.
- Time-weighted annualised rate (APR), computed from each stake lot’s cost basis.
- Transaction history with friendly labels and links to block explorers.
What you can’t see
You cannot see individual loan details under your allocation. Every lender’s PLUSD and sPLUSD is fungible, so your exposure is pro-rata across the entire active loan book — there’s no “loan #42 is yours and loan #43 is someone else’s” slicing. You can see the loan book itself on the Protocol Dashboard (per-loan originator, commodity, corridor, outstanding principal, tenor, status), but you cannot attribute a specific loan to your specific shares.
Protocol Dashboard
Protocol-wide figures — total PLUSD supply, Capital Wallet reserves, the 15% USDC buffer status, the full loan book, withdrawal queue depth, yield history — live on the Protocol Dashboard: [link placeholder — URL to be set at launch].
Verifying on your own
Every number on your dashboard can be reconstructed from on-chain calls and event logs. Contract addresses, ABIs, and deployment blocks live on /security/audits-and-addresses/. If a UI number disagrees with what the contract returns, the contract is the source of truth.
See also
- /security/audits-and-addresses/ — contract addresses and audit reports.
- /how-it-works/yield-engines/ — how the APR and yield-earned figures are built up from loan repayments and T-bill distributions.