@bithomp/xrpl-api
Version:
A Bithomp JavaScript/TypeScript library for interacting with the XRP Ledger
5 lines (4 loc) • 551 B
TypeScript
import { VLInterface, ValidatorInterface, VLBlobInterface, VLSecretKeysInterface } from "../models/vl";
export declare function createVL(masterKey: VLSecretKeysInterface, ephemeralKey: VLSecretKeysInterface, sequence: number, expiration: number, validatorsPublicKeys: string[]): Promise<VLInterface>;
export declare function createVLBlob(sequence: number, expiration: number, validatorsPublicKeys: string[]): Promise<VLBlobInterface>;
export declare function getVLBlobValidatorsManifest(validatorsPublicKeys: string[]): Promise<ValidatorInterface[]>;