-
Notifications
You must be signed in to change notification settings - Fork 7
/
environment.d.ts
55 lines (51 loc) · 1.56 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
declare global {
namespace NodeJS {
interface ProcessEnv {
PORT?: string
NODE_ENV: 'development' | 'production' | 'test'
SUPABASE_JWT_SECRET: string
EXPO_PUBLIC_URL: string
NEXT_PUBLIC_URL: string
EXPO_PUBLIC_SUPABASE_URL: string
NEXT_PUBLIC_SUPABASE_URL: string
EXPO_PUBLIC_SUPABASE_ANON_KEY: string
NEXT_PUBLIC_SUPABASE_ANON_KEY: string
NEXT_PUBLIC_SUPABASE_PROJECT_ID: string
NEXT_PUBLIC_SUPABASE_GRAPHQL_URL: string
NEXT_PUBLIC_MAINNET_RPC_URL: string
NEXT_PUBLIC_BASE_RPC_URL: string
NEXT_PUBLIC_BUNDLER_RPC_URL: string
SUPABASE_DB_URL: string
SUPABASE_SERVICE_ROLE: string
NEXT_PUBLIC_MAINNET_CHAIN_ID: string
NEXT_PUBLIC_BASE_CHAIN_ID: string
SNAPLET_HASH_KEY: string
/**
* Private key for the Secret Shop wallet client used to fund accounts on testnet and localnet.
*/
SECRET_SHOP_PRIVATE_KEY: string
/**
* Private key for the Send Account Factory wallet client used to create Send Accounts
*/
SEND_ACCOUNT_FACTORY_PRIVATE_KEY: string
/**
* Enables the query dev tool in the browser
*/
NEXT_PUBLIC_ENABLE_QUERY_DEV_TOOLS: string
/**
* Cloudflare Turnstile site key
*/
NEXT_PUBLIC_TURNSTILE_SITE_KEY: string
}
}
/**
* This variable is set to true when react-native is running in Dev mode
* @example
* if (__DEV__) console.log('Running in dev mode')
*/
const __DEV__: boolean
interface Window {
ethereum: IWeb3Provider
}
}
export type {}