19 lines
478 B
TypeScript
19 lines
478 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
|
|
/**
|
|
* Request payload for batch signature backfill.
|
|
*/
|
|
export type DemoPipeline2BackfillSignaturesBatchRequest = {
|
|
/**
|
|
* Transaction signatures to resolve and replay.
|
|
*/
|
|
signatures: Array<string>,
|
|
/**
|
|
* Optional HTTP role.
|
|
*/
|
|
httpRole: string | null,
|
|
/**
|
|
* Whether the batch should continue after a hard per-signature error.
|
|
*/
|
|
continueOnError: boolean, };
|