@dydxprotocol/v4-client-js 2.1.0 → 2.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dydxprotocol/v4-client-js",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "General client library for the new dYdX system (v4 decentralized)",
5
5
  "main": "build/cjs/src/index.js",
6
6
  "module": "build/esm/src/index.js",
@@ -334,7 +334,7 @@ export default class AccountClient extends RestClient {
334
334
  afterOrAt?: string,
335
335
  page?: number,
336
336
  ): Promise<Data> {
337
- const uri = `/v4/fundingPayments/parentSubaccountNumber`;
337
+ const uri = `/v4/fundingPayments/parentSubaccount`;
338
338
  return this.get(uri, { address, parentSubaccountNumber, limit, ticker, afterOrAt, page });
339
339
  }
340
340
  }