Type alias SaturatedPoolEntryAsset

SaturatedPoolEntryAsset: {
    amount: Decimal;
    assetId: AssetId;
    category: {
        color?: string | null;
        name?: string | null;
        ticker?: string | null;
    };
    percentage: number;
    price: Decimal;
}

Type declaration

  • amount: Decimal

    Amount of asset tokens in pool.

  • assetId: AssetId

    Asset id of the asset.

  • category: {
        color?: string | null;
        name?: string | null;
        ticker?: string | null;
    }

    Category metadata relative to pool market metadata.

    • Optional color?: string | null
    • Optional name?: string | null
    • Optional ticker?: string | null
  • percentage: number

    The percentage of the asset size relative to pool.

  • price: Decimal

    The price of asset when fetched.

Generated using TypeDoc