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