UNPKG

520 BTypeScriptView Raw
1import type { SignOptions } from '@polkadot/keyring/types';
2import type { Registry } from '@polkadot/types-codec/types';
3import type { IKeyringPair } from '../types/index.js';
4export declare function sign(registry: Registry, signerPair: IKeyringPair, u8a: Uint8Array, options?: SignOptions): Uint8Array;
5export declare function signV5(registry: Registry, signerPair: IKeyringPair, u8a: Uint8Array, options?: SignOptions): Uint8Array;
6export declare function signGeneral(registry: Registry, u8a: Uint8Array): Uint8Array;