mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 04:27:59 +00:00
6 lines
293 B
TypeScript
6 lines
293 B
TypeScript
/**
|
|
* @name sr25519VrfVerify
|
|
* @description Verify with sr25519 vrf verification
|
|
*/
|
|
export declare function sr25519VrfVerify(message: string | Uint8Array, signOutput: string | Uint8Array, publicKey: string | Uint8Array, context?: string | Uint8Array, extra?: string | Uint8Array): boolean;
|