We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a1eadf4 + 2475a96 commit 1c98054Copy full SHA for 1c98054
src/externals/iexecSdkClient.ts
@@ -69,7 +69,10 @@ export async function initIExecSDKs({ connector }: { connector?: Connector }) {
69
});
70
WEB3MAIL_CLIENT_RESOLVES.length = 0;
71
72
- iExecWeb3telegram = new IExecWeb3telegram(provider);
+ //TODO: Remove hardcoded IPFS node when new IExecWeb3telegram version is released
73
+ iExecWeb3telegram = new IExecWeb3telegram(provider, {
74
+ ipfsNode: 'https://ipfs-upload.v8-bellecour.iex.ec',
75
+ });
76
WEB3TELEGRAM_CLIENT_RESOLVES.forEach((resolve) => {
77
return resolve(iExecWeb3telegram);
78
0 commit comments