UNPKG

@provenanceio/wallet-utils

Version:

Typescript Utilities for Provenance Blockchain Wallet

8 lines (7 loc) 251 B
import type { Bytes } from '@tendermint/types'; /** * sha256 encryption of a byte array * @param bytes a byte array (Uint8Array) * @returns a sha256 encryted version of the given byte array */ export declare const sha256: (bytes: Bytes) => Bytes;