Files
maci-wrapper/packages/nextjs/hooks/useFetchPoll.tsx
2024-03-26 08:51:38 +05:30

9 lines
225 B
TypeScript

import { useScaffoldContractRead } from "./scaffold-eth";
export const useFetchPoll = (id: string) =>
useScaffoldContractRead({
contractName: "PollManager",
functionName: "fetchPoll",
args: [BigInt(id)],
});