mango-v4-ui/utils/constants.ts

60 lines
1.5 KiB
TypeScript
Raw Normal View History

export const LAST_ACCOUNT_KEY = 'mangoAccount-0.1'
2022-08-20 11:17:57 -07:00
2022-09-29 21:21:23 -07:00
export const CLIENT_TX_TIMEOUT = 90000
2022-08-20 11:17:57 -07:00
export const INPUT_TOKEN_DEFAULT = 'USDC'
export const OUTPUT_TOKEN_DEFAULT = 'SOL'
2022-08-20 19:57:07 -07:00
export const IS_ONBOARDED_KEY = 'isOnboarded-0.1'
2022-08-23 15:33:09 -07:00
export const SHOW_ZERO_BALANCES_KEY = 'show-zero-balances-0.1'
2022-08-24 16:25:59 -07:00
export const ALPHA_DEPOSIT_LIMIT = 20
export const SIDEBAR_COLLAPSE_KEY = 'sidebar-0.1'
2022-09-11 17:22:37 -07:00
export const ONBOARDING_TOUR_KEY = 'showOnboardingTour'
2022-09-27 20:07:26 -07:00
export const PREFERRED_EXPLORER_KEY = 'preferredExplorer'
export const PROFILE_CATEGORIES = [
'borrower',
'day-trader',
'degen',
'discretionary',
'loan-shark',
'market-maker',
'swing-trader',
'trader',
'yolo',
]
export const COINGECKO_IDS = [
{ id: 'bitcoin', symbol: 'BTC' },
{ id: 'ethereum', symbol: 'ETH' },
{ id: 'solana', symbol: 'SOL' },
{ id: 'mango-markets', symbol: 'MNGO' },
// { id: 'binancecoin', symbol: 'BNB' },
// { id: 'serum', symbol: 'SRM' },
// { id: 'raydium', symbol: 'RAY' },
// { id: 'ftx-token', symbol: 'FTT' },
// { id: 'avalanche-2', symbol: 'AVAX' },
// { id: 'terra-luna', symbol: 'LUNA' },
// { id: 'cope', symbol: 'COPE' },
// { id: 'cardano', symbol: 'ADA' },
{ id: 'msol', symbol: 'MSOL' },
// { id: 'tether', symbol: 'USDT' },
// { id: 'stepn', symbol: 'GMT' },
]
2022-09-13 23:24:26 -07:00
const baseUrl = 'https://event-history-api-candles.herokuapp.com'
export const CHART_DATA_FEED = `${baseUrl}/tv`
export const DEFAULT_MARKET_NAME = 'SOL/USDC'
export const GRID_LAYOUT_KEY = 'savedLayouts-0.1'
export const ORDERBOOK_FLASH_KEY = 'showOrderbookFlash-0.1'