-
Notifications
You must be signed in to change notification settings - Fork 290
Expand file tree
/
Copy pathedgeConfig.ts
More file actions
41 lines (40 loc) · 1.62 KB
/
edgeConfig.ts
File metadata and controls
41 lines (40 loc) · 1.62 KB
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
import type { AppConfig } from '../types/types'
import { edgeDark } from './variables/edgeDark'
import { edgeLight } from './variables/edgeLight'
export const edgeConfig: AppConfig = {
appId: undefined,
appName: 'Edge',
appNameShort: 'Edge',
appStore:
'https://apps.apple.com/us/app/edge-crypto-bitcoin-wallet/id1344400091',
backupAccountSite: 'https://edge.app/light-account-creation/',
configName: 'edge',
darkTheme: edgeDark,
pendingTxLearnMoreUrl:
'https://support.edge.app/hc/en-us/articles/43465958781723',
defaultWallets: [
{ pluginId: 'bitcoin', tokenId: null },
{ pluginId: 'ethereum', tokenId: null },
{ pluginId: 'litecoin', tokenId: null },
{ pluginId: 'bitcoincash', tokenId: null },
{ pluginId: 'dash', tokenId: null }
],
forceCloseUrl:
'https://support.edge.app/hc/en-us/articles/26702768694811-How-to-force-close-Edge-Android-and-iOS',
ip2faSite:
'https://support.edge.app/hc/en-us/articles/7018106439579-Edge-Security-IP-Validation-and-2FA',
knowledgeBase: 'https://support.edge.app/',
lightTheme: edgeLight,
notificationServers: ['https://push2.edge.app'],
phoneNumber: '+1-619-777-5688',
playStore:
'https://play.google.com/store/apps/details?id=co.edgesecure.app&hl=en_US',
referralServers: ['https://referral1.edge.app'],
supportsEdgeLogin: true,
supportEmail: 'support@edge.app',
supportContactSite: 'https://support.edge.app/hc/en-us/requests/new',
supportSite: 'https://help.edge.app/support/tickets/new',
termsOfServiceSite: 'https://edge.app/tos/',
website: 'https://edge.app',
supportChatSite: 'https://support.edge.app/hc/en-us?chat=open'
}