@bulletxyz/bullet-sdk 0.22.1-rc.1 → 0.22.1-rc.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.
@@ -7340,10 +7340,10 @@ var ExchangeConnection = class _ExchangeConnection extends BaseConnection {
7340
7340
  const parsed = ResponseSchemas.OrderbookL2Bulk.parse(response);
7341
7341
  return parsed.data.found;
7342
7342
  }
7343
- async getUserAccountAddresses(start, limit) {
7343
+ async getUserAccountAddresses(offset, limit) {
7344
7344
  const path = `/modules/exchange/api/v1/account/addresses`;
7345
7345
  const response = await this.fetchApiResource(path, {
7346
- from: start?.toString(),
7346
+ offset: offset?.toString(),
7347
7347
  limit: limit?.toString()
7348
7348
  });
7349
7349
  const parsed = ResponseSchemas.AccountAddresses.parse(response);