@tkey-singularity/storage-layer-torus
v14.0.0
Published
TKey Torus Storage Layer Module
Downloads
51
Readme
tKey Torus Storage Layer
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-singularity/storage-layer-torus
Instantiation
Import the TorusStorageLayer
class from @tkey-singularity/storage-layer-torus
import TorusStorageLayer from "@tkey-singularity/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-singularity/storage-layer-torus";
const storageLayer = new TorusStorageLayer({ hostUrl: "https://metadata.tor.us" });