From 3d693e7f46f6a32677f8d482cb0ba7a46ee0c62b Mon Sep 17 00:00:00 2001 From: Falujo Adeyemi Date: Wed, 26 Aug 2026 00:38:38 +0000 Subject: [PATCH 1/2] feat: added copy copyright --- apps/web/src/config/routing.ts | 1 + apps/web/src/config/useCases.ts | 1 + apps/web/src/demo/demo-trace.checksum.ts | 1 + apps/web/src/demo/demo-trace.generated.ts | 1 + apps/web/src/demo/trace-health-check.ts | 1 + apps/web/src/demo/trace.ts | 1 + 6 files changed, 6 insertions(+) diff --git a/apps/web/src/config/routing.ts b/apps/web/src/config/routing.ts index cd7dad4..7c76d77 100644 --- a/apps/web/src/config/routing.ts +++ b/apps/web/src/config/routing.ts @@ -1,3 +1,4 @@ +// Copyright (c) 2026 Sub Rosa contributors import type { UseCaseId } from "./useCases"; import { USE_CASES } from "./useCases"; diff --git a/apps/web/src/config/useCases.ts b/apps/web/src/config/useCases.ts index 35dc8d0..4e34f51 100644 --- a/apps/web/src/config/useCases.ts +++ b/apps/web/src/config/useCases.ts @@ -1,3 +1,4 @@ +// Copyright (c) 2026 Sub Rosa contributors export type UseCaseId = "auction"; export interface CaseExample { diff --git a/apps/web/src/demo/demo-trace.checksum.ts b/apps/web/src/demo/demo-trace.checksum.ts index f08692a..144e20d 100644 --- a/apps/web/src/demo/demo-trace.checksum.ts +++ b/apps/web/src/demo/demo-trace.checksum.ts @@ -1,3 +1,4 @@ +// Copyright (c) 2026 Sub Rosa contributors // Checksum guard for the canonical demo trace. // Prevents accidental edits to demo-trace.generated.ts that break the public web demo. // diff --git a/apps/web/src/demo/demo-trace.generated.ts b/apps/web/src/demo/demo-trace.generated.ts index 9590ddf..b8ec49b 100644 --- a/apps/web/src/demo/demo-trace.generated.ts +++ b/apps/web/src/demo/demo-trace.generated.ts @@ -1,3 +1,4 @@ +// Copyright (c) 2026 Sub Rosa contributors // Generated by `pnpm agents:e2e` — canonical jury demo trace. // Do not edit by hand; re-run agents:e2e to refresh. diff --git a/apps/web/src/demo/trace-health-check.ts b/apps/web/src/demo/trace-health-check.ts index 02fcddd..274d35f 100644 --- a/apps/web/src/demo/trace-health-check.ts +++ b/apps/web/src/demo/trace-health-check.ts @@ -1,3 +1,4 @@ +// Copyright (c) 2026 Sub Rosa contributors import type { DemoTrace } from "./trace"; type UnknownRecord = Record; diff --git a/apps/web/src/demo/trace.ts b/apps/web/src/demo/trace.ts index 884594a..87d1533 100644 --- a/apps/web/src/demo/trace.ts +++ b/apps/web/src/demo/trace.ts @@ -1,3 +1,4 @@ +// Copyright (c) 2026 Sub Rosa contributors // Types for the jury demo trace. Data lives in demo-trace.generated.ts (from agents:e2e). import { DEMO_TRACE as GENERATED } from "./demo-trace.generated"; From f34503037bdf9174905af471a6fdebe621aa48e3 Mon Sep 17 00:00:00 2001 From: Falujo Adeyemi Date: Wed, 26 Aug 2026 00:45:14 +0000 Subject: [PATCH 2/2] chore: add copyright headers to web entry and config files --- apps/web/src/main.tsx | 1 + apps/web/src/passkey-config.ts | 1 + apps/web/src/polyfills.ts | 1 + apps/web/src/vite-env.d.ts | 1 + apps/web/vite.config.ts | 1 + 5 files changed, 5 insertions(+) diff --git a/apps/web/src/main.tsx b/apps/web/src/main.tsx index f943ac3..2b2edcc 100644 --- a/apps/web/src/main.tsx +++ b/apps/web/src/main.tsx @@ -1,3 +1,4 @@ +// Copyright (c) 2026 Sub Rosa contributors import { StrictMode } from "react"; import { createRoot } from "react-dom/client"; import App from "./App"; diff --git a/apps/web/src/passkey-config.ts b/apps/web/src/passkey-config.ts index bea265c..9bff226 100644 --- a/apps/web/src/passkey-config.ts +++ b/apps/web/src/passkey-config.ts @@ -1,3 +1,4 @@ +// Copyright (c) 2026 Sub Rosa contributors /** Public testnet smart-wallet WASM (passkey-kit demo). Not a secret. */ export const PASSKEY_TESTNET_WALLET_WASM_HASH = "ecd990f0b45ca6817149b6175f79b32efb442f35731985a084131e8265c4cd90"; diff --git a/apps/web/src/polyfills.ts b/apps/web/src/polyfills.ts index 4a9830f..0335427 100644 --- a/apps/web/src/polyfills.ts +++ b/apps/web/src/polyfills.ts @@ -1,3 +1,4 @@ +// Copyright (c) 2026 Sub Rosa contributors import process from "process/browser"; (globalThis as { process: typeof process }).process = process; diff --git a/apps/web/src/vite-env.d.ts b/apps/web/src/vite-env.d.ts index 5636a39..2342019 100644 --- a/apps/web/src/vite-env.d.ts +++ b/apps/web/src/vite-env.d.ts @@ -1,3 +1,4 @@ +// Copyright (c) 2026 Sub Rosa contributors /// declare module "process/browser"; diff --git a/apps/web/vite.config.ts b/apps/web/vite.config.ts index 31b34d5..acea4eb 100644 --- a/apps/web/vite.config.ts +++ b/apps/web/vite.config.ts @@ -1,3 +1,4 @@ +// Copyright (c) 2026 Sub Rosa contributors import react from "@vitejs/plugin-react"; import inject from "@rollup/plugin-inject"; import { createRequire } from "node:module";