import type { Address } from "viem"; export type TokenTypePool = "eth" | "stable" | "btc" | "wbnb" | "s" | "hemiBTC" | "mon" | "somi"; export interface PoolConfigPayload { name: string; address: Address; chainId: number; network: string; curator: string; poolType: [TokenTypePool]; isLowInterest?: boolean; }