@kyve/core-beta
Version:
🚀 The base KYVE node implementation.
13 lines (12 loc) • 437 B
TypeScript
import { Node } from "../..";
/**
* waitForUploadInterval waits until the upload interval of the current
* round has passed. The node waits, because during this time no new round
* will start. Only after the upload interval the next uploader can start
* the next round.
*
* @method waitForUploadInterval
* @param {Node} this
* @return {Promise<void>}
*/
export declare function waitForUploadInterval(this: Node): Promise<void>;