lisk-framework
Version:
Lisk blockchain application platform
32 lines (31 loc) • 694 B
TypeScript
/// <reference types="node" />
import { BaseStore } from '../../base_store';
export interface BLSKeyData {
address: Buffer;
}
export declare const blsKeyDataSchema: {
$id: string;
title: string;
type: string;
properties: {
address: {
dataType: string;
fieldNumber: number;
};
};
required: string[];
};
export declare class BLSKeyStore extends BaseStore<BLSKeyData> {
schema: {
$id: string;
title: string;
type: string;
properties: {
address: {
dataType: string;
fieldNumber: number;
};
};
required: string[];
};
}