-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathenvironment.d.ts
71 lines (61 loc) · 1.97 KB
/
environment.d.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
60
61
62
63
64
65
66
67
68
69
70
71
declare namespace NodeJS {
export interface ProcessEnv {
/**
* API Key for the Onboard API
* @deprecated
*/
readonly NEXT_PUBLIC_APP_ONBOARD_APIKEY: string;
/**
* API Key for the Ankr API
* @description Use this key to access the Ankr API
* to get user EVM Assets List
*/
readonly NEXT_PUBLIC_APP_ANKR_APIKEY: string;
/**
* APP Version
*/
readonly NEXT_PUBLIC_APP_VERSION: string;
/**
* APP Build Date
*/
readonly NEXT_PUBLIC_APP_BUILD_DATE: string;
/**
* APP Environment Production enabled
*/
readonly NEXT_PUBLIC_APP_IS_PROD: string;
/**
* APP Environment is Offline.
* @description This is used for development purposes.
* If this is enabled, the app will not make any API calls and
* will use the mock data instead.
*/
readonly NEXT_PUBLIC_APP_IS_LOCAL: string;
/**
* API Key for the Zerion API
* @description Use this key to access the Zerion API
* to get User EVM Wallet History transactions
*/
readonly NEXT_PUBLIC_APP_ZERION_APIKEY: string;
/**
* API Key for the Coingecko API
* @description Use this key to access the Coingecko API
* to get the latest token prices
*/
readonly NEXT_PUBLIC_APP_COINGECKO_APIKEY: string;
/**
* Enable/Disable Emulator for Firebase
*/
readonly NEXT_PUBLIC_ENABLE_EMULATORS: string;
/**
* FIREBASE Configurations for the Firebase SDK
* @description Following are the configurations required for the Firebase SDK
*/
readonly NEXT_PUBLIC_APP_FIREBASE_APIKEY: string;
readonly NEXT_PUBLIC_APP_FIREBASE_AUTHDOMAIN: string;
readonly NEXT_PUBLIC_APP_FIREBASE_PROJECTID: string;
readonly NEXT_PUBLIC_APP_FIREBASE_STORAGEBUCKET: string;
readonly NEXT_PUBLIC_APP_FIREBASE_MESSAGINGSENDERID: string;
readonly NEXT_PUBLIC_APP_FIREBASE_APPID: string;
readonly NEXT_PUBLIC_APP_FIREBASE_DATABASEURL: string;
}
}