diff --git a/core/src/exchanges/baozi/normalizer.ts b/core/src/exchanges/baozi/normalizer.ts index 6afc42f..fdb24c4 100644 --- a/core/src/exchanges/baozi/normalizer.ts +++ b/core/src/exchanges/baozi/normalizer.ts @@ -1,5 +1,6 @@ import { MarketFetchParams } from '../../BaseExchange'; import { UnifiedMarket, UnifiedEvent, PriceCandle, OrderBook, Trade, Position, Balance } from '../../types'; +import { NotFound } from '../../errors'; import { IExchangeNormalizer } from '../interfaces'; import { LAMPORTS_PER_SOL, @@ -88,12 +89,12 @@ export class BaoziNormalizer implements IExchangeNormalizer o.outcomeId === outcomeId); diff --git a/core/src/exchanges/kalshi/fetcher.ts b/core/src/exchanges/kalshi/fetcher.ts index 1922424..f4746a6 100644 --- a/core/src/exchanges/kalshi/fetcher.ts +++ b/core/src/exchanges/kalshi/fetcher.ts @@ -1,6 +1,7 @@ import { MarketFilterParams, EventFetchParams, OHLCVParams, TradesParams, MyTradesParams } from '../../BaseExchange'; import { IExchangeFetcher, FetcherContext } from '../interfaces'; import { kalshiErrorMapper } from './errors'; +import { NotFound } from '../../errors'; import { validateIdFormat } from '../../utils/validation'; import { mapIntervalToKalshi } from './utils'; @@ -253,6 +254,10 @@ export class KalshiFetcher implements IExchangeFetcher