Creates an event object for the AdminReset event.
import { getContractEvents } from "thirdweb";import { adminResetEvent } from "thirdweb/extensions/farcaster"; const events = await getContractEvents({contract,events: [ adminResetEvent({ fid: ...,})],});
function adminResetEvent( filters: Partial<{ fid: bigint }>,): PreparedEvent<{ readonly inputs: readonly [ { readonly indexed: true; readonly name: "fid"; readonly type: "uint256"; }, ]; readonly name: "AdminReset"; readonly type: "event";}>;
Optional filters to apply to the event.
let filters: Partial<{ fid: bigint }>;
let returnType: PreparedEvent<{ readonly inputs: readonly [ { readonly indexed: true; readonly name: "fid"; readonly type: "uint256"; }, ]; readonly name: "AdminReset"; readonly type: "event";}>;
The prepared event object.