@puzzlehq/sdk-core
Version:
Your portal to privacy
11 lines (10 loc) • 322 B
TypeScript
import { Network } from '@puzzlehq/types';
export type DecryptRequest = {
ciphertexts: string[];
address?: string;
network?: Network;
};
export type DecryptResponse = {
plaintexts: string[];
};
export declare const decrypt: ({ ciphertexts, network, address, }: DecryptRequest) => Promise<DecryptResponse>;