dsteem
    Preparing search index...

    Interface BlockchainStreamOptions

    interface BlockchainStreamOptions {
        from?: number;
        mode?: BlockchainMode;
        to?: number;
    }
    Index

    Properties

    Properties

    from?: number

    Start block number, inclusive. If omitted generation will start from current block height.

    Streaming mode, if set to Latest may include blocks that are not applied to the final chain. Defaults to Irreversible.

    to?: number

    End block number, inclusive. If omitted stream will continue indefinitely.