mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 02:07:56 +00:00
7 lines
276 B
TypeScript
7 lines
276 B
TypeScript
import type { Keypair } from '../types.js';
|
|
/**
|
|
* @name sr25519Sign
|
|
* @description Returns message signature of `message`, using the supplied pair
|
|
*/
|
|
export declare function sr25519Sign(message: string | Uint8Array, { publicKey, secretKey }: Partial<Keypair>): Uint8Array;
|