diff --git a/src/__tests__/__snapshots__/RootReducer.test.js.snap b/src/__tests__/__snapshots__/RootReducer.test.js.snap index 37a6ed58a89..ef98e0d2021 100644 --- a/src/__tests__/__snapshots__/RootReducer.test.js.snap +++ b/src/__tests__/__snapshots__/RootReducer.test.js.snap @@ -251,6 +251,9 @@ Object { "ASNX": Object { "denomination": "1000000000000000000", }, + "ASSY": Object { + "denomination": "1000000000000000000", + }, "ASUSD": Object { "denomination": "1000000000000000000", }, @@ -290,6 +293,12 @@ Object { "BCH": Object { "denomination": "100000000", }, + "BCP": Object { + "denomination": "1000000000000000000", + }, + "BDI": Object { + "denomination": "1000000000000000000", + }, "BNB": Object { "denomination": "100000000", }, @@ -302,6 +311,9 @@ Object { "BTC": Object { "denomination": "100000000", }, + "BTC2X-FLI": Object { + "denomination": "1000000000000000000", + }, "CBAT": Object { "denomination": "100000000", }, @@ -347,6 +359,15 @@ Object { "DASH": Object { "denomination": "100000000", }, + "DEFI++": Object { + "denomination": "1000000000000000000", + }, + "DEFI+L": Object { + "denomination": "1000000000000000000", + }, + "DEFI+S": Object { + "denomination": "1000000000000000000", + }, "DGB": Object { "denomination": "100000000", }, @@ -368,6 +389,9 @@ Object { "ETH": Object { "denomination": "1000000000000000000", }, + "ETH2X-FLI": Object { + "denomination": "1000000000000000000", + }, "ETHBNT": Object { "denomination": "1000000000000000000", }, @@ -434,6 +458,9 @@ Object { "MKR": Object { "denomination": "1000000000000000000", }, + "MVI": Object { + "denomination": "1000000000000000000", + }, "NEXO": Object { "denomination": "1000000000000000000", }, @@ -458,6 +485,9 @@ Object { "PICKLE": Object { "denominations": "1000000000000000000", }, + "PLAY": Object { + "denomination": "1000000000000000000", + }, "POLY": Object { "denomination": "1000000000000000000", }, @@ -476,6 +506,12 @@ Object { "RENBTC": Object { "denominations": "100000000", }, + "RENDOGE": Object { + "denomination": "1000000000000000000", + }, + "RENFIL": Object { + "denomination": "1000000000000000000", + }, "RENZEC": Object { "denominations": "100000000", }, @@ -491,6 +527,9 @@ Object { "ROOK": Object { "denominations": "1000000000000000000", }, + "RUNE": Object { + "denomination": "1000000000000000000", + }, "RVN": Object { "denomination": "100000000", }, @@ -509,6 +548,9 @@ Object { "SNX": Object { "denomination": "1000000000000000000", }, + "STETH": Object { + "denomination": "1000000000000000000", + }, "STORJ": Object { "denomination": "100000000", }, @@ -521,6 +563,9 @@ Object { "TBTC": Object { "denominations": "1000000000000000000", }, + "TCAP": Object { + "denomination": "1000000000000000000", + }, "TESTBTC": Object { "denomination": "100000000", }, @@ -581,6 +626,9 @@ Object { "YFI": Object { "denominations": "1000000000000000000", }, + "YPIE": Object { + "denomination": "1000000000000000000", + }, "ZRX": Object { "denomination": "1000000000000000000", }, diff --git a/src/modules/Core/Account/settings.js b/src/modules/Core/Account/settings.js index 8a3f52be1ee..754b26291fb 100644 --- a/src/modules/Core/Account/settings.js +++ b/src/modules/Core/Account/settings.js @@ -398,6 +398,54 @@ export const SYNCED_ACCOUNT_DEFAULTS = { FUSDT: { denomination: '1000000' }, + 'ETH2X-FLI': { + denomination: '1000000000000000000' + }, + 'BTC2X-FLI': { + denomination: '1000000000000000000' + }, + MVI: { + denomination: '1000000000000000000' + }, + PLAY: { + denomination: '1000000000000000000' + }, + 'DEFI+L': { + denomination: '1000000000000000000' + }, + YPIE: { + denomination: '1000000000000000000' + }, + BCP: { + denomination: '1000000000000000000' + }, + 'DEFI++': { + denomination: '1000000000000000000' + }, + 'DEFI+S': { + denomination: '1000000000000000000' + }, + ASSY: { + denomination: '1000000000000000000' + }, + TCAP: { + denomination: '1000000000000000000' + }, + STETH: { + denomination: '1000000000000000000' + }, + RUNE: { + denomination: '1000000000000000000' + }, + RENFIL: { + denomination: '1000000000000000000' + }, + RENDOGE: { + denomination: '1000000000000000000' + }, + BDI: { + denomination: '1000000000000000000' + }, customTokens: [], mostRecentWallets: [], passwordRecoveryRemindersShown: PASSWORD_RECOVERY_REMINDERS_SHOWN, @@ -535,6 +583,22 @@ export const SYNCED_ACCOUNT_TYPES = { UNI: 'object', FTM: 'object', FUSDT: 'object', + 'ETH2X-FLI': 'object', + 'BTC2X-FLI': 'object', + MVI: 'object', + PLAY: 'object', + 'DEFI+L': 'object', + YPIE: 'object', + BCP: 'object', + 'DEFI++': 'object', + 'DEFI+S': 'object', + ASSY: 'object', + TCAP: 'object', + STETH: 'object', + RUNE: 'object', + RENFIL: 'object', + RENDOGE: 'object', + BDI: 'object', customTokens: 'object', // arrays return 'object' to typeof mostRecentWallets: 'object', passwordRecoveryRemindersShown: 'object',