diff --git a/.tix/issues.jsonl b/.tix/issues.jsonl index 00282b9..7483fb3 100644 --- a/.tix/issues.jsonl +++ b/.tix/issues.jsonl @@ -41,3 +41,4 @@ {"type":"issue","id":"RG-9430aa","title":"Refactor create + vaults pages to useChainId() lookups","body":"","status":"in_progress","priority":2,"assignee":"","created_at":1777031317780,"updated_at":1777083286869,"tags":["multichain","evm"]} {"type":"issue","id":"RG-42e939","title":"Per-chain USDC decimals (BNB=18, others=6)","body":"","status":"in_progress","priority":2,"assignee":"","created_at":1777031317799,"updated_at":1777083286894,"tags":["multichain","evm"]} {"type":"issue","id":"RG-b53952","title":"Update wagmi config for multi-chain array + wrong-chain guard on /create","body":"","status":"in_progress","priority":2,"assignee":"","created_at":1777031317760,"updated_at":1777083687610,"tags":["multichain","evm"]} +{"type":"issue","id":"RG-213ce7","title":"Landing page chain chip row + cross-chain hints","body":"","status":"in_progress","priority":3,"assignee":"","created_at":1777031317819,"updated_at":1777145636239,"tags":["multichain","evm"]} diff --git a/packages/app/src/app/page.tsx b/packages/app/src/app/page.tsx index 3372749..37bedac 100644 --- a/packages/app/src/app/page.tsx +++ b/packages/app/src/app/page.tsx @@ -1,7 +1,7 @@ "use client"; import { PRESETS, IS_TESTNET } from "@/config/contracts"; -import { getChainConfig, isSupportedDeploymentChain, DEFAULT_CHAIN_ID } from "@/config/chains"; +import { CHAINS, getChainConfig, isSupportedDeploymentChain, DEFAULT_CHAIN_ID } from "@/config/chains"; import { useChainId } from "wagmi"; import Link from "next/link"; import { Header } from "@/components/Header"; @@ -91,6 +91,35 @@ const LIMITS = [ "Send funds anywhere except your wallet", ]; +function ChainChipRow() { + // Show only the chains live on this deployment (mainnet vs. testnet). + const chains = Object.values(CHAINS).filter((c) => c.isTestnet === IS_TESTNET); + + return ( +
+
+ + Live across +
+ +
+ ); +} + function FAQItem({ question, children, @@ -257,6 +286,11 @@ export default function Home() { + + {/* Chain chip row — quietly tells users we're on every casino-relevant + chain. Each chip links to that chain's Sablier Lockup contract on + its native explorer so verification is one click away. */} +