near-api-js - v7.0.4
    Preparing search index...

    Type Alias BandwidthRequest

    BandwidthRequest describes the size of receipts that a shard would like to send to another shard. When a shard wants to send a lot of receipts to another shard, it needs to create a request and wait for a bandwidth grant from the bandwidth scheduler.

    type BandwidthRequest = {
        requested_values_bitmap: BandwidthRequestBitmap;
        to_shard: number;
    }
    Index

    Properties

    requested_values_bitmap: BandwidthRequestBitmap

    Bitmap which describes what values of bandwidth are requested.

    to_shard: number

    Requesting bandwidth to this shard.