autogram-sdk
v0.0.2
Published
SDK for Autogram signer
Downloads
195
Readme
Autogram SDK - use Autogram signer from web
Installation
npm install autogram-sdk
Usage
import { FullClient } from ".";
const client = new FullClient();
const { content, issuedBy, signedBy } = await client.sign(
{
content: "hello world",
filename: "hello.txt",
},
{
level: "XAdES_BASELINE_B",
container: "ASiC_E",
},
"text/plain",
true
);