19 lines
408 B
TypeScript
19 lines
408 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 pool backfill.
|
|
*/
|
|
export type DemoPipeline2BackfillPoolRequest = {
|
|
/**
|
|
* Pool address to backfill.
|
|
*/
|
|
poolAddress: string,
|
|
/**
|
|
* Optional HTTP role.
|
|
*/
|
|
httpRole: string | null,
|
|
/**
|
|
* Limit for signatures fetched from the pool.
|
|
*/
|
|
poolSignatureLimit: number, };
|