Documentation
    Preparing search index...

    Variable IncentivePoolInfoByPhaseConst

    IncentivePoolInfoByPhase: BcsType<
        {
            phase: string;
            pools: {
                asset_id: number;
                available: string;
                closed_at: string;
                distributed: string;
                end_at: string;
                factor: string;
                funds: string;
                option: number;
                phase: string;
                pool_id: string;
                start_at: string;
                total: string;
                total_supply: string;
            }[];
        },
        {
            phase: string
            | number
            | bigint;
            pools: Iterable<
                {
                    asset_id: number;
                    available: string
                    | number
                    | bigint;
                    closed_at: string | number | bigint;
                    distributed: string | number | bigint;
                    end_at: string | number | bigint;
                    factor: string | number | bigint;
                    funds: string;
                    option: number;
                    phase: string | number | bigint;
                    pool_id: string;
                    start_at: string | number | bigint;
                    total: string | number | bigint;
                    total_supply: string | number | bigint;
                },
                any,
                any,
            > & { length: number };
        },
    > = ...

    BCS schema for incentive pool information grouped by phase Contains phase number and list of pools in that phase