@bulletxyz/bullet-sdk 0.21.0-rc.3 → 0.21.0-rc.5

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.
@@ -7299,7 +7299,7 @@ var ExchangeConnection = class extends BaseConnection {
7299
7299
  return parsed.data.found;
7300
7300
  }
7301
7301
  async getUserAccountAddresses(start = 0, limit = 1e5) {
7302
- const path = `/modules/exchange/api/v1/account-addresses?from=${start}&limit=${limit}`;
7302
+ const path = `/modules/exchange/api/v1/account/addresses?from=${start}&limit=${limit}`;
7303
7303
  const response = await this.fetchApiResource(path);
7304
7304
  const parsed = ResponseSchemas.AccountAddresses.parse(response);
7305
7305
  return parsed.data.accounts;