0xtrails
Version:
SDK for Trails
28 lines • 683 B
TypeScript
export declare function getAaveV3WrappedTokenGatewayAddress(chainId: number): string | null;
export interface Pool {
id: string;
name: string;
protocol: string;
chainId: number;
apy: number;
tvl: number;
token: {
symbol: string;
name: string;
address: string;
decimals: number;
logoUrl?: string;
};
depositAddress: string;
isActive: boolean;
poolUrl?: string;
protocolUrl?: string;
wrappedTokenGatewayAddress?: string;
}
export declare function useAavePools(): {
data: Pool[];
loading: boolean;
error: undefined;
};
export default useAavePools;
//# sourceMappingURL=aave.d.ts.map