Skip to content

Commit

Permalink
Update readme & changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Rekard0 committed Oct 10, 2023
1 parent 8f963d1 commit ef79b80
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions subgraph/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Added `getPermissionId` and `getPluginPermissionId`.
- Added `getPluginRepoId`, `getPluginSetupId`, `getPluginInstallationId`, `getPluginPreparationId`, `getPluginReleaseId`, and `getPluginVersionId`.
- Added `generatePermissionId` and `generatePluginPermissionId`.
- Added `generatePluginRepoEntityId`, `generatePluginSetupEntityId`, `generatePluginInstallationEntityId`, `generatePluginPreparationEntityId`, `generatePluginReleaseEntityId`, and `generatePluginVersionEntityId`.

### Removed
8 changes: 4 additions & 4 deletions subgraph/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ After installing @aragon/osx-subgraph-commons, you can import and use its functi
Example:

```ts
import {getDaoId} from '@aragon/osx-commons-subgraph';
import {generateDaoEntityId} from '@aragon/osx-commons-subgraph';

const daoId = getDaoId(<some-dao-address>);
console.log(`The DAO ID is: ${daoId}`);
const daoEntityId = generateDaoEntityId(<some-dao-address>);
console.log(`The DAO ID is: ${daoEntityId}`);
```

In this example, the getDaoId function is used to generate a DAO ID from a given Ethereum address.
In this example, the generateDaoEntityId function is used to generate a DAO ID from a given Ethereum address.

0 comments on commit ef79b80

Please sign in to comment.