CCC Docs
    Preparing search index...

    Variable RawTransactionConst

    RawTransaction: Codec<
        EncodableRecord<
            {
                version: Codec<NumLike, number>;
                cellDeps: Codec<
                    (
                        {} & {
                            outPoint: {} & { txHash: BytesLike; index: NumLike };
                            depType: DepTypeLike;
                        }
                    )[],
                    CellDep[],
                >;
                headerDeps: Codec<BytesLike[], `0x${string}`[]>;
                inputs: Codec<CellInputLike[], CellInput[]>;
                outputs: Codec<CellOutputLike[], CellOutput[]>;
                outputsData: Codec<BytesLike[], `0x${string}`[]>;
            },
        >,
        DecodedRecord<
            {
                version: Codec<NumLike, number>;
                cellDeps: Codec<
                    (
                        {} & {
                            outPoint: {} & { txHash: BytesLike; index: NumLike };
                            depType: DepTypeLike;
                        }
                    )[],
                    CellDep[],
                >;
                headerDeps: Codec<BytesLike[], `0x${string}`[]>;
                inputs: Codec<CellInputLike[], CellInput[]>;
                outputs: Codec<CellOutputLike[], CellOutput[]>;
                outputsData: Codec<BytesLike[], `0x${string}`[]>;
            },
        >,
    > = ...