@cryptoalgebra/alm-sdk
Version:
Algebra ALM SDK
12 lines (11 loc) • 323 B
TypeScript
import { SupportedDex, SupportedChainId } from '../types';
type PartialRecord<K extends keyof any, T> = {
[P in K]?: T;
};
type GraphQL = {
url: string;
publishedUrl: string;
};
type dexGraph = PartialRecord<SupportedDex, GraphQL>;
export declare const graphUrls: Record<SupportedChainId, dexGraph>;
export {};