Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use SDK helpers to keep partner UI rules aligned with the API.
import { summarizeReadiness, canShowActions, canShowDeposit, canShowExitActions, } from "@arc/shlp-sdk"; const summary = summarizeReadiness(health, vault);
if (!summary.canDisplay) { return <Unavailable reasonCodes={summary.reasonCodes} />; } return ( <VaultPage depositEnabled={summary.canDeposit} exitEnabled={summary.canShowExitActions} reasonCodes={summary.reasonCodes} /> );