Skip to content

Commit 1c98054

Browse files
authored
Merge pull request #127 from iExecBlockchainComputing/fix/sendTelegram-bug
fix: add IPFS node configuration to Web3Telegram client initialization
2 parents a1eadf4 + 2475a96 commit 1c98054

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/externals/iexecSdkClient.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,10 @@ export async function initIExecSDKs({ connector }: { connector?: Connector }) {
6969
});
7070
WEB3MAIL_CLIENT_RESOLVES.length = 0;
7171

72-
iExecWeb3telegram = new IExecWeb3telegram(provider);
72+
//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+
});
7376
WEB3TELEGRAM_CLIENT_RESOLVES.forEach((resolve) => {
7477
return resolve(iExecWeb3telegram);
7578
});

0 commit comments

Comments
 (0)