@ln-markets/sdk
Version:
TypeScript SDK for LNMarkets API v2
15 lines (13 loc) • 338 B
text/typescript
import type { RestFetcher } from '../../rest.js'
export const createGetInstruments = (request: RestFetcher) => {
/**
* @see https://docs.lnmarkets.com/api/operations/optionsgetinstruments
*/
return async () =>
request<{
instruments: string[]
}>({
method: 'GET',
path: '/options/instruments',
})
}