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);