0.5.3 • Published 2 years ago

aws-kms-signer v0.5.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

aws-kms-signer

npm version

Install

$ npm install aws-kms-signer

Examples

import { KmsSigner } from "aws-kms-signer";

async function main() {
  const keyId = "xxxxx-xxxx-xxxx-xxxx-xxxxxxxx";
  const signer = new KmsSigner(keyId);

  console.log(await signer.getAddress());
}

main().catch((e) => console.error(e));