generated from contco/nextjs-typescript-apollo-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 7
/
constants.ts
59 lines (43 loc) · 2.16 KB
/
constants.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
export const DARK_THEME = 'dark';
export const LIGHT_THEME = 'light';
export const TEFI_API = 'https://api.contco.dev/';
export const TERRA_TEST_NET = { URL: 'https://tequila-lcd.terra.dev', chainID: 'tequila-0004' };
export const TERRA_MAIN_NET = { URL: 'https://lcd.contco.dev', chainID: 'columbus-5' };
export const TERRA_OBSERVER_URL = 'wss://observer.terra.dev';
export const TERRA_SWAP_GRAPHQL_URL = TEFI_API + 'https://terraswap-graph.terra.dev/graphql';
export const CLUB_SERVER_ROOT = 'https://tef-club-server.herokuapp.com';
export const Keywords =
'Luna , Terra Protocol, UST , MIR, Tefi, MINE, price, cryptocurrency,token , dashboard, crypto , crypto news , crypto market cap , crypto prices , market , crypto market , wallet ';
//temp
export const IS_TEST = false;
//MarketValue
export const MarketTitles = ['Total Market Value', 'Total Assets', 'Total Borrowing', 'Total Rewards'];
//Assets
export const AssetsTitle = ['Ticker', 'Name', 'Balance', 'Price', 'Value'];
//Anchor Borrowing
export const BorrowingTitle = ['Collateral List', 'Collateral Value', 'Borrowed Value', 'Net APR'];
//Pools
export const PoolsTitle = ['Name', 'Staked', 'Liquid', 'Value'];
//Rewards
export const RewardsTitle = ['Name', 'Staked', 'APR', 'Reward'];
//Earn
export const EarnTitle = ['Total Deposit', 'APY'];
//Burn
export const BurnTitle = ['Amount', 'Request Time', 'Claimable Time'];
//Mirror Borrowing
export const MirrorBorrowTitle = ['Name', 'Price', 'Borrowed', 'Collateral', 'Collateral Ratio'];
//Short Farms
export const ShortTitle = ['Name', 'Shorted', 'Locked UST', 'Unlocked UST', 'Reward'];
//StarTerra Farm
export const StarTerraFarmTitle = ['Name', 'Faction', 'Staked', 'Value', 'Reward'];
//LocalStorage
export const ADDRESS_KEY = 'address';
export const LOCAL_ADDRESS_TYPE = 'local';
export const WALLET_ADDRESS_TYPE = 'wallet';
export enum WalletConnectType {
Extension,
Mobile,
}
export const TEFI_PREVIEW_IMAGE = 'https://storage.googleapis.com/tefi-app/tefi-preview.png';
export const CLUB_DEPOSIT_ADDRESS = 'terra1lpccq0w9e36nlzhx3m6t8pphx8ncavslyul29g';
export const TEFI_DAGORA_CONTRACT_ADDRESS = 'terra18luvq9wv88lk0h5xvx2eatnssqew2z36g7f2q0zhk4337q4g7wnqzwhe9w';