* fix: fixed mobile issues with SVGs * feat: first morphing AccountDetails * tidy: composition refresh * tidy: fine adjusting * fix: svg fixes * feat: updated summary structure * feat: overall layout adjustments * fix: fixed svg adjustments * feat: finished AccountSummary update * fix: fixed build * tidy: refactor * fix: fix enourmous APYs * fix: don’t abbreviate APYs * tidy: console.log * fix: fix borrow Rate sorting * fix: fixed scrollbars * fix: hide scrollbars * fix: resolved feedback * fix: amount not size * feat: only show credit account number outside of modals * fix: added missing Strategies to PortfolioAccount * fix: save some space
22 lines
819 B
TypeScript
22 lines
819 B
TypeScript
export enum LocalStorageKeys {
|
|
TRADING_PAIR_SIMPLE = 'tradingPairSimple',
|
|
TRADING_PAIR_ADVANCED = 'tradingPairAdvanced',
|
|
ACCOUNT_SUMMARY_TABS = 'accountSummaryTabs',
|
|
ACCOUNT_DETAILS_TABS = 'accountDetailsTabs',
|
|
DISPLAY_CURRENCY = 'displayCurrency',
|
|
REDUCE_MOTION = 'reduceMotion',
|
|
FAVORITE_ASSETS = 'favoriteAssets',
|
|
ENABLE_AUTO_LEND_GLOBAL = 'enableAutoLendGlobal',
|
|
AUTO_LEND_ENABLED_ACCOUNT_IDS = 'autoLendEnabledAccountIds',
|
|
SLIPPAGE = 'slippage',
|
|
TERMS_OF_SERVICE = 'termsOfService',
|
|
TUTORIAL = 'tutorial',
|
|
TRANSACTIONS = 'transactions',
|
|
MIGRATION_BANNER = 'migrationBanner',
|
|
HLS_INFORMATION = 'hlsInformation',
|
|
CURRENT_CHAIN_ID = 'currentChainId',
|
|
PERPS_ASSET = 'perpsAsset',
|
|
UPDATE_ORACLE = 'updateOracle',
|
|
CHART_INTERVAL = 'tradingview.chart.lastUsedTimeBasedResolution',
|
|
}
|