Skip to content

Instantly share code, notes, and snippets.

@Volland
Last active September 9, 2022 14:36
Show Gist options
  • Save Volland/b411c787be180c13592a96cfcabc0627 to your computer and use it in GitHub Desktop.
Save Volland/b411c787be180c13592a96cfcabc0627 to your computer and use it in GitHub Desktop.
npm init -y
npm install @affinidi/wallet-node-sdk fetch@2 ts-node

ts-node revocable-vc.ts
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import { createWallet } from '@affinidi/wallet-node-sdk'
import { Affinity } from '@affinidi/common'
// @ts-ignore
import platformCryptographyTools from '@affinidi/wallet-node-sdk/dist/PlatformCryptographyTools'
// @ts-ignore
const walletFactory = createWallet('AffinityCore')
const main = async () => {
const accessApiKey = '<your api key hash>'
const options = {
env: 'prod' as 'dev' | 'staging' | 'prod',
accessApiKey
}
const password = 'DemoP@ssw0rd!!'
const walletIssuer = await walletFactory.createWallet(options, password)
const walletHolder = await walletFactory.createWallet(options, password)
const id = `claimId:${(Math.random() + 1).toString(36).substring(2)}`
// https://ui.schema.affinidi.com/schemas/ContentLikeV1-0
const jsonSchema = 'https://schema.affinidi.com/ContentLikeV1-0.json'
const jsonContext = 'https://schema.affinidi.com/ContentLikeV1-0.jsonld'
const unsignedVC = {
'@context': ['https://www.w3.org/2018/credentials/v1', jsonContext],
id,
type: ['VerifiableCredential', 'ContentLike'],
holder: {
id: walletHolder.did
},
credentialSubject: {
data: {
'@type': ['VerifiableCredential', 'ContentLike'],
url: 'https://www.youtube.com/watch?v=owbkzvLhblk',
date: new Date().toISOString(),
like: true,
score: 10
},
},
credentialSchema: {
id: jsonSchema,
type: 'JsonSchemaValidator2018',
},
issuanceDate: new Date().toISOString(),
expirationDate: '2065-09-10T00:00:00.000Z',
}
const rvc = await walletIssuer.buildRevocationListStatus(unsignedVC)
const signedRevocableVC = await walletIssuer.signUnsignedCredential(rvc)
const verifier = new Affinity({
registryUrl: `https://affinity-registry.${options.env}.affinity-project.org`,
apiKey: accessApiKey
}, platformCryptographyTools)
console.log(signedRevocableVC)
const vr = await verifier.validateCredential(signedRevocableVC)
console.log(vr)
await walletIssuer.revokeCredential(id , ' dont like any more ')
const vrRevoked = await verifier.validateCredential(signedRevocableVC)
console.log(vrRevoked)
}
main().catch(console.error)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment