mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 02:07:56 +00:00
9 lines
372 B
TypeScript
9 lines
372 B
TypeScript
import type { KeypairType } from '@pezkuwi/util-crypto/types';
|
|
import type { KeyringPair$Json, KeyringPair$Meta } from '../types.js';
|
|
interface PairStateJson {
|
|
address: string;
|
|
meta: KeyringPair$Meta;
|
|
}
|
|
export declare function pairToJson(type: KeypairType, { address, meta }: PairStateJson, encoded: Uint8Array, isEncrypted: boolean): KeyringPair$Json;
|
|
export {};
|