All checks were successful
deploy / deploy (push) Successful in 32s
Proof: Operator dashboard now starts from successful trades with linked outcome evidence, keeps submitted-only rows in awaiting/no-trade buckets, and explains why recent quotes are not proven asset-changing trades. Assumptions: Until durable terminal outcome and settlement attribution are implemented, successful trade count must remain zero for submitted-only evidence. Still fake: Per-quote terminal outcome and settled asset delta plumbing is still not implemented; the page now exposes that absence directly instead of hiding it behind submission counts.
15 lines
772 B
JavaScript
15 lines
772 B
JavaScript
export const SUBMISSION_COPY = {
|
|
statusTileLabel: 'Submissions',
|
|
statusTileSubtitle: 'Quote responses accepted by the relay; not completed trades',
|
|
statusTileValueSuffix: 'submissions',
|
|
lastStatusTileLabel: 'Last Submission',
|
|
recentMetricLabel: 'Recent submissions',
|
|
recentMetricValueSuffix: 'submissions',
|
|
termsEyebrow: 'Submission activity',
|
|
termsTitle: 'Recent submitted quote terms',
|
|
termsEmpty: 'No submitted quote responses are available yet.',
|
|
ledgerTitle: 'Submitted quote responses',
|
|
ledgerSubtitle: 'PostgreSQL-backed pagination of executor submissions',
|
|
ledgerEmpty: 'No submitted quote responses are stored yet.',
|
|
ledgerCountLabel: (page, totalPages, total) => `Page ${page} of ${totalPages} - ${total} submitted quote responses`,
|
|
};
|