@bulletxyz/bullet-sdk 0.22.1-rc.0 → 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.
@@ -6775,7 +6775,7 @@ var Schemas = {
6775
6775
  external_deposits: createJsonMap(Base58Address, DecimalSchema)
6776
6776
  }),
6777
6777
  UsdcInsuranceFund: z.object({
6778
- usdc_token_amount: DecimalSchema,
6778
+ amount: DecimalSchema,
6779
6779
  external_deposits: createJsonMap(Base58Address, DecimalSchema),
6780
6780
  minimum_usdc_token_amount: DecimalSchema
6781
6781
  }),
@@ -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);