-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: switch to MetaMask private keys (#45)
* feat: add ceramic tests * feat: add test for did key document * fix: fix yarn install problem * fix: update yarn lock * fix: fix yarnrc.yml * fix: remove SnapKeyStore * fix: fixes lint issues, adds interactive-tools * feat: add bip44entropy * chore: get latest commit * fix: fix some old issues and add jest-eslint plugin * fix: ignore coverage in prettier * chore: upgrade veramo + metamask * docs: update discord link Co-authored-by: martines3000 <domajnko.martin@gmail.com> * chore: upgrade veramo + metamask * fix: create apiParams object * fix: fix veramoCreateVP * chore: remove unnecessary imports * feat: upgrade to CredentialPlugin * feat: add getKeysFromAddress function * feat: generate public key from private key * fix: fix some tests * Merge feat/ceramic-tests into feat/mm-private-keys (#44) * docs: remove mentions of rinkeby (#34) * docs: remove rinkeby mentions Co-authored-by: martines3000 <domajnko.martin@gmail.com> * fix: fixes deploy workflow (#37) * fix: should fix deploy_docs workflow * fix: depend on built packages when starting snap package (#38) * fix: release please for monorepo (#39) * fix: should fix release-please workflow * chore: try to fix release * chore: add dispatch to release * chore: change last release sha * chore: update bootstrap-sha * fix: fix some old issues and add jest-eslint plugin * fix: ignore coverage in prettier * chore: upgrade veramo + metamask * docs: update discord link * feat: integrates nx-cloud and updates workflows (#42) * feat: adds nx-cloud and updates workflows * fix: change default branch and set node-version * fix: volta pin versions * chore: test forked workflow * chore: try removing @main * chore: try using local workflow * fix: fixes typo and secrets * chore: update yarn.lock * chore: lint * fix: deploy_docs.yml Co-authored-by: martines3000 <domajnko.martin@gmail.com> Co-authored-by: Martin Domajnko <35891136+martines3000@users.noreply.github.com> Co-authored-by: Urban <urbanfoundit@gmail.com> * feat: fix tests * chore: lint * fix: yarn lock * fix: fix verifyPresentation * chore: remove console * fix: add coin_type parameter * fix: move constants * fix: lint * feat: adds `snap_getBip44Entropy` implementation to tests * fix: pr feedback * fix: pr feedback * fix: refactor keyPair.ts * chore: lint Co-authored-by: martines3000 <domajnko.martin@gmail.com> Co-authored-by: Martin Domajnko <35891136+martines3000@users.noreply.github.com> Co-authored-by: Urban <urbanfoundit@gmail.com>
- Loading branch information
1 parent
872ddae
commit ca75794
Showing
55 changed files
with
3,038 additions
and
3,430 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ node_modules | |
build | ||
dist | ||
.docusaurus | ||
coverage |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export const availableVCStores = ['snap', 'ceramic'] as const; | ||
|
||
export const availableMethods = ['did:ethr', 'did:key'] as const; | ||
|
||
export const didCoinTypeMappping: Record<string, number> = { | ||
'did:ethr': 60, | ||
'did:key': 60, | ||
}; |
This file was deleted.
Oops, something went wrong.
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.