UNPKG

@ln-markets/sdk

Version:

TypeScript SDK for LNMarkets API v2

15 lines 416 B
export const createGetInstrument = (request) => { /** * @see https://docs.lnmarkets.com/api/operations/optionsgetinstrument */ return async (body) => { return request({ body: { instrument_name: body.instrumentName, }, method: 'GET', path: `/options/instrument`, }); }; }; //# sourceMappingURL=get-instrument.js.map