///
import { BaseStore } from '../../base_store';
export interface NameStoreData {
validatorAddress: Buffer;
}
export declare const nameStoreSchema: {
$id: string;
type: string;
required: string[];
properties: {
validatorAddress: {
dataType: string;
fieldNumber: number;
format: string;
};
};
};
export declare class NameStore extends BaseStore {
schema: {
$id: string;
type: string;
required: string[];
properties: {
validatorAddress: {
dataType: string;
fieldNumber: number;
format: string;
};
};
};
}