UNPKG

335 BTypeScriptView Raw
1import type { HashType } from './types.js';
2/**
3 * @name secp256k1Verify
4 * @description Verifies the signature of `message`, using the supplied pair
5 */
6export declare function secp256k1Verify(msgHash: string | Uint8Array, signature: string | Uint8Array, address: string | Uint8Array, hashType?: HashType, onlyJs?: boolean): boolean;