| 9 | export const supportedNetworks = ['ethereum-sepolia-testnet'] as const; |
| 10 | |
| 11 | export interface IntegrationInfo { |
| 12 | integration: string; |
| 13 | airnodeType: 'aws' | 'local' | 'gcp'; |
| 14 | accessKeyId: string; |
| 15 | secretKey: string; |
| 16 | network: (typeof supportedNetworks)[number] | 'localhost'; |
| 17 | mnemonic: string; |
| 18 | providerUrl: string; |
| 19 | gcpProjectId?: string; |
| 20 | crossChainNetwork?: (typeof supportedNetworks)[number] | 'localhost'; |
| 21 | crossChainProviderUrl?: string; |
| 22 | crossChainMnemonic?: string; |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * @returns true if this platform is MacOS, Windows or WSL |
nothing calls this directly
no outgoing calls
no test coverage detected