import type { TenorDTO } from './TenorDTO'; export type CurveDTO = { /** * base token id */ baseTokenId: string; /** * base token symbol */ baseTokenSymbol: string; /** * base token price, precision is token native */ baseTokenPrice?: string; /** * tenors */ tenors: Array; };