/** * Module errors. * * @module */ /** Stake lockup duration cannot be zero */ export declare const EZERO_LOCKUP_DURATION: { readonly code: 1; readonly name: "EZERO_LOCKUP_DURATION"; readonly doc: "Stake lockup duration cannot be zero"; }; /** Reward rate denominator cannot be zero */ export declare const EZERO_REWARDS_RATE_DENOMINATOR: { readonly code: 2; readonly name: "EZERO_REWARDS_RATE_DENOMINATOR"; readonly doc: "Reward rate denominator cannot be zero"; }; /** Specified stake range is invalid. Max must be greater than min */ export declare const EINVALID_STAKE_RANGE: { readonly code: 3; readonly name: "EINVALID_STAKE_RANGE"; readonly doc: "Specified stake range is invalid. Max must be greater than min"; }; /** The voting power increase limit percentage must be within (0, 50] */ export declare const EINVALID_VOTING_POWER_INCREASE_LIMIT: { readonly code: 4; readonly name: "EINVALID_VOTING_POWER_INCREASE_LIMIT"; readonly doc: "The voting power increase limit percentage must be within (0, 50]"; }; //# sourceMappingURL=errors.d.ts.map