Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/tools/getIExecApps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const getIExecApps = {
web3mail: {
ens: "web3mail.apps.iexec.eth",
address: "0x0d8b899f2faa0fe9f0b17bcf4debd0cbc9e574ef",
whitelistAddress: "0x1234567890abcdef1234567890abcdef12345678",
whitelistAddress: "0x781482C39CcE25546583EaC4957Fb7Bf04C277D2",
aliases: ["web3mail", "web3 mail", "web3-mail"],
},
web3telegram: {
Expand Down
3 changes: 2 additions & 1 deletion src/tools/web3mail/fetchMyContacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ export const fetchMyContacts = {
const privateKey = await readWalletPrivateKey();
const web3Provider = getWeb3Provider(privateKey);
const web3mail = new IExecWeb3mail(web3Provider);
const contacts = await web3mail.fetchMyContacts();
const contacts = await web3mail.fetchMyContacts({ isUserStrict: true }
);
return {
message: "Contacts fetched successfully",
contacts
Expand Down