lisk-framework
Version:
Lisk blockchain application platform
22 lines (21 loc) • 713 B
TypeScript
/// <reference types="node" />
import { ApplicationConfig } from '../../types';
export declare const defaultConfig: ApplicationConfig;
export declare const getKeysFromDefaultConfig: (address: Buffer) => {
address: string;
keyPath: string;
publicKey: string;
privateKey: string;
plain: {
generatorKeyPath: string;
generatorKey: string;
generatorPrivateKey: string;
blsKeyPath: string;
blsKey: string;
blsProofOfPossession: string;
blsPrivateKey: string;
};
encrypted: {};
};
export type Keys = ReturnType<typeof getKeysFromDefaultConfig>;
export declare const getGeneratorPrivateKeyFromDefaultConfig: (address: Buffer) => Buffer;