UNPKG

lisk-framework

Version:

Lisk blockchain application platform

35 lines (34 loc) 823 B
/// <reference types="node" /> import { BaseStore } from '../../base_store'; export declare const registeredNamesSchema: { $id: string; type: string; required: string[]; properties: { chainID: { dataType: string; minLength: number; maxLength: number; fieldNumber: number; }; }; }; export interface ChainID { chainID: Buffer; } export declare class RegisteredNamesStore extends BaseStore<ChainID> { schema: { $id: string; type: string; required: string[]; properties: { chainID: { dataType: string; minLength: number; maxLength: number; fieldNumber: number; }; }; }; get storePrefix(): Buffer; }