CCC Docs
    Preparing search index...

    Type Alias CellAnyLike

    Represents a cell-like object that may or may not be on-chain. It can optionally have an outPoint (or previousOutput). This is used as a flexible input for creating CellAny instances.

    CellAny

    type CellAnyLike = {
        outPoint?: OutPointLike | null;
        previousOutput?: OutPointLike | null;
        cellOutput: CellOutputLike;
        outputData?: HexLike | null;
    }
    Index

    Properties

    outPoint?: OutPointLike | null
    previousOutput?: OutPointLike | null
    cellOutput: CellOutputLike
    outputData?: HexLike | null