-
Notifications
You must be signed in to change notification settings - Fork 29
/
config.ts
35 lines (33 loc) · 1.03 KB
/
config.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
const env = process.env as any;
export const VERIFIER_PLUS_URL = env['VERIFIER_PLUS_URL'] || 'https://verifierplus.org';
export const KnownDidRegistries = [
{
'name': 'DCC Pilot Registry',
'url': 'https://digitalcredentials.github.io/issuer-registry/registry.json'
},
{
'name': 'DCC Sandbox Registry',
'url': 'https://digitalcredentials.github.io/sandbox-registry/registry.json'
},
{
'name': 'DCC Community Registry',
'url': 'https://digitalcredentials.github.io/community-registry/registry.json'
},
{
'name': 'DCC Registry',
'url': 'https://digitalcredentials.github.io/dcc-registry/registry.json'
}
];
export const LinkConfig = {
schemes: {
customProtocol: ['dccrequest://', 'org.dcconsortium://'],
universalAppLink: 'https://lcw.app/mobile'
},
registerWalletUrl: 'https://lcw.app/register-wallet.html',
appWebsite: {
home: 'https://lcw.app',
// FAQ page assumes #public-link,
// #public-link-unshare, and #add-to-linkedin sections
faq: 'https://lcw.app/faq.html'
}
};