@gearbox-protocol/ui-kit 3.9.0 → 3.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -54,11 +54,11 @@ export interface PoolApyDTO {
|
|
|
54
54
|
loading7DAgo?: boolean;
|
|
55
55
|
};
|
|
56
56
|
}
|
|
57
|
-
export interface PoolTableCellContext<P extends PoolDTO = PoolDTO> {
|
|
57
|
+
export interface PoolTableCellContext<P extends PoolDTO = PoolDTO, T extends TokenMetaInfo = TokenMetaInfo> {
|
|
58
58
|
pool: P;
|
|
59
|
-
tokensList: Record<Address,
|
|
59
|
+
tokensList: Record<Address, T> | undefined;
|
|
60
60
|
/** Underlying token meta (resolved from `pool.underlyingToken`). */
|
|
61
|
-
underlyingToken:
|
|
61
|
+
underlyingToken: T | undefined;
|
|
62
62
|
apy: PoolApyDTO | undefined;
|
|
63
63
|
/** Points / rewards data for tooltip. */
|
|
64
64
|
points: Array<PoolAPYPointsTip> | undefined;
|