Skip to content

Commit

Permalink
add EECC IPFS gateway
Browse files Browse the repository at this point in the history
  • Loading branch information
F-Node-Karlsruhe committed Mar 21, 2023
1 parent 2a671a1 commit 26a450a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ VC Verifier Changelog
WIP
---

- add EECC IPFS gateways as default
- fix IPFS promises
- UI improvements

Expand Down
2 changes: 1 addition & 1 deletion api/src/services/fetch/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const HEADERS = {
'Accept': 'application/ld+json, application/json'
}

const IPFS_GATEWAYS = ['ipfs.io'].concat(process.env.IPFS_GATEWAYS ? process.env.IPFS_GATEWAYS.split(',') : []);
const IPFS_GATEWAYS = ['ipfs.io', 'ipfs.ssi.eecc.de'].concat(process.env.IPFS_GATEWAYS ? process.env.IPFS_GATEWAYS.split(',') : []);


export async function fetch_jsonld(url: string): Promise<object> {
Expand Down

0 comments on commit 26a450a

Please sign in to comment.