-
Notifications
You must be signed in to change notification settings - Fork 87
Wrapped Keys #513
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
DashKash54
merged 30 commits into
feature/lit-3125-sdk-for-wrapping-up-walletx-2
from
wrapped-keys-multinetwork-address-algo
Jun 29, 2024
Merged
Wrapped Keys #513
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
21cfaf3
chore(types): LIT-3125 - Run eslint --fix on types.ts
MaximusHaximus d6c1a7b
types: LIT-3125 - Fix incorrect interface for SessionKeySignedMessage…
MaximusHaximus 549cd84
feat(wrapped-keys): LIT-3125 - Add wrapped keys backend service clien…
MaximusHaximus 46faa91
feat(wrapped-keys): LIT-3125 - Add wrapped keys LIT actions client layer
MaximusHaximus b05917a
feat(wrapped-keys): LIT-3125 - Constants, types and tests updates
MaximusHaximus ad58e5a
chore(wrapped-keys): LIT-3125 - Add note to LIT action about missing …
MaximusHaximus cba8d1d
chore(wrapped-keys): LIT-3125 - Add return type interface for export …
MaximusHaximus e3d2055
feat(wrapped-keys): LIT-3125 - Implement main API layer for wrapped keys
MaximusHaximus 5b5abb1
chore(wrapped-keys): LIT-3125 - Update entrypoint exports to be expli…
MaximusHaximus d1e49f8
types(types): LIT-3125 - Revert change to AccessControlConditions typ…
MaximusHaximus 5af0435
constants(wrapped-keys): LIT-3125 - Remove NETWORK_XXXX constants as …
MaximusHaximus 5d89170
test(wrapped-keys): LIT-3125 - Update success tests to latest wrapped…
MaximusHaximus b66af98
test(wrapped-keys): LIT-3125 - Update fail tests
MaximusHaximus d8d17ce
chore(wrapped-keys): LIT-3125 - Rename `algo` to `keyType` to avoid c…
MaximusHaximus 9eb0f47
chore(wrapped-keys): LIT-3125 - Remove 'custom' API behaviours and ty…
MaximusHaximus 900ede1
chore(wrapped-keys): LIT-3125 - Remove 'custom' tests
MaximusHaximus e9d771e
docs(wrapped-keys): LIT-3125 - Update exports for JSDocs
MaximusHaximus 8cff023
feat(wrapped-keys): LIT-3125 - Add storeEncryptedKeyMetadata() method…
MaximusHaximus 241fa97
feat(wrapped-keys): LIT-3125 - Replace `address` with `publicKey`
MaximusHaximus c3166a5
test(wrapped-keys): LIT-3125 - Update tests to use `publicKey` instea…
MaximusHaximus ac8f173
chore(wrapped-keys): LIT-3125 - Make internal service client params i…
MaximusHaximus b48efc9
fix(wrapped-keys): LIT-3125 - Remove inadvertent imports from `index.…
MaximusHaximus 8140964
Published version: 6.0.3@wrapped-keys
DashKash54 878c4fa
fix(wrapped-keys): LIT-3125 - Remove FIXME :)
MaximusHaximus acb10f2
test(wrapped-keys): LIT-3125 - Fix actually-failing-fail test string …
MaximusHaximus c3dafd0
fix(wrapped-keys): LIT-3125 - Add strong type for `KeyType`, and comp…
MaximusHaximus cbdc556
chore(wrapped-keys): LIT-3125 - Remove commented code and excess `con…
MaximusHaximus 0be70bb
docs(wrapped-keys): LIT-3125 - Fix JSDoc for `StoreEncryptedKeyMetada…
MaximusHaximus 6b72634
docs(wrapped-keys): LIT-3125 - Export constants for `keyType` and `ne…
MaximusHaximus 3a7c943
refac: Prettier
DashKash54 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
chore(types): LIT-3125 - Run eslint --fix on types.ts
- Loading branch information
commit 21cfaf35bdf15f7add6ec2882fcad65963e15c72
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why have we changed these to interfaces do we plan to extend it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nothing changed -- our ESLint rule configuration (and SDK-wide convention) enforces that we always use interfaces unless we are using features that require a type. I ran
eslint --fix
on the file and it fixed the entries that should have been interfaces :). See first commit in the pr here: 21cfaf3There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Then EsLint is not being run in the CI? @MaximusHaximus @Ansonhkg ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's right, there is no mutative CI that changes files, and not everyone has their editors set to run
eslint --fix
on save, so these things happen ™️. It's been on the roadmap to implement for a few months.