A library to parse and verify Blockcerts certificates.
$ npm i @blockcerts/cert-verifier-js
Instantiation of the certificate now becomes asynchronous.
While you would import the Certificate
constructor and instantiate identically (see below), consumers now need to call the async function init
.
Example:
import { Certificate } from '@blockcerts/cert-verifier-js';
let certificate = new Certificate(certificateDefinition);
await certificate.init();
Exposed by default:
const { Certificate } = require('@blockcerts/cert-verifier-js');
var certificate = new Certificate(certificateDefinition);
const { Certificate } = require('@blockcerts/cert-verifier-js/lib');
var certificate = new Certificate(certificateDefinition);
import { Certificate } from '@blockcerts/cert-verifier-js';
let certificate = new Certificate(certificateDefinition);
<script src='node_modules/@blockcerts/cert-verifier-js/dist/verifier-iife.js'></script>
<script>
var certificate = new Verifier.Certificate(certificateDefinition);
</script>
You can find more examples in the test folder.
var fs = require('fs');
fs.readFile('./certificate.json', 'utf8', function (err, data) {
if (err) {
console.log(err);
}
let certificate = new Certificate(data);
console.log(cert.name);
});
var fs = require('fs');
fs.readFile('./certificate.json', 'utf8', function (err, data) {
if (err) {
console.log(err);
}
let certificate = new Certificate(data);
const verificationResult = await certificate.verify(({code, label, status, errorMessage}) => {
console.log('Code:', code, label, ' - Status:', status);
if (errorMessage) {
console.log(`The step ${code} fails with the error: ${errorMessage}`);
}
});
if (verificationResult.status === 'failure') {
console.log(`The certificate is not valid. Error: ${verificationResult.errorMessage}`);
}
});
const certificate = new Certificate(certificateDefinition);
The constructor automatically parses a certificate.
certificateDefinition
(String|Object
): the certificate definition. Can either be a string or a JSON object.options
: (Object
): an object of options. The following properties are used:- locale: (
String
): language code used to set the language used by the verifier. Default:en-US
. If set toauto
it will use the user's browser language if available, or default toen-US
. See the dedicated section for more information. - explorerAPIs: (
[Object]
): As of v4.1.0 it is possible to provide a custom service API for the transaction explorer. This enables customers to select a potentially more reliable/private explorer to retrieve the blockchain transaction bound to a Blockcert. See the dedicated section for more information.
- locale: (
The certificate instance has the following properties:
certificateImage
:String
. Raw data of the certificate imagecertificateJson
:Object
. Certificate JSON objectchain
:Object
. Chain the certificate was issued ondescription
:String
. Description of the certificateexpires
:String|null
. Expiration dateid
:String
. Certificate's IDisFormatValid
:Boolean
. Indicates whether or not the certificate has a valid formatissuedOn
:String
. Datetime of issuance (ISO-8601)issuer
:Object
. Certificate issuerlocale
:String
. Language code used by the verifiermetadataJson
:Object|null
. Certificate metadata objectname
:String
. Name of the certificatepublicKey
:String
. Certificate's public keyreceipt
:Object
. Certificate's receiptrecipientFullName
:String
. Full name of recipientrecordLink
:String
. Link to the certificate recordrevocationKey
:String|null
. Revocation key (if any)sealImage
:String
. Raw data of the seal's image;signature
:String|null
. Certificate's signaturesignatureImage
:SignatureImage[]
. Array of certificate signature lines.subtitle
:String|null
. Subtitle of the certificatetransactionId
:String
. Transaction IDrawTransactionLink
:String
. Raw transaction IDtransactionLink
:String
. Transaction linkverificationSteps
:VerificationStep[]
. The array of steps the certificate will have to go through during verificationversion
:CertificateVersion
. Version of the certificate
Note: verificationSteps
is generated according to the nature of the certificate. The full steps array is provided ahead of verification in order to give more flexibility to the consumer. For example, you might want to pre-render the verification steps for animation, or render a count of steps and/or sub-steps.
VerificationStep
has the following shape:
{
code: 'formatValidation',
label: 'Format validation',
labelPending: 'Validating format',
subSteps: [
{
code: 'getTransactionId',
label: 'Get transaction ID',
labelPending: 'Getting transaction ID',
parentStep: 'formatValidation'
},
...
]
}
This will run the verification of a certificate. The function is asynchronous.
const certificateVerification = await certificate.verify(({code, label, status, errorMessage}) => {
console.log('Sub step update:', code, label, status);
}));
console.log(`Verification was a ${certificateVerification.status}:`, certificateVerification.message);
({code, label, status, errorMessage}) => {}
(Function
): callback function called whenever a substep status has changed. The callback parameter has 4 properties:code
: substep codelabel
: readable label of the substepstatus
: substep status (success
,failure
,starting
)errorMessage
: error message (optional)
The final verification status:
{ code, status, message }
code
: code of the final step (final
)status
: final verification status (success
,failure
)message
string | Object: status message. It is internationalized and in case of failure it returns the error message of the failed step. When an object, it takes the following shape:label
: Main label of the final stepdescription
: further details about the issuancelinkText
: translation provided for a link text towards the transaction
Shape of the returned object can be checked here: https://github.com/blockchain-certificates/cert-verifier-js/blob/master/src/data/i18n.json#L41
Several constants are being exposed:
import { BLOCKCHAINS, STEPS, SUB_STEPS, CERTIFICATE_VERSIONS, VERIFICATION_STATUSES } from '@blockcerts/cert-verifier-js';
BLOCKCHAINS
: descriptive object of all blockchains supported by the librarySTEPS
: descriptive object of all verification steps (top level)SUB_STEPS
: descriptive object of all verification substepsCERTIFICATE_VERSIONS
: list of all certificate versionsVERIFICATION_STATUSES
The exposed function getSupportedLanguages()
returns an array of language codes supported by the library.
import { getSupportedLanguages } from '@blockcerts/cert-verifier-js';
getSupportedLanguages(); // ['en-US', 'es-ES', 'mt', ...]
You can use the codes for the locale
option.
Please note that while we are working to add new languages, any new translation is welcome through forking & PR.
As of v4.1.0, customers of this library have the ability to provide a set of blockchain explorers that will be used to retrieve the transaction data used for storing a Blockerts on a blockchain, through the explorerAPIs
option key.
NOTE: With the addition of Typescript to this library, some types are now exposed for consumers.
The property is set as part of the options
parameter of the Certificate
constructor, as follows:
const certificate = new Certificate(definition, options);
The expected shape of the object is as follows:
key?: string;
keyPropertyName?: string;
serviceName?: TRANSACTION_APIS;
serviceURL: string | ExplorerURLs;
priority: 0 | 1 | -1; // 0 means the custom API will be ran before the public APIs listed, 1 after, -1 is reserved for default explorers
parsingFunction: TExplorerParsingFunction;
More information on each item:
serviceName
: when a consumer wants to overwrite some information of the default explorer APIs provided (for instance provide their own keys to the service API), they should match the name of that API service with this property.key
: the explorer service API key value.keyPropertyName
: the expected parameter name to hold the key value. Depends on each service. (ie: Etherscan: "apiKey", Blockcypher: "token", etc). Required when a key is passed.serviceURL
: when set tostring
will be assumed to be set for themainnet
of the Blockchain. When set to an object, the customer will be able to provide a service url for themainnet
and for thetestnet
versions of the blockchain. The object is then shaped as such:
{
main: 'url',
test: 'url'
}
-
priority
: this option allows the customer to decide if they wish to see their custom explorers to be executed before/after the default ones provided by the library (see the constants/api file for a list of default explorers). If the option is set to0
, custom explorers will be called first. If set to1
they will be called after the default ones.-1
value is reserved for default explorers. -
parsingFunction (response: Object, chain?: SupportedChains, key?: string, keyPropertyName?: string)
: this function is required to parse the data (server response) as returned from the API, into theTransactionData
shape that will be used by the library. Arguments: -
response
: the response object as returned by the explorer service that was called. -
chain
: (optional) the blockchain which to lookup. Mostly used to identify if it is a test chain or a main chain. -
key
: (optional) when further calls need to be made to the same API, the API key is injected again to the parsing function for convenience. -
keyPropertyName
: (optional) when further calls need to be made to the same API, the API key is injected again to the parsing function for reference. The expected output shape is as follows:
interface TransactionData {
remoteHash: string;
issuingAddress: string;
time: string | Date;
revokedAddresses: string[];
}
The consumer needs to write their own function for each service used.
$ npm run test
$ npm run build
The build files are in the dist
folder.
If you want more details about the verification process, please check out the documentation.
Contact us at the Blockcerts community forum.