-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## What type of PR is this? (check all applicable) - [x] π Feature - [ ] π Bug Fix - [ ] π Documentation Update - [ ] π¨ Style - [ ] π§βπ» Code Refactor - [ ] π₯ Performance Improvements - [ ] β Test - [ ] π€ Build - [ ] π CI - [ ] π¦ Chore (Release) - [ ] β© Revert ## Description This feature automates the process of seeding a predefined DID document for use in development environments. ## Added to documentation? - [x] π README.md - [ ] π [vc-kit doc site](https://uncefact.github.io/vckit/) - [ ] π storybook - [ ] π no documentation needed --------- Co-authored-by: Nam Hoang <hoangxuannam160493@gmail.com>
- Loading branch information
1 parent
2adb515
commit bd3ee1c
Showing
6 changed files
with
101 additions
and
0 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
{"did":"did:web:uncefact.github.io:project-vckit:test-and-development","alias":"uncefact.github.io:project-vckit:test-and-development","provider":"did:web","controllerKeyId":"7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6","keys":[{"kid":"7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6","kms":"local","type":"Ed25519","publicKeyHex":"7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6","privateKeyHex":"5f217ba8a29fb4e4cc4b461212bc28af7b31ffa075d146d34120d5061e631aa9","meta":{"algorithms":["EdDSA","Ed25519"]}}]} |
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,72 @@ | ||
{ | ||
"@context": [ | ||
"https://www.w3.org/ns/did/v1", | ||
"https://w3id.org/security/suites/ed25519-2020/v1", | ||
"https://w3id.org/security/suites/jws-2020/v1" | ||
], | ||
"id": "did:web:uncefact.github.io:project-vckit:test-and-development", | ||
"verificationMethod": [ | ||
{ | ||
"id": "did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6", | ||
"type": "Ed25519VerificationKey2020", | ||
"controller": "did:web:uncefact.github.io:project-vckit:test-and-development", | ||
"publicKeyMultibase": "z6MknjB7dKeKciUSdJAiUUxZYoZ5kkJHZWtaPDX3uXvCZagV" | ||
}, | ||
{ | ||
"id": "did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6-JsonWebKey2020-key-0", | ||
"type": "JsonWebKey2020", | ||
"controller": "did:web:uncefact.github.io:project-vckit:test-and-development", | ||
"publicKeyJwk": { | ||
"kty": "OKP", | ||
"crv": "Ed25519", | ||
"x": "evE2qO-hGk3y6QELlyvbkqABNyS1Dl76RUB6Ld6hhOY" | ||
} | ||
}, | ||
{ | ||
"id": "did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6-JsonWebKey2020-key-1", | ||
"type": "JsonWebKey2020", | ||
"controller": "did:web:uncefact.github.io:project-vckit:test-and-development", | ||
"publicKeyJwk": { | ||
"kty": "OKP", | ||
"crv": "X25519", | ||
"x": "-O3nPjITiIlmPK8hQPI92s4gZio4M3esuk2HAyG3QzY" | ||
} | ||
}, | ||
{ | ||
"id": "did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6-JsonWebKey-key-0", | ||
"type": "JsonWebKey", | ||
"controller": "did:web:uncefact.github.io:project-vckit:test-and-development", | ||
"publicKeyJwk": { | ||
"kty": "OKP", | ||
"crv": "Ed25519", | ||
"x": "evE2qO-hGk3y6QELlyvbkqABNyS1Dl76RUB6Ld6hhOY" | ||
} | ||
}, | ||
{ | ||
"id": "did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6-JsonWebKey-key-1", | ||
"type": "JsonWebKey", | ||
"controller": "did:web:uncefact.github.io:project-vckit:test-and-development", | ||
"publicKeyJwk": { | ||
"kty": "OKP", | ||
"crv": "X25519", | ||
"x": "-O3nPjITiIlmPK8hQPI92s4gZio4M3esuk2HAyG3QzY" | ||
} | ||
} | ||
], | ||
"authentication": [ | ||
"did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6", | ||
"did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6-JsonWebKey2020-key-0", | ||
"did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6-JsonWebKey2020-key-1", | ||
"did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6-JsonWebKey-key-0", | ||
"did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6-JsonWebKey-key-1" | ||
], | ||
"assertionMethod": [ | ||
"did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6", | ||
"did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6-JsonWebKey2020-key-0", | ||
"did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6-JsonWebKey2020-key-1", | ||
"did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6-JsonWebKey-key-0", | ||
"did:web:uncefact.github.io:project-vckit:test-and-development#7af136a8efa11a4df2e9010b972bdb92a0013724b50e5efa45407a2ddea184e6-JsonWebKey-key-1" | ||
], | ||
"keyAgreement": [], | ||
"service": [] | ||
} |
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