Initial commit with 🏗️ create-eth @ 2.0.4

This commit is contained in:
han
2026-01-23 20:20:58 +07:00
commit b330aba2b4
185 changed files with 36981 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
"use client";
import { OORowProps } from "../types";
import { TimeLeft } from "./TimeLeft";
import { formatEther } from "viem";
import { ChevronRightIcon } from "@heroicons/react/24/outline";
import { useScaffoldReadContract } from "~~/hooks/scaffold-eth";
import { useChallengeState } from "~~/services/store/challengeStore";
export const ProposedRow = ({ assertionId, state }: OORowProps) => {
const { openAssertionModal } = useChallengeState();
const { data: assertionData } = useScaffoldReadContract({
contractName: "OptimisticOracle",
functionName: "getAssertion",
args: [BigInt(assertionId)],
});
if (!assertionData) return null;
return (
<tr
key={assertionId}
className={`group border-b border-base-300 cursor-pointer`}
onClick={() => {
openAssertionModal({ ...assertionData, assertionId, state });
}}
>
{/* Query Column */}
<td>
<div className="group-hover:text-error">{assertionData?.description}</div>
</td>
{/* Bond Column */}
<td>{formatEther(assertionData?.bond)} ETH</td>
{/* Proposal Column */}
<td>{assertionData?.proposedOutcome ? "True" : "False"}</td>
{/* Challenge Period Column */}
<td>
<TimeLeft startTime={assertionData?.startTime} endTime={assertionData?.endTime} />
</td>
{/* Chevron Column */}
<td>
<div className="w-6 h-6 rounded-full border-error border flex items-center justify-center hover:bg-base-200 group-hover:bg-error transition-colors mx-auto">
<ChevronRightIcon className="w-4 h-4 text-error group-hover:text-white stroke-2 transition-colors" />
</div>
</td>
</tr>
);
};