Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

aws-kms-signer

odanado31.4kMIT0.5.3TypeScript support: included

npm version

readme

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));