CCC Docs
    Preparing search index...
    createTypeId: (
        this: void,
        props: {
            signer: Signer;
            data: BytesLike;
            receiver?: ScriptLike | null;
            tx?: TransactionLike | null;
        },
    ) => Promise<{ tx: Transaction; id: `0x${string}`; index: number }>

    Type Declaration

      • (
            this: void,
            props: {
                signer: Signer;
                data: BytesLike;
                receiver?: ScriptLike | null;
                tx?: TransactionLike | null;
            },
        ): Promise<{ tx: Transaction; id: `0x${string}`; index: number }>
      • Create a Type ID cell.

        Parameters

        • this: void
        • props: {
              signer: Signer;
              data: BytesLike;
              receiver?: ScriptLike | null;
              tx?: TransactionLike | null;
          }

          The arguments for creating the cell.

          • signer: Signer

            The signer to sign the transaction.

          • data: BytesLike

            The output data.

          • Optionalreceiver?: ScriptLike | null

            The receiver script (optional).

          • Optionaltx?: TransactionLike | null

            The transaction skeleton (optional).

        Returns Promise<{ tx: Transaction; id: `0x${string}`; index: number }>