mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-30 17:47:56 +00:00
6 lines
250 B
TypeScript
6 lines
250 B
TypeScript
/**
|
|
* @name sr25519Verify
|
|
* @description Verifies the signature of `message`, using the supplied pair
|
|
*/
|
|
export declare function sr25519Verify(message: string | Uint8Array, signature: string | Uint8Array, publicKey: string | Uint8Array): boolean;
|