Skip to content

Commit 68ada19

Browse files
committed
Clean Covalent GoldRush reviewer copy
1 parent 5762048 commit 68ada19

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

apps/web/src/app/proof/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export default function ProofPage() {
223223
<div className="grid gap-3 lg:grid-cols-3">
224224
{[
225225
["Sensitive decisions", "QVAC runs local-first review before signing so private treasury intent does not need a cloud model.", "/services/qvac-sovereign-ai"],
226-
["Financial intelligence", "GoldRush and Dune make wallet, stablecoin, and counterparty context visible before an operator acts.", "/intelligence"],
226+
["Financial intelligence", "Covalent GoldRush makes wallet, stablecoin, and counterparty context visible before an operator acts.", "/intelligence"],
227227
["Cryptographic proof", "ZK, REFHE/Encrypt, IKA, Umbra, Cloak, and MagicBlock each have a clear feature route and a judge proof route.", "/documents/testnet-refhe-encrypt-ika-commitment-2026-05-07"],
228228
].map(([title, summary, href]) => (
229229
<Link key={title} href={href} className="rounded-[22px] border border-white/8 bg-black/20 p-4 transition hover:border-cyan-200/40">

apps/web/src/components/goldrush-intelligence-surface.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export function GoldRushIntelligenceSurface() {
135135
const [walletAddress, setWalletAddress] = useState("So11111111111111111111111111111111111111112");
136136
const [activeTemplate, setActiveTemplate] = useState<GoldRushTemplateId>("wallet-history");
137137
const [deliveryState, setDeliveryState] = useState(
138-
"Run a live GoldRush intelligence request here. The hosted read-node now forwards configured GoldRush and Dune checks for reviewer-visible pre-sign context.",
138+
"Run a live Covalent GoldRush intelligence request here. The hosted read-node now forwards configured GoldRush, Zerion, SNS, and Solana RPC checks for reviewer-visible pre-sign context.",
139139
);
140140
const [responsePreview, setResponsePreview] = useState<string>("");
141141
const [responseData, setResponseData] = useState<GoldRushResponse | null>(null);
@@ -403,7 +403,7 @@ export function GoldRushIntelligenceSurface() {
403403
<div className="rounded-[24px] border border-white/10 bg-black/20 p-4">
404404
<div className="text-[11px] uppercase tracking-[0.22em] text-white/44">Latest response preview</div>
405405
<pre className="mt-3 overflow-x-auto rounded-2xl border border-white/10 bg-black/30 p-4 text-xs leading-6 text-white/70">
406-
{responsePreview || "Ready for a live GoldRush/Dune query. Run the workbench to populate this reviewer packet with wallet intelligence before signing."}
406+
{responsePreview || "Ready for a live Covalent GoldRush query. Run the workbench to populate this reviewer packet with wallet intelligence before signing."}
407407
</pre>
408408
</div>
409409

apps/web/src/components/home-shell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ export function HomeShell() {
295295
},
296296
{
297297
title: "Market Ops DAO",
298-
description: "Review GoldRush/Dune context, policy limits, and treasury routes before the wallet signs.",
298+
description: "Review Covalent GoldRush context, policy limits, and treasury routes before the wallet signs.",
299299
href: "/treasury",
300300
icon: Shield,
301301
},

apps/web/src/lib/api/dune.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export async function fetchBalances(walletAddress: string): Promise<DuneBalanceS
1010
const response = await fetch(`${endpoint}?wallet=${encodeURIComponent(walletAddress)}`);
1111
const body = await safeJson<DuneBalanceSnapshot & { error?: string }>(response);
1212
if (!response.ok) {
13-
throw new Error((body as { error?: string } | null)?.error ?? `Dune balances failed (${response.status}).`);
13+
throw new Error((body as { error?: string } | null)?.error ?? `Legacy analytics balances failed (${response.status}).`);
1414
}
1515
return body;
1616
}
@@ -20,7 +20,7 @@ export async function fetchTransactions(walletAddress: string): Promise<DuneTran
2020
const response = await fetch(`${endpoint}?wallet=${encodeURIComponent(walletAddress)}`);
2121
const body = await safeJson<DuneTransactionSnapshot & { error?: string }>(response);
2222
if (!response.ok) {
23-
throw new Error((body as { error?: string } | null)?.error ?? `Dune transactions failed (${response.status}).`);
23+
throw new Error((body as { error?: string } | null)?.error ?? `Legacy analytics transactions failed (${response.status}).`);
2424
}
2525
return body;
2626
}

apps/web/src/lib/curated-documents.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ const curatedDocuments: CuratedDocument[] = [
482482
title: "Testnet Integration Runtime Closure 2026-05-07",
483483
category: "Reviewer core",
484484
summary:
485-
"Fresh Solana Testnet lifecycle proof plus live AWS read-node checks for Dune SIM, GoldRush, Zerion, Umbra relayer, MagicBlock, QVAC, and private-settlement receipt paths.",
485+
"Fresh Solana Testnet lifecycle proof plus live AWS read-node checks for Covalent GoldRush, Zerion, Umbra relayer, MagicBlock, QVAC, and private-settlement receipt paths.",
486486
audience: "Judges, privacy reviewers, infrastructure reviewers, operators",
487487
boundary:
488488
"Fresh runtime packet only. It distinguishes real Testnet execution from vendor intent receipts and does not claim full Umbra claim execution, Cloak relay execution, or on-chain ZK verifier CPI where those are still separate integration boundaries.",

0 commit comments

Comments
 (0)