MCPcopy Create free account
hub / github.com/api3dao/airnode / IntegrationInfo

Interface IntegrationInfo

packages/airnode-examples/src/utils.ts:11–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9export const supportedNetworks = ['ethereum-sepolia-testnet'] as const;
10
11export 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected