UNPKG

lisk-framework

Version:

Lisk blockchain application platform

12 lines (11 loc) 420 B
import { ImmutableMethodContext } from '../../state_machine'; import { BaseMethod } from '../base_method'; import { ModuleConfig } from './types'; export interface MethodInitArgs { config: ModuleConfig; } export declare class DynamicRewardMethod extends BaseMethod { private _config; init(args: MethodInitArgs): void; getDefaultRewardAtHeight(_context: ImmutableMethodContext, height: number): bigint; }