From 6147240f3390b4522536ae738178f9510be7afcf Mon Sep 17 00:00:00 2001 From: Jason Spafford Date: Tue, 7 Oct 2025 15:05:11 -0700 Subject: [PATCH] Added comments for GetAttestationOptions for 0.38.x These doc comments were in the latest docs, but this type was copied and didn't have the comment strings. Porting these to the older version of this doc. --- docs/onchainkit/identity/types.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 }; ```