UNPKG

313 BTypeScriptView Raw
1import type { Keypair } from '../types.js';
2/**
3 * @name sr25519VrfSign
4 * @description Sign with sr25519 vrf signing (deterministic)
5 */
6export declare function sr25519VrfSign(message: string | Uint8Array, { secretKey }: Partial<Keypair>, context?: string | Uint8Array, extra?: string | Uint8Array): Uint8Array;