From 077b6fb1c18999f1c601dfee19dd5def63464016 Mon Sep 17 00:00:00 2001 From: bumi Date: Sat, 22 Oct 2022 15:21:38 +0000 Subject: [PATCH] Default to kosmos IPFS we always had issues with IPFS not finding data from other peers --- lib/utils/ipfs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/ipfs.js b/lib/utils/ipfs.js index 3b4ee17..e05047c 100644 --- a/lib/utils/ipfs.js +++ b/lib/utils/ipfs.js @@ -5,7 +5,7 @@ const fetch = require('node-fetch'); class IPFS { constructor (config) { if (!config) { - config = { host: 'localhost', port: '5001', protocol: 'http' }; + config = { host: 'ipfs.kosmos.org', port: '5444', protocol: 'https' }; } this._config = config; this._ipfsAPI = ipfsClient.create(config);