@ln-markets/sdk
Version:
TypeScript SDK for LNMarkets API
13 lines (9 loc) • 444 B
text/typescript
import type { KyInstance } from 'ky'
import { createGetIndex } from './get-index.js'
import { createGetLastPrice } from './get-last-price.js'
export const createOracleRoutes = (instance: KyInstance) => ({
getIndex: createGetIndex(instance),
getLastPrice: createGetLastPrice(instance),
})
export type { GetIndexInput, GetIndexOutput } from './get-index.js'
export type { GetLastPriceInput, GetLastPriceOutput } from './get-last-price.js'