Interface IndexedRouteMapResponse

IndexedRouteMapResponse

interface IndexedRouteMapResponse {
    indexedRouteMap: {
        [key: string]: number[];
    };
    mintKeys: string[];
}

Properties

indexedRouteMap: {
    [key: string]: number[];
}

All the possible route and their corresponding output mints

IndexedRouteMapResponse

mintKeys: string[]

All the mints that are indexed to match in indexedRouteMap

IndexedRouteMapResponse