Skip to content

v1.1.0 - Non Merklized credential support

Compare
Choose a tag to compare
@vmidyllic vmidyllic released this 05 Sep 15:18
· 88 commits to main since this release
77cbb31

What's Changed

Important

There is change in theexported interface of JSON Parser class
from
async parseClaim( credential: W3CCredential, credentialType: string, jsonSchemaBytes: Uint8Array, opts?: CoreClaimOptions ): Promise<CoreClaim>
to
static async parseClaim(credential: W3CCredential, opts?: CoreClaimOptions): Promise<CoreClaim>
To adopt changes you need to exludecredentialType jsonSchemaBytesandopts` parameters from the call and invoke this method as static.

Full Changelog: v1.0.3...v1.1.0