Skip to content

Commit

Permalink
chore: fix validation script
Browse files Browse the repository at this point in the history
Signed-off-by: Mirko Mollik <[email protected]>
  • Loading branch information
cre8 committed Sep 27, 2024
1 parent de36d2b commit 61697eb
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 44 deletions.
2 changes: 1 addition & 1 deletion viewer/scripts/validate.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ async function validateWallets() {
if(wallet.dependencies) {
for(const dependency of wallet.dependencies) {
if(!dependencyIds.includes(dependency)) {
console.error(`dependency ${dependency} not found in dependencies`);
console.error(`[${fileName}]: dependency ${dependency} not found in dependencies`);
success = false;
}
}
Expand Down
2 changes: 1 addition & 1 deletion wallets/BC Wallet.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
"urlAppStore": "https://apps.apple.com/us/app/bc-wallet/id1587380443",
"urlGooglePlayStore": "https://play.google.com/store/apps/details?id=ca.bc.gov.BCWallet",
"urlWebsite": "https://www2.gov.bc.ca/gov/content/governments/government-id/bc-wallet",
"dependencies": ["Bifold", "Credo", "SD-JWT-JS"]
"dependencies": ["bifold", "credo", "sd-jwt-js"]
}
50 changes: 25 additions & 25 deletions wallets/Paradym Wallet.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{
"capability": ["holder"],
"company": "Animo Solutions",
"contact": "[email protected]",
"credentialFormats": ["JWT-VC", "AnonCred", "SD-JWT-VC"],
"downloadSource": "https://github.com/animo/paradym-wallet",
"issuanceProtocols": ["OpenID4VCI", "Issue Credential v2"],
"keyManagements": ["did:jwk", "did:key", "did:web", "did:cheqd", "did:indy"],
"logo": "logos/paradym-wallet.png",
"name": "Paradym Wallet",
"openSource": true,
"presentationProtocols": ["OpenID4VP"],
"$schema": "../viewer/src/assets/schema.json",
"signingAlgorithms": ["EdDSA", "ECDSA"],
"type": "edge",
"license": "Apache-2.0",
"statusManagements": ["Indy Revocation", "JWT/CWT status list"],
"dependencies": ["Credo", "SD-JWT-JS"],
"credentialProfiles": [
"AnonCreds with did:cheqd",
"AnonCreds with did:indy",
"Decentralized Identity Interop Profile"
],
"urlAppStore": "https://apps.apple.com/nl/app/paradym-wallet/id6449846111?l=en",
"urlGooglePlayStore": "https://play.google.com/store/apps/details?id=id.paradym.wallet",
"urlWebsite": "https://docs.paradym.id/integrating-with-a-holder-wallet/paradym-wallet"
"capability": ["holder"],
"company": "Animo Solutions",
"contact": "[email protected]",
"credentialFormats": ["JWT-VC", "AnonCred", "SD-JWT-VC"],
"downloadSource": "https://github.com/animo/paradym-wallet",
"issuanceProtocols": ["OpenID4VCI", "Issue Credential v2"],
"keyManagements": ["did:jwk", "did:key", "did:web", "did:cheqd", "did:indy"],
"logo": "logos/paradym-wallet.png",
"name": "Paradym Wallet",
"openSource": true,
"presentationProtocols": ["OpenID4VP"],
"$schema": "../viewer/src/assets/schema.json",
"signingAlgorithms": ["EdDSA", "ECDSA"],
"type": "edge",
"license": "Apache-2.0",
"statusManagements": ["Indy Revocation", "JWT/CWT status list"],
"dependencies": ["credo", "sd-jwt-js"],
"credentialProfiles": [
"AnonCreds with did:cheqd",
"AnonCreds with did:indy",
"Decentralized Identity Interop Profile"
],
"urlAppStore": "https://apps.apple.com/nl/app/paradym-wallet/id6449846111?l=en",
"urlGooglePlayStore": "https://play.google.com/store/apps/details?id=id.paradym.wallet",
"urlWebsite": "https://docs.paradym.id/integrating-with-a-holder-wallet/paradym-wallet"
}
34 changes: 17 additions & 17 deletions wallets/Paradym.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"capability": ["issuer", "verifier"],
"company": "Animo Solutions",
"contact": "[email protected]",
"credentialFormats": ["AnonCred", "SD-JWT-VC"],
"issuanceProtocols": ["OpenID4VCI", "Issue Credential v2"],
"keyManagements": ["did:jwk", "did:key", "did:web", "did:cheqd"],
"logo": "logos/paradym-wallet.png",
"name": "Paradym",
"openSource": false,
"presentationProtocols": ["OpenID4VP"],
"$schema": "../viewer/src/assets/schema.json",
"signingAlgorithms": ["EdDSA", "ECDSA"],
"statusManagements": ["Indy Revocation", "JWT/CWT status list"],
"dependencies": ["Credo", "SD-JWT-JS"],
"credentialProfiles": ["AnonCreds with did:cheqd"],
"type": "cloud",
"urlWebsite": "https://paradym.id"
"capability": ["issuer", "verifier"],
"company": "Animo Solutions",
"contact": "[email protected]",
"credentialFormats": ["AnonCred", "SD-JWT-VC"],
"issuanceProtocols": ["OpenID4VCI", "Issue Credential v2"],
"keyManagements": ["did:jwk", "did:key", "did:web", "did:cheqd"],
"logo": "logos/paradym-wallet.png",
"name": "Paradym",
"openSource": false,
"presentationProtocols": ["OpenID4VP"],
"$schema": "../viewer/src/assets/schema.json",
"signingAlgorithms": ["EdDSA", "ECDSA"],
"statusManagements": ["Indy Revocation", "JWT/CWT status list"],
"dependencies": ["credo", "sd-jwt-js"],
"credentialProfiles": ["AnonCreds with did:cheqd"],
"type": "cloud",
"urlWebsite": "https://paradym.id"
}

0 comments on commit 61697eb

Please sign in to comment.