CCC Docs
    Preparing search index...

    Interface LumosTransactionSkeletonType

    interface LumosTransactionSkeletonType {
        cellDeps: {
            toArray(): (
                {} & {
                    outPoint: {} & { txHash: BytesLike; index: NumLike };
                    depType: DepTypeLike;
                }
            )[];
        };
        headerDeps: { toArray(): BytesLike[] };
        inputs: {
            toArray(): {
                outPoint?: {} & { txHash: BytesLike; index: NumLike };
                cellOutput: CellOutputLike;
                data: BytesLike;
            }[];
        };
        inputSinces: { get(i: number, defaultVal: string): BytesLike };
        outputs: { toArray(): { cellOutput: CellOutputLike; data: BytesLike }[] };
        witnesses: { toArray(): BytesLike[] };
    }
    Index

    Properties

    cellDeps: {
        toArray(): (
            {} & {
                outPoint: {} & { txHash: BytesLike; index: NumLike };
                depType: DepTypeLike;
            }
        )[];
    }
    headerDeps: { toArray(): BytesLike[] }
    inputs: {
        toArray(): {
            outPoint?: {} & { txHash: BytesLike; index: NumLike };
            cellOutput: CellOutputLike;
            data: BytesLike;
        }[];
    }
    inputSinces: { get(i: number, defaultVal: string): BytesLike }
    outputs: { toArray(): { cellOutput: CellOutputLike; data: BytesLike }[] }
    witnesses: { toArray(): BytesLike[] }