From 05f6184779daa0c9d595214dd1ae0230ee31848b Mon Sep 17 00:00:00 2001 From: Itzabelli <104786213+Itzabelli@users.noreply.github.com> Date: Sat, 12 Aug 2023 01:01:24 -0500 Subject: [PATCH] refactor: Comment unused types (#230) --- utils/types.tsx | 72 ++++++++++++++++++++++++------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/utils/types.tsx b/utils/types.tsx index 9661e0c1..cfda4b91 100644 --- a/utils/types.tsx +++ b/utils/types.tsx @@ -27,35 +27,35 @@ export type TVault = { ZAP_ADDR?: string; } -export type TAPIVault = { - title: string; - logo: string; - displayName: string; - src: string; - status: string; - type: string; - address: string; - network: number; - APY?: { - week: string; - month: string; - inception: string; - } - data: { - apiVersion: string; - depositLimit: string; - totalAssets: string; - availableDepositLimit: string; - pricePerShare: string; - decimals: number; - activation: number; - }; - want: { - address: string; - symbol: string; - cgID: string; - }; -} +// export type TAPIVault = { +// title: string; +// logo: string; +// displayName: string; +// src: string; +// status: string; +// type: string; +// address: string; +// network: number; +// APY?: { +// week: string; +// month: string; +// inception: string; +// } +// data: { +// apiVersion: string; +// depositLimit: string; +// totalAssets: string; +// availableDepositLimit: string; +// pricePerShare: string; +// decimals: number; +// activation: number; +// }; +// want: { +// address: string; +// symbol: string; +// cgID: string; +// }; +// } export type TSpecificAPIResult = { week: string; @@ -105,10 +105,10 @@ export type TTVL = { tvl: number; } -export type TGauge = { - address: TAddress, - name: string, - symbol: string, - exists: boolean, - isAuraOK: boolean, -} +// export type TGauge = { +// address: TAddress, +// name: string, +// symbol: string, +// exists: boolean, +// isAuraOK: boolean, +// }