Skip to content

Commit 6147240

Browse files
committed
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.
1 parent 8e78557 commit 6147240

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/onchainkit/identity/types.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ type GetAddressReturnType = Address | null;
115115

116116
```ts
117117
type GetAttestationsOptions = {
118-
schemas?: EASSchemaUid[];
119-
revoked?: boolean;
120-
expirationTime?: number;
121-
limit?: number;
118+
schemas?: EASSchemaUid[]; // Array of schema UIDs to filter by
119+
revoked?: boolean; // Filter by revocation status
120+
expirationTime?: number; // Filter by expiration time
121+
limit?: number; // Limit number of results
122122
};
123123
```
124124

0 commit comments

Comments
 (0)