@0xarchive/sdk 0.6.1 → 0.6.2

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.
package/dist/index.mjs CHANGED
@@ -456,7 +456,7 @@ var TradesResource = class {
456
456
  */
457
457
  async recent(coin, limit) {
458
458
  const response = await this.http.get(
459
- `/v1/trades/${coin.toUpperCase()}/recent`,
459
+ `${this.basePath}/trades/${coin.toUpperCase()}/recent`,
460
460
  { limit },
461
461
  this.http.validationEnabled ? TradeArrayResponseSchema : void 0
462
462
  );