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

    Type declaration

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

        Parameters

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

          The arguments for creating the cell.

          • signer: Signer

            The signer to sign the transaction.

          • data: BytesLike

            The output data.

          • Optionalreceiver?: null | ScriptLike

            The receiver script (optional).

          • Optionaltx?: null | TransactionLike

            The transaction skeleton (optional).

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