Skip to content

Commit

Permalink
fix(exp): RegisterOnChainOptions should have expiration in seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
whitneypurdum committed Aug 10, 2022
1 parent 3a52a70 commit 61f02a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ___

`Optional` **expirationTimestamp**: `number`

A Unix timestamp expressed in milliseconds of when the claim expires.
A Unix timestamp expressed in seconds of when the claim expires.

___

Expand Down
2 changes: 1 addition & 1 deletion src/modules/claims/claims.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export interface RegisterOnchainOptions {
/** DID of the claim subject */
subject?: string;

/** A Unix timestamp expressed in milliseconds of when the claim expires. */
/** A Unix timestamp expressed in seconds of when the claim expires. */
expirationTimestamp?: number;
}

Expand Down

0 comments on commit 61f02a4

Please sign in to comment.