Skip to content

Commit

Permalink
chore: add metadataHash to response
Browse files Browse the repository at this point in the history
  • Loading branch information
josemarinas committed May 9, 2024
1 parent 4e8530b commit b995286
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions modules/client-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ TEMPLATE:

## [UPCOMING]

- Added `metadataHash` field to proposal and dao objects.

## [1.15.0]
- Added `metadataHash` field to proposal and dao objects.

### Added

- `getDefaultIpfsNodes` function to get the default IPFS nodes for a network
Expand Down
2 changes: 1 addition & 1 deletion modules/client-common/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aragon/sdk-client-common",
"author": "Aragon Association",
"version": "1.15.1",
"version": "1.15.2",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/sdk-client-common.esm.js",
Expand Down
2 changes: 2 additions & 0 deletions modules/client-common/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ export type ProposalBase = {
};
creatorAddress: string;
metadata: ProposalMetadata;
metadataHash: string;
startDate: Date;
endDate: Date;
creationDate: Date;
Expand All @@ -219,6 +220,7 @@ export type ProposalListItemBase = {
};
creatorAddress: string;
metadata: ProposalMetadataSummary;
metadataHash: string;
startDate: Date;
endDate: Date;
status: ProposalStatus;
Expand Down

0 comments on commit b995286

Please sign in to comment.