diff --git a/modules/client/CHANGELOG.md b/modules/client/CHANGELOG.md index 502f40538..0a4767c09 100644 --- a/modules/client/CHANGELOG.md +++ b/modules/client/CHANGELOG.md @@ -20,6 +20,11 @@ TEMPLATE: ## [UPCOMING] ### Fixed +- Plugin preparations query + +## [1.18.1] +### Fixed + - ERC20Transfers query missing decimals diff --git a/modules/client/package.json b/modules/client/package.json index 4c8e28678..04bc87469 100644 --- a/modules/client/package.json +++ b/modules/client/package.json @@ -1,7 +1,7 @@ { "name": "@aragon/sdk-client", "author": "Aragon Association", - "version": "1.18.1", + "version": "1.18.2", "license": "MIT", "main": "dist/index.js", "module": "dist/sdk-client.esm.js", diff --git a/modules/client/src/internal/client/methods.ts b/modules/client/src/internal/client/methods.ts index 59033caac..c24f83577 100644 --- a/modules/client/src/internal/client/methods.ts +++ b/modules/client/src/internal/client/methods.ts @@ -1566,7 +1566,7 @@ export class ClientMethods extends ClientCore implements IClientMethods { where = { ...where, pluginAddress: pluginAddress.toLowerCase() }; } if (pluginRepoAddress) { - where = { ...where, pluginRepoAddress: pluginRepoAddress.toLowerCase() }; + where = { ...where, pluginRepo: pluginRepoAddress.toLowerCase() }; } if (daoAddressOrEns) { where = { ...where, dao: daoAddressOrEns.toLowerCase() }; diff --git a/modules/client/test/integration/client/methods.test.ts b/modules/client/test/integration/client/methods.test.ts index 21b8908e2..4f6417f32 100644 --- a/modules/client/test/integration/client/methods.test.ts +++ b/modules/client/test/integration/client/methods.test.ts @@ -1841,7 +1841,7 @@ describe("Client", () => { where: { dao: params.daoAddressOrEns, pluginAddress: params.pluginAddress, - pluginRepoAddress: params.pluginRepoAddress, + pluginRepo: params.pluginRepoAddress, }, limit: params.limit, skip: params.skip,