-
Notifications
You must be signed in to change notification settings - Fork 26
/
additional.d.ts
42 lines (37 loc) · 1.33 KB
/
additional.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
declare namespace NodeJS {
export interface ProcessEnv {
/**
* Network chain id
*/
NEXT_PUBLIC_CHAIN_ID: string;
/**
* Public available rollups-explorer-api graphql endpoint.
*/
NEXT_PUBLIC_EXPLORER_API_URL: string;
/**
* Alchemy API key to have an extra rpc-node to work in conjunction with public nodes.
*/
NEXT_PUBLIC_ALCHEMY_API_KEY: string;
/**
* Optional rollups-explorer-api URL to work with server-side calls.
* Internal calls may need a different URI to become reachable.
*/
INTERNAL_EXPLORER_API_URL: string;
/**
* CI=true is common set in most CI providers. e.g. Github, TravisCI
*/
CI?: "true";
/**
* Base url to be used inside the e2e tests when calling e.g. page.goto("/applications")
* Default used in its absence is http://localhost:3000
*/
E2E_BASE_URL?: string;
/**
* The Protection Bypass secret for Automation feature lets you bypass Vercel Deployment Protection
* for automated tooling (e.g. E2E testing).
*/
VERCEL_AUTOMATION_BYPASS_SECRET?: string;
}
}
declare module "@synthetixio/synpress/commands/metamask";
declare module "@synthetixio/synpress/helpers";