Skip to content

Commit

Permalink
Merge pull request #105 from SecureSECODAO/dev
Browse files Browse the repository at this point in the history
v1.0.3
  • Loading branch information
Plopmenz authored Oct 30, 2023
2 parents 39ac0e3 + 794b1b7 commit 46d18ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
Diamond Governance is a very flexible plugin for AragonOSx. It acts as a bridge between the Aragon framework and [ERC-2535 facets](https://eips.ethereum.org/EIPS/eip-2535). Multiple facets to customize the plugin are included in the project. Currently, the plugin is only available on Mumbai, but it will launch on Polygon before the end of June.

# SDK
A typescript sdk is available for this plugin, allowing developers to easily communicate with the plugin in their projects. It can be found on [npm](https://www.npmjs.com/package/@plopmenz/diamond-governance-sdk?activeTab=readme).
A typescript sdk is available for this plugin, allowing developers to easily communicate with the plugin in their projects. It can be found on [npm](https://www.npmjs.com/package/@secureseco-dao/diamond-governance-sdk).

# Facets
## Governance
Expand Down
4 changes: 2 additions & 2 deletions utils/ipfsHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export async function addToIpfs(json: string): Promise<string> {

const config = {
method: "POST",
url: "https://ipfs-0.aragon.network/api/v0/add",
url: "https://prod.ipfs.aragon.network/api/v0/add",
headers: {
"X-API-KEY": "b477RhECf8s8sdM7XrkLBs2wHc4kCMwpbcFC55Kt" // Publicly known Aragon IPFS node API key
},
Expand All @@ -51,7 +51,7 @@ export async function getFromIpfs(hash: string): Promise<any> {

const config = {
method: "POST",
url: "https://ipfs-0.aragon.network/api/v0/cat?arg=" + hash,
url: "https://prod.ipfs.aragon.network/api/v0/cat?arg=" + hash,
headers: {
"X-API-KEY": "b477RhECf8s8sdM7XrkLBs2wHc4kCMwpbcFC55Kt" // Publicly known Aragon IPFS node API key
},
Expand Down

0 comments on commit 46d18ff

Please sign in to comment.