Skip to content

Commit

Permalink
refactor: Comment unused types (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
Itzabelli committed Aug 12, 2023
1 parent 3269298 commit 05f6184
Showing 1 changed file with 36 additions and 36 deletions.
72 changes: 36 additions & 36 deletions utils/types.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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,
// }

0 comments on commit 05f6184

Please sign in to comment.