@carrot-protocol/boost-http-client 0.2.15-group-refactor1-dev-1ee3fdf → 0.2.15-group-refactor1-dev-875d3f7

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.js CHANGED
@@ -182,7 +182,7 @@ class Client {
182
182
  summaryByAccount.get(accountAddress).push(txSummary);
183
183
  }
184
184
  }
185
- // if no clend account, return undefined for clend
185
+ // if no clend accounts, return empty array
186
186
  const clendAccounts = [];
187
187
  if (jsonRawResponse.clendAccounts) {
188
188
  for (const [address, ca] of Object.entries(jsonRawResponse.clendAccounts)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carrot-protocol/boost-http-client",
3
- "version": "0.2.15-group-refactor1-dev-1ee3fdf",
3
+ "version": "0.2.15-group-refactor1-dev-875d3f7",
4
4
  "description": "HTTP client for Carrot Boost",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -201,7 +201,7 @@ export class Client {
201
201
  }
202
202
  }
203
203
 
204
- // if no clend account, return undefined for clend
204
+ // if no clend accounts, return empty array
205
205
  const clendAccounts: {
206
206
  clendAccount: ClendAccount;
207
207
  summary: ClendAccountTxSummary[];