import { Address } from '../../types'; export type PoolState = { buyFee: bigint; sellFee: bigint; underlyingLiquidity: bigint; isFrozen: boolean; isSeized: boolean; exposureCap: bigint; rate: bigint; asset: string; }; export type AaveGsmData = { exchange: Address; }; export type DexParams = { POOL: string; GSM_USDT: string; GSM_USDC: string; waEthUSDT: string; waEthUSDC: string; GHO: string; };