UNPKG

341 BTypeScriptView Raw
1import type { HexString } from '@polkadot/util/types';
2/**
3 * @name sr25519Verify
4 * @description Verifies the signature of `message`, using the supplied pair
5 */
6export declare function sr25519Verify(message: HexString | Uint8Array | string, signature: HexString | Uint8Array | string, publicKey: HexString | Uint8Array | string): boolean;