We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b1b65a commit 1b6939cCopy full SHA for 1b6939c
src/clients/SpokePoolClient/SVMSpokePoolClient.ts
@@ -192,4 +192,14 @@ export class SvmSpokePoolClient extends SpokePoolClient {
192
): Promise<FillStatus> {
193
throw new Error("relayFillStatus not implemented for SVM");
194
}
195
+
196
+ /**
197
+ * Retrieves the fill status for an array of given relay data.
198
+ * @param relayData The array relay data to retrieve the fill status for.
199
+ * @param blockTag The block at which to query the fill status.
200
+ * @returns The fill status for each of the given relay data.
201
+ */
202
+ public fillStatusArray(_relayData: RelayData[], _blockTag?: number | "latest"): Promise<(FillStatus | undefined)[]> {
203
+ throw new Error("fillStatusArray not implemented for SVM");
204
+ }
205
0 commit comments