Skip to content

Commit

Permalink
Merge development into master (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
evaldofelipe authored Jul 4, 2024
2 parents d7ebab2 + f37c184 commit 04f9249
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ function isOvalConfigs(input: unknown): input is OvalConfigs {
Object.keys(input).length === new Set(Object.keys(input)).size &&
Object.keys(input).every((key) => isAddress(key)) &&
Object.values(input).every((value) => isOvalConfig(value)) &&
Object.values(input).length === new Set(Object.values(input).map((value) => value.unlockerKey)).size
Object.values(input).length === new Set(Object.values(input).map((value) => value.unlockerKey || value.gckmsKeyId)).size
);
}

Expand Down

0 comments on commit 04f9249

Please sign in to comment.