| 88 | // Deployment should ideally mirror the structure of the config file, but with |
| 89 | // different fields for addresses, hashes and other deployment data |
| 90 | export interface Deployment { |
| 91 | readonly airnodes: { readonly [name: string]: DeployedAirnode }; |
| 92 | readonly requesters: { readonly [name: string]: string }; |
| 93 | readonly contracts: { |
| 94 | readonly AirnodeRrp: string; |
| 95 | readonly RequesterAuthorizerWithErc721: string; |
| 96 | }; |
| 97 | readonly sponsors: DeployedSponsor[]; |
| 98 | readonly erc721s: { readonly [name: string]: string }; |
| 99 | readonly authorizers: { readonly [name: string]: string }; |
| 100 | } |
| 101 | |
| 102 | // =========================================== |
| 103 | // Configuration |
nothing calls this directly
no outgoing calls
no test coverage detected