diff --git a/docs/onchainkit/identity/types.mdx b/docs/onchainkit/identity/types.mdx index 52b61bbc..f8483671 100644 --- a/docs/onchainkit/identity/types.mdx +++ b/docs/onchainkit/identity/types.mdx @@ -115,10 +115,10 @@ type GetAddressReturnType = Address | null; ```ts type GetAttestationsOptions = { - schemas?: EASSchemaUid[]; - revoked?: boolean; - expirationTime?: number; - limit?: number; + schemas?: EASSchemaUid[]; // Array of schema UIDs to filter by + revoked?: boolean; // Filter by revocation status + expirationTime?: number; // Filter by expiration time + limit?: number; // Limit number of results }; ```