-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(key-manager): add generic signing capabilities (#529)
* test(key-manager): add tests using testvectors for `keyManagerSign*` * feat(key-manager): add generic signing capabilities * feat(did-provider-ethr): use generic signer in did:ethr provider * fix(did-provider-ethr): fix web3 provider and transaction data for did:ethr CRUD fixes #522 * feat(key-manager): add default implementation to legacy sign methods that leverage the unified signer * test(key-manager): add extra tests using testvectors for `keyManagerSign()` * chore(kms-local): rename parameters of `sign()` method & separate signing code into methods
- Loading branch information
Showing
26 changed files
with
817 additions
and
338 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"cSpell.words": [ | ||
"arrayify", | ||
"ethersproject" | ||
] | ||
} |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.