@clober/v2-sdk 1.0.0-rc.6 → 1.0.0-rc.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,7 +17,7 @@ import { fetchChartLogs, fetchLatestChartLog, } from '../../entities/market/apis
17
17
  * })
18
18
  */
19
19
  export const getLatestChartLog = async ({ chainId, quote, base, }) => {
20
- return fetchLatestChartLog(chainId, `${base}/${quote}`);
20
+ return fetchLatestChartLog(chainId, `${base}-${quote}`);
21
21
  };
22
22
  /**
23
23
  * Retrieves chart logs for a specific market within a specified time interval.
@@ -43,6 +43,6 @@ export const getLatestChartLog = async ({ chainId, quote, base, }) => {
43
43
  * })
44
44
  */
45
45
  export const getChartLogs = async ({ chainId, quote, base, intervalType, from, to, }) => {
46
- return fetchChartLogs(chainId, `${base}/${quote}`, intervalType, from, to);
46
+ return fetchChartLogs(chainId, `${base}-${quote}`, intervalType, from, to);
47
47
  };
48
48
  //# sourceMappingURL=chart-log.js.map