Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Latest commit

 

History

History
11 lines (9 loc) · 334 Bytes

File metadata and controls

11 lines (9 loc) · 334 Bytes

Get started by creating a ContinusecClient.

For example:

var client = new ContinusecClient("<your account number>", "<your secret key>");
var log = client.getVerifiableLog("myfirstlog");
log.create(function () {
    console.log("Success.");
}, function (reason) {
    console.log("Failed:", reason);
});