Data Reference
This section documents the reusable data types returned by the Aleno Pricing API across all endpoints.
1. Asset
type Asset = {
symbol: string;
tokenMapping: {
chainId: string;
address: string;
}[];
};2. Ticker
type Ticker = {
id: string;
aggregated: {
price: number;
h24UsdVolume: number;
};
cex: {
price: number;
h24UsdVolume: number;
};
dex: {
price: number;
h24UsdVolume: number;
usdTvl: number;
};
};3. PoolState
Last updated