| 6 | // General |
| 7 | // =========================================== |
| 8 | export interface DeployState { |
| 9 | readonly airnodesByName: { readonly [name: string]: Airnode }; |
| 10 | readonly authorizersByName: { readonly [name: string]: string }; |
| 11 | readonly requestersByName: { readonly [name: string]: ethers.Contract }; |
| 12 | readonly erc721sByName: { readonly [name: string]: ethers.Contract }; |
| 13 | readonly authorizers: { readonly [name: string]: ethers.Contract }; |
| 14 | readonly config: Config; |
| 15 | readonly contracts: { |
| 16 | readonly AirnodeRrp?: AirnodeRrpV0; |
| 17 | readonly AccessControlRegistry?: AccessControlRegistry; |
| 18 | readonly RequesterAuthorizerWithErc721?: RequesterAuthorizerWithErc721; |
| 19 | }; |
| 20 | readonly deployer: ethers.providers.JsonRpcSigner; |
| 21 | readonly provider: ethers.providers.JsonRpcProvider; |
| 22 | readonly sponsorsById: { readonly [name: string]: SponsorAccount }; |
| 23 | readonly templatesByName: { readonly [name: string]: Template }; |
| 24 | } |
| 25 | |
| 26 | export interface RequestsState { |
| 27 | readonly config: Config; |
nothing calls this directly
no outgoing calls
no test coverage detected