| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /**
- * Mock constants for the skeleton milestone.
- * Phase 2 swaps these for live Doltgres/SSE data without touching page markup.
- */
- export const NETWORK_STATUS = {
- privateLayer: "operational",
- publicAnchor: "synced",
- label: "private layer · public anchor",
- } as const;
- export const NETWORK_STATS = [
- {
- label: "Private blocks",
- value: "1,284,902",
- hint: "+412 in the last hour",
- },
- {
- label: "Transactions",
- value: "8,431,775",
- hint: "avg 1.2s finality (private layer)",
- },
- {
- label: "Public anchors",
- value: "21,408",
- hint: "last anchor 32s ago",
- },
- ] as const;
- export const HYBRID_FLOW_STEPS = [
- {
- title: "Submit",
- description: "A transaction is submitted to the krypco private layer.",
- },
- {
- title: "Confirm",
- description: "Permissioned validators confirm it with fast finality.",
- },
- {
- title: "Anchor",
- description: "State roots are anchored to the public chain for auditability.",
- },
- ] as const;
- export const WALLET_STEPS = [
- {
- title: "Install a wallet",
- description: "Any EVM-compatible wallet works with krypco networks.",
- },
- {
- title: "Add the krypco networks",
- description: "Private layer RPC and the public anchor chain.",
- },
- {
- title: "Connect",
- description: "Link your wallet to follow transactions across both layers.",
- },
- ] as const;
|