UNPKG

lisk-framework

Version:

Lisk blockchain application platform

10 lines (9 loc) 474 B
import { ModuleEndpointContext } from '../../types'; import { BaseEndpoint } from '../base_endpoint'; import { GetFeeTokenIDResponse, GetMinFeePerByteResponse, ModuleConfig } from './types'; export declare class FeeEndpoint extends BaseEndpoint { private _config; init(config: ModuleConfig): void; getFeeTokenID(_ctx: ModuleEndpointContext): Promise<GetFeeTokenIDResponse>; getMinFeePerByte(_ctx: ModuleEndpointContext): Promise<GetMinFeePerByteResponse>; }