Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ref: auto sync evm chains if already exists #1518

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
135 changes: 131 additions & 4 deletions src/navigation/wallet/screens/AccountDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import React, {
useRef,
useState,
} from 'react';
import {RootState} from '../../../store';
import {useTranslation} from 'react-i18next';
import {WalletGroupParamList, WalletScreens} from '../WalletGroup';
import {useAppDispatch, useAppSelector} from '../../../utils/hooks';
Expand All @@ -27,7 +28,6 @@ import {
} from './KeyOverview';
import {
DeviceEventEmitter,
FlatList,
RefreshControl,
SectionList,
TouchableOpacity,
Expand All @@ -53,6 +53,7 @@ import {
formatCurrencyAbbreviation,
shouldScale,
sleep,
fixWalletAddresses,
} from '../../../utils/helper-methods';
import LinkingButtons from '../../tabs/home/components/LinkingButtons';
import {Analytics} from '../../../store/analytics/analytics.effects';
Expand All @@ -61,11 +62,14 @@ import {
createMultipleWallets,
getDecryptPassword,
startGetRates,
serverAssistedImport,
normalizeMnemonic,
} from '../../../store/wallet/effects';
import {startUpdateAllWalletStatusForKey} from '../../../store/wallet/effects/status/status';
import {
successAddWallet,
updatePortfolioBalance,
syncWallets,
} from '../../../store/wallet/wallet.actions';
import {
BalanceUpdateError,
Expand Down Expand Up @@ -140,6 +144,8 @@ import {
buildAccountList,
buildAssetsByChainList,
findWalletById,
buildWalletObj,
mapAbbreviationAndName,
} from '../../../store/wallet/utils/wallet';
import {DeviceEmitterEvents} from '../../../constants/device-emitter-events';
import ChevronDownSvgLight from '../../../../assets/img/chevron-down-lightmode.svg';
Expand All @@ -156,6 +162,8 @@ import {
getBaseAccountCreationCoinsAndTokens,
} from '../../../constants/currencies';
import {startOnGoingProcessModal} from '../../../store/app/app.effects';
import {BWCErrorMessage} from '../../../constants/BWCError';
import {BitpaySupportedTokenOptsByAddress} from '../../../constants/tokens';

export type AccountDetailsScreenParamList = {
selectedAccountAddress: string;
Expand Down Expand Up @@ -391,6 +399,117 @@ const AccountDetails: React.FC<AccountDetailsScreenProps> = ({route}) => {
({SHOP}) => SHOP.billPayAccounts[accountItem.wallets[0].network],
);

const _tokenOptionsByAddress = useAppSelector(({WALLET}: RootState) => {
return {
...BitpaySupportedTokenOptsByAddress,
...WALLET.tokenOptionsByAddress,
...WALLET.customTokenOptionsByAddress,
};
});

const startSyncWallets = async (mnemonic: string) => {
if (key.isPrivKeyEncrypted) {
// To close decrypt modal
await sleep(500);
}
await dispatch(startOnGoingProcessModal('SYNCING_WALLETS'));
const opts = {
words: normalizeMnemonic(mnemonic),
mnemonic,
};
try {
let {key: _syncKey, wallets: _syncWallets} = await serverAssistedImport(
opts,
);

if (_syncKey.fingerPrint === key.properties!.fingerPrint) {
// Filter for new wallets
_syncWallets = _syncWallets
.filter(
sw =>
sw.isComplete() &&
!key.wallets.some(ew => ew.id === sw.credentials.walletId),
)
.map(syncWallet => {
// update to keyId
syncWallet.credentials.keyId = key.properties!.id;
const {currencyAbbreviation, currencyName} = dispatch(
mapAbbreviationAndName(
syncWallet.credentials.coin,
syncWallet.credentials.chain,
syncWallet.credentials.token?.address,
),
);
return _.merge(
syncWallet,
buildWalletObj(
{...syncWallet.credentials, currencyAbbreviation, currencyName},
_tokenOptionsByAddress,
),
);
});

// workaround for fixing wallets without receive address
await fixWalletAddresses({
appDispatch: dispatch,
wallets: _syncWallets,
});

let message;

const syncWalletsLength = _syncWallets.length;
if (syncWalletsLength) {
message =
syncWalletsLength === 1
? t('New wallet found')
: t('wallets found', {syncWalletsLength});
dispatch(syncWallets({keyId: key.id, wallets: _syncWallets}));
} else {
message = t('Your key is already synced');
}

dispatch(dismissOnGoingProcessModal());
await sleep(500);
dispatch(
showBottomNotificationModal({
type: 'error',
title: t('Sync wallet'),
message,
enableBackdropDismiss: true,
actions: [
{
text: t('OK'),
action: () => {},
primary: true,
},
],
}),
);
} else {
dispatch(dismissOnGoingProcessModal());
await sleep(500);
await dispatch(
showBottomNotificationModal(
CustomErrorMessage({
errMsg: t('Failed to Sync wallets'),
}),
),
);
}
} catch (e) {
dispatch(dismissOnGoingProcessModal());
await sleep(500);
await dispatch(
showBottomNotificationModal(
CustomErrorMessage({
errMsg: BWCErrorMessage(e),
title: t('Error'),
}),
),
);
}
};

const keyOptions: Array<Option> = [];
const hasAllChains =
accountItem.chains.length === Object.keys(BitpaySupportedEvmCoins).length;
Expand Down Expand Up @@ -420,9 +539,17 @@ const AccountDetails: React.FC<AccountDetailsScreenProps> = ({route}) => {
},
}),
);
key.wallets.push(...(wallets as Wallet[]));

dispatch(successAddWallet({key}));
if (_.isEmpty(wallets)) {
if (!key.isPrivKeyEncrypted) {
await startSyncWallets(key.properties!.mnemonic);
} else {
const mnemonic = key.methods!.get(password).mnemonic;
await startSyncWallets(mnemonic);
}
} else {
key.wallets.push(...(wallets as Wallet[]));
dispatch(successAddWallet({key}));
}
dispatch(dismissOnGoingProcessModal());
},
});
Expand Down