Skip to content

Commit

Permalink
Chore: Changing voters and approvers count to 1000 from the default v…
Browse files Browse the repository at this point in the history
…alue of 100 (#317)

* Changing voters and approvers count to 1000 from the default value of 100

* Updated Changelog

* update changelog and package.json

---------

Co-authored-by: Jose Manuel Mariñas Bascoy <[email protected]>
  • Loading branch information
RakeshUP and josemarinas authored Jan 4, 2024
1 parent 40f2532 commit d1d1ab7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions modules/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ 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
Expand Down
2 changes: 1 addition & 1 deletion modules/client/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ query MultisigProposal($proposalId: ID!) {
executed
approvalReached
isSignaling
approvers{
approvers(first: 1000){
id
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ query TokenVotingProposal($proposalId: ID!) {
approvalReached
isSignaling
executionTxHash
voters{
voters(first: 1000){
voter{
address
}
Expand Down

0 comments on commit d1d1ab7

Please sign in to comment.