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

Interface ApiCall

packages/airnode-node/src/types.ts:91–103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89// TODO: refactor these types such that there is user facing "ApiCall" which will get merged with
90// template and internal type that is the result of those two being merged.
91export interface ApiCall {
92 readonly requestCount: string;
93 readonly chainId: string;
94 readonly requesterAddress: string;
95 readonly templateId: string | null;
96 readonly fulfillAddress: string;
97 readonly fulfillFunctionId: string;
98 readonly endpointId: string | null;
99 readonly encodedParameters: string;
100 readonly parameters: ApiCallParameters;
101 readonly type: ApiCallType;
102 readonly template?: ApiCallTemplate;
103}
104
105export type ApiCallWithResponse = ApiCall & RegularApiCallResponse;
106

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected