ic-reactor
    Preparing search index...

    Interface PollingOptions

    Options for controlling polling behavior

    interface PollingOptions {
        strategy?: utils.agent.PollStrategy;
        preSignReadStateRequest?: boolean;
        blsVerify?: VerifyFunc;
        request?: utils.agent.ReadStateRequest;
    }
    Index

    Properties

    A polling strategy that dictates how much and often we should poll the read_state endpoint to get the result of an update call.

    defaultStrategy()
    
    preSignReadStateRequest?: boolean

    Whether to reuse the same signed request for polling or create a new unsigned request each time.

    false
    
    blsVerify?: VerifyFunc

    Optional replacement function that verifies the BLS signature of a certificate.

    The request to use for polling. If not provided, a new request will be created. This is only used if preSignReadStateRequest is set to false.