-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCIKeys.stencil
67 lines (56 loc) · 2.6 KB
/
CIKeys.stencil
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
enum MoonPayCIKeys {
static var secretKey: String = "{{ argument.moonPaySecretKey }}"
static var testSecretKey: String = "{{ argument.moonPayTestSecretKey }}"
}
enum SubscanCIKeys {
static var apiKey: String = "{{ argument.subscanAPIKey }}"
}
enum SoraCardCIKeys {
static var apiKey: String = "{{ argument.soraCardAPIKey }}"
static var domain: String = "{{ argument.soraCardDomain }}"
static var endpoint: String = "{{ argument.soraCardKycEndpoint }}"
static var username: String = "{{ argument.soraCardKycUsername }}"
static var password: String = "{{ argument.soraCardKycPassword }}"
}
enum PayWingsCIKeys {
static var paywingsRepositoryUrl: String = "{{ argument.paywingsRepositoryUrl }}"
static var paywingsUsername: String = "{{ argument.paywingsUsername }}"
static var paywingsPassword: String = "{{ argument.paywingsPassword }}"
}
enum XOneCIKeys {
static var x1EndpointUrlRelease: String = "{{ argument.x1EndpointUrlRelease }}"
static var x1WidgetIdRelease: String = "{{ argument.x1WidgetIdRelease }}"
static var x1EndpointUrlDebug: String = "{{ argument.x1EndpointUrlDebug }}"
static var x1WidgetIdDebug: String = "{{ argument.x1WidgetIdDebug }}"
}
enum EthereumNodesApiKeys {
static var ethereumApiKey: String = "{{ argument.ethereumApiKey }}"
static var bscApiKey: String = "{{ argument.bscApiKey }}"
static var sepoliaApiKey: String = "{{ argument.sepoliaApiKey }}"
static var goerliApiKey: String = "{{ argument.goerliApiKey }}"
static var polygonApiKey: String = "{{ argument.polygonApiKey }}"
}
enum GoogleBackup {
static var googleToken: String = "{{ argument.webClientIdRelease }}"
static var googleUrlScheme: String = "{{ argument.fearlessGoogleUrlSchemeRelease }}"
}
enum GoogleBackupDebug {
static var googleToken: String = "{{ argument.webClientIdDebug }}"
static var googleUrlScheme: String = "{{ argument.fearlessGoogleUrlSchemeDebug }}"
}
enum WalletConnect {
static var projectId: String = "{{ argument.walletConnectProjectId }}"
}
enum BlockExplorerApiKeys {
static var etherscanApiKey: String = "{{ argument.etherscanApiKey }}"
static var polygonscanApiKey: String = "{{ argument.polygonscanApiKey }}"
static var bscscanApiKey: String = "{{ argument.bscscanApiKey }}"
static var oklinkApiKey: String = "{{ argument.oklinkApiKey }}"
static var opMainnetApiKey: String = "{{ argument.opMainnetApiKey }}"
}
enum ThirdPartyServicesApiKeys {
static var alchemyApiKey: String = "{{ argument.alchemyApiKey }}"
}
enum DwellirNodeApiKey {
static var dwellirApiKey: String = "{{ argument.dwellirApiKey }}"
}