@reef-defi/types
Version:
Polkadot.js type definations for Reef Chain
14 lines (13 loc) • 482 B
TypeScript
import type { Enum } from '@polkadot/types';
import type { CurrencyId } from '@reef-defi/types/interfaces/primitives';
/** @name PoolId */
export interface PoolId extends Enum {
readonly isLoans: boolean;
readonly asLoans: CurrencyId;
readonly isDexIncentive: boolean;
readonly asDexIncentive: CurrencyId;
readonly isDexSaving: boolean;
readonly asDexSaving: CurrencyId;
readonly isHoma: boolean;
}
export declare type PHANTOM_INCENTIVES = 'incentives';