* update presendPageParsing to handle address with amounts * adding method to correctly navigate to send usdc or usdt path based on address params * adding unsupportive token message at top of page stablecoin params page * handling prefilled amount * adding supported tokens translation * fix margin
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
import {
|
|
getLocalStorageItem,
|
|
setLocalStorageItem,
|
|
removeLocalStorageItem,
|
|
} from './localStorage';
|
|
// import RotatingAnimation from './rotatingAnimation';
|
|
import { retrieveData, terminateAccount, storeData } from './secureStore';
|
|
|
|
import shuffleArray from './shuffleArray';
|
|
import {
|
|
hasHardware,
|
|
hasSavedProfile,
|
|
handleLogin,
|
|
} from './biometricAuthentication';
|
|
import formatBalanceAmount from './formatNumber';
|
|
|
|
import copyToClipboard from './copyToClipboard';
|
|
import {
|
|
navigateToSendUsingClipboard,
|
|
getQRImage,
|
|
resolveExternalChainNavigation,
|
|
} from './sendBitcoin';
|
|
import numberConverter from './numberConverter';
|
|
import { createAccountMnemonic } from './seed';
|
|
import { normalizeNumber } from './normalizeNumber';
|
|
|
|
export {
|
|
retrieveData,
|
|
terminateAccount,
|
|
storeData,
|
|
createAccountMnemonic,
|
|
shuffleArray,
|
|
// RotatingAnimation,
|
|
getLocalStorageItem,
|
|
setLocalStorageItem,
|
|
removeLocalStorageItem,
|
|
hasHardware,
|
|
hasSavedProfile,
|
|
handleLogin,
|
|
formatBalanceAmount,
|
|
copyToClipboard,
|
|
navigateToSendUsingClipboard,
|
|
getQRImage,
|
|
resolveExternalChainNavigation,
|
|
numberConverter,
|
|
normalizeNumber,
|
|
};
|