diff --git a/src/types/router.ts b/src/types/router.ts index 483f53a..0624232 100644 --- a/src/types/router.ts +++ b/src/types/router.ts @@ -1,4 +1,4 @@ -export type Dex = 'stonfi' | 'dedust'; +export type Dex = 'stonfi' | 'dedust' | 'tonco'; export interface BestRoute { selected_pool: SelectedPool; @@ -8,6 +8,7 @@ export interface BestRoute { export interface SelectedPool { router_address: string; dex: string; + dex_details: DexDetails; reserve0: string; reserve1: string; token0_address: string; @@ -15,6 +16,11 @@ export interface SelectedPool { fee: number; } +export interface DexDetails { + name: string; + icon_url: string; +} + export interface PoolData { router_address: string; pay: string;