mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 05:38:03 +00:00
7 lines
313 B
TypeScript
7 lines
313 B
TypeScript
import type { Keypair } from '../types.js';
|
|
/**
|
|
* @name sr25519VrfSign
|
|
* @description Sign with sr25519 vrf signing (deterministic)
|
|
*/
|
|
export declare function sr25519VrfSign(message: string | Uint8Array, { secretKey }: Partial<Keypair>, context?: string | Uint8Array, extra?: string | Uint8Array): Uint8Array;
|