From 366a5dd172af43f5765ed42094e04e0502202ebf Mon Sep 17 00:00:00 2001 From: rakeshup Date: Wed, 3 Jan 2024 17:42:21 +0530 Subject: [PATCH 1/3] Changing voters and approvers count to 1000 from the default value of 100 --- .../client/src/multisig/internal/graphql-queries/proposal.ts | 2 +- .../client/src/tokenVoting/internal/graphql-queries/proposal.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/client/src/multisig/internal/graphql-queries/proposal.ts b/modules/client/src/multisig/internal/graphql-queries/proposal.ts index 3391b31c8..b7ddd2631 100644 --- a/modules/client/src/multisig/internal/graphql-queries/proposal.ts +++ b/modules/client/src/multisig/internal/graphql-queries/proposal.ts @@ -29,7 +29,7 @@ query MultisigProposal($proposalId: ID!) { executed approvalReached isSignaling - approvers{ + approvers(first: 1000){ id } } diff --git a/modules/client/src/tokenVoting/internal/graphql-queries/proposal.ts b/modules/client/src/tokenVoting/internal/graphql-queries/proposal.ts index 452bd8723..7510a7e2a 100644 --- a/modules/client/src/tokenVoting/internal/graphql-queries/proposal.ts +++ b/modules/client/src/tokenVoting/internal/graphql-queries/proposal.ts @@ -31,7 +31,7 @@ query TokenVotingProposal($proposalId: ID!) { approvalReached isSignaling executionTxHash - voters{ + voters(first: 1000){ voter{ address } From adc4023a0302e881f410432b6f69aae5fb4e66a2 Mon Sep 17 00:00:00 2001 From: rakeshup Date: Wed, 3 Jan 2024 20:04:28 +0530 Subject: [PATCH 2/3] Updated Changelog --- modules/client/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/client/CHANGELOG.md b/modules/client/CHANGELOG.md index da8bcabf2..9f94645c4 100644 --- a/modules/client/CHANGELOG.md +++ b/modules/client/CHANGELOG.md @@ -18,6 +18,7 @@ TEMPLATE: --> ## [UPCOMING] +- Chore: Changed voters and approvers count to 1000 from the default value of 100 in Proposal Queries ### Changed From c143b5b0491c5516be30d380086d839b6150e0c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jose=20Manuel=20Mari=C3=B1as=20Bascoy?= Date: Wed, 3 Jan 2024 17:02:29 +0100 Subject: [PATCH 3/3] update changelog and package.json --- modules/client/CHANGELOG.md | 3 +++ modules/client/package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/client/CHANGELOG.md b/modules/client/CHANGELOG.md index 9f94645c4..7afc84677 100644 --- a/modules/client/CHANGELOG.md +++ b/modules/client/CHANGELOG.md @@ -18,8 +18,11 @@ TEMPLATE: --> ## [UPCOMING] + +### Changed - Chore: Changed voters and approvers count to 1000 from the default value of 100 in Proposal Queries +## [1.21.0] ### Changed -Update `osx-ethers` to v1.3.0 diff --git a/modules/client/package.json b/modules/client/package.json index bf286bde8..e7bc84793 100644 --- a/modules/client/package.json +++ b/modules/client/package.json @@ -1,7 +1,7 @@ { "name": "@aragon/sdk-client", "author": "Aragon Association", - "version": "1.21.0", + "version": "1.21.1", "license": "MIT", "main": "dist/index.js", "module": "dist/sdk-client.esm.js",