Function opRipemd160

  • Type Parameters

    Parameters

    • __namedParameters: {
          ripemd160: {
              hash: ((input: Uint8Array) => Uint8Array);
          };
      } = ...
      • ripemd160: {
            hash: ((input: Uint8Array) => Uint8Array);
        }
        • hash: ((input: Uint8Array) => Uint8Array)
            • (input: Uint8Array): Uint8Array
            • Returns the ripemd160 hash of the provided input.

              To incrementally construct a ripemd160 hash (e.g. for streaming), use init, update, and final.

              Parameters

              • input: Uint8Array

                a Uint8Array to be hashed using ripemd160

              Returns Uint8Array

    Returns Operation<State>

Generated using TypeDoc