import { FixedInt, FixedPortion } from "fpnum"; import { JB_TOKEN_DECIMALS } from "../constants"; /** * Reserved rate for a funding cycle. * * Has a decimal precision of 4 and a maximum value of 10,000. * * @extends FixedPortion */ export declare class ReservedRate extends FixedPortion<4> { constructor(value: bigint); } /** * Redemption rate for a funding cycle. * * Has a decimal precision of 4 and a maximum value of 10,000. * @extends FixedPortion */ export declare class RedemptionRate extends FixedPortion<4> { constructor(value: bigint); } /** * Discount rate for a funding cycle. * * Has a decimal precision of 9 and a maximum value of 1,000,000,000. * @extends FixedPortion */ export declare class DiscountRate extends FixedPortion<9> { constructor(value: bigint); } /** * Ether value. * * Has a decimal precision of 18. * * @extends FixedInt */ export declare class Ether extends FixedInt<18> { constructor(value: bigint); } /** * JB token value. * * Has a decimal precision of 18. * * @extends FixedInt */ export declare class JBToken extends FixedInt { constructor(value: bigint); } /** * Funding cycle weight. * * Has a decimal precision of 18. * * @extends FixedInt */ export declare class FundingCycleWeight extends FixedInt<18> { constructor(value: bigint); } //# sourceMappingURL=data.d.ts.map