UNPKG

@drift-labs/sdk

Version:
14 lines (13 loc) 505 B
import { HeliusPriorityLevel } from './heliusPriorityFeeMethod'; export type DriftMarketInfo = { marketType: string; marketIndex: number; }; export type DriftPriorityFeeLevels = { [key in HeliusPriorityLevel]: number; } & { marketType: 'perp' | 'spot'; marketIndex: number; }; export type DriftPriorityFeeResponse = DriftPriorityFeeLevels[]; export declare function fetchDriftPriorityFee(url: string, marketTypes: string[], marketIndexes: number[]): Promise<DriftPriorityFeeResponse>;