@tkey/storage-layer-torus
TypeScript icon, indicating that this package has built-in type declarations

12.1.0 • Public • Published

tKey Torus Storage Layer

npm version minzip

A storage layer is needed to store and recall the metadata information of the shares generated so as to be able to recover the private key from the tKeys generated. This SDK gives you the ability to get and set the Metadata for the various shares generated.

Installation

npm install --save @tkey/storage-layer-torus

Instantiation

Import the TorusStorageLayer class from @tkey/storage-layer-torus

import TorusStorageLayer from "@tkey/storage-layer-torus";

Assign the TorusStorageLayer class to a variable

const storageLayer = new TorusStorageLayer(TorusStorageLayerArgs);

Parameters

declare type TorusStorageLayerArgs = {
  enableLogging?: boolean;
  hostUrl?: string; // use `https://metadata.tor.us` for connecting to the Torus Metadata Server
  serverTimeOffset?: number;
};

Example

import TorusStorageLayer from "@tkey/storage-layer-torus";

const storageLayer = new TorusStorageLayer({ hostUrl: "https://metadata.tor.us" });

Readme

Keywords

none

Package Sidebar

Install

npm i @tkey/storage-layer-torus

Weekly Downloads

1,501

Version

12.1.0

License

MIT

Unpacked Size

317 kB

Total Files

10

Last publish

Collaborators

  • himanshunpm009
  • chaitanyapotti