ApprovalEventFilters

Represents the filters for the "Approval" event.

type ApprovalEventFilters = Partial<{
approved: AbiParameterToPrimitiveType<{
indexed: true;
name: "approved";
type: "address";
}>;
owner: AbiParameterToPrimitiveType<{
indexed: true;
name: "owner";
type: "address";
}>;
tokenId: AbiParameterToPrimitiveType<{
indexed: true;
name: "tokenId";
type: "uint256";
}>;
}>;