Skip to content

Commit

Permalink
Merge pull request #126 from jayden-sudo/develop
Browse files Browse the repository at this point in the history
Remove guardianSafePeriodMin restriction
  • Loading branch information
jayden-sudo authored Nov 17, 2023
2 parents 2908e1f + 26ebf12 commit 1df510e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/cyan-ants-sort.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@soulwallet/sdk": patch
---

Remove guardianSafePeriodMin restriction
2 changes: 1 addition & 1 deletion packages/soulwallet-sdk/src/L1KeyStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { WebAuthN } from "./tools/webauthn.js";
export class L1KeyStore implements IL1KeyStore {
static readonly days = 86400;
static readonly defalutInitialGuardianSafePeriod = 2 * L1KeyStore.days;
static readonly guardianSafePeriodMin = 60 * 1;
static readonly guardianSafePeriodMin = 0;
static readonly guardianSafePeriodMax = L1KeyStore.days * 30;

readonly L1KeyStoreContractAddress: string;
Expand Down

0 comments on commit 1df510e

Please sign in to comment.