Skip to content

Commit

Permalink
Add Procivis One (#61)
Browse files Browse the repository at this point in the history
* Fix add wallet repo and company URL

Signed-off-by: Sven Stucki <[email protected]>

* Add Procivis One wallet and agent

Signed-off-by: Sven Stucki <[email protected]>

---------

Signed-off-by: Sven Stucki <[email protected]>
Co-authored-by: Sven Stucki <[email protected]>
  • Loading branch information
svenstucki and svenstucki-pcv authored Apr 23, 2024
1 parent 87b7239 commit cd22b7a
Show file tree
Hide file tree
Showing 5 changed files with 93 additions and 3 deletions.
4 changes: 2 additions & 2 deletions viewer/src/app/wallets-add/wallets-add.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h1 mat-dialog-title>Add wallet</h1>
<li>
Go to the
<a
href="https://github.com/cre8/digital-wallet-and-agent-overviews-sig/new/angular/wallets"
href="https://github.com/openwallet-foundation/digital-wallet-and-agent-overviews-sig"
target="_blank"
>Github Repo</a
>
Expand Down Expand Up @@ -69,7 +69,7 @@ <h1 mat-dialog-title>Add wallet</h1>
</mat-form-field>
<mat-form-field>
<mat-label>Company URL</mat-label>
<input matInput placeholder="Company URL" formControlName="CompanyUrl" />
<input matInput placeholder="Company URL" formControlName="companyUrl" />
<mat-hint>{{ walletsService.getTooltip('companyUrl') }}</mat-hint>
</mat-form-field>
<mat-form-field>
Expand Down
2 changes: 1 addition & 1 deletion viewer/src/app/wallets-add/wallets-add.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class WalletsAddComponent implements OnInit {
name: new FormControl('', [Validators.required]),
logo: new FormControl(''),
company: new FormControl('', [Validators.required]),
CompanyUrl: new FormControl(''),
companyUrl: new FormControl(''),
type: new FormControl('', [Validators.required]),
openSource: new FormControl(false, [Validators.required]),
license: new FormControl('', [Validators.required]),
Expand Down
Binary file added viewer/src/assets/logos/procivis-one.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 44 additions & 0 deletions wallets/Procivis One Wallet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "Procivis One Wallet",
"logo": "logos/procivis-one.png",
"company": "Procivis AG",
"companyUrl": "https://www.procivis.ch",
"type": "edge",
"openSource": false,
"license": "Proprietary",
"capability": [
"holder"
],
"portability": "yes",
"linkToApp": "",
"credentialProfiles": [
"ISO mDL",
"JSON-LD VCs with BBS (Holder DID)"
],
"credentialFormats": [
"JWT-VC",
"LDP-VC",
"MDOC",
"SD-JWT-VC"
],
"issuanceProtocols": [
"OpenID4VCI"
],
"keyManagements": [
"did:jwk",
"did:key",
"did:web",
"pub key in X.509 cert"
],
"presentationProtocols": [
"OpenID4VP"
],
"signingAlgorithms": [
"BBS+ with public key binding",
"ECDSA",
"EdDSA"
],
"statusManagements": ["Status List 2021", "Validity Credential"],
"trustManagements": [],
"$schema": "../schema.json"
}
46 changes: 46 additions & 0 deletions wallets/Procivis One.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "Procivis One",
"logo": "logos/procivis-one.png",
"company": "Procivis AG",
"companyUrl": "https://www.procivis.ch",
"type": "cloud",
"openSource": false,
"license": "Proprietary",
"capability": [
"issuer",
"holder",
"verifier"
],
"portability": "yes",
"linkToApp": "",
"credentialProfiles": [
"ISO mDL",
"JSON-LD VCs with BBS (Holder DID)"
],
"credentialFormats": [
"JWT-VC",
"LDP-VC",
"MDOC",
"SD-JWT-VC"
],
"issuanceProtocols": [
"OpenID4VCI"
],
"keyManagements": [
"did:jwk",
"did:key",
"did:web",
"pub key in X.509 cert"
],
"presentationProtocols": [
"OpenID4VP"
],
"signingAlgorithms": [
"BBS+ with public key binding",
"ECDSA",
"EdDSA"
],
"statusManagements": ["Status List 2021", "Validity Credential"],
"trustManagements": [],
"$schema": "../schema.json"
}

0 comments on commit cd22b7a

Please sign in to comment.