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,48 @@
import { Address } from "@scaffold-ui/components";
import { ChevronRightIcon } from "@heroicons/react/24/outline";
import { useScaffoldReadContract } from "~~/hooks/scaffold-eth";
import { useChallengeState } from "~~/services/store/challengeStore";
export const DisputedRow = ({ assertionId, state }: { assertionId: number; state: number }) => {
const { openAssertionModal } = useChallengeState();
const { data: assertionData } = useScaffoldReadContract({
contractName: "OptimisticOracle",
functionName: "getAssertion",
args: [BigInt(assertionId)],
});
if (!assertionData) return null;
return (
<tr
key={assertionId}
onClick={() => {
openAssertionModal({ ...assertionData, assertionId, state });
}}
className={`group border-b border-base-300 cursor-pointer`}
>
{/* Description Column */}
<td>
<div className="group-hover:text-error">{assertionData.description}</div>
</td>
{/* Proposer Column */}
<td>
<Address address={assertionData.proposer} format="short" onlyEnsOrAddress disableAddressLink size="sm" />
</td>
{/* Disputer Column */}
<td>
<Address address={assertionData.disputer} format="short" onlyEnsOrAddress disableAddressLink size="sm" />
</td>
{/* Chevron Column */}
<td className="">
<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>
);
};