UNPKG

@renegade-fi/node

Version:
18 lines 803 B
import type { SignMessageReturnType } from "viem"; /** * Interface representing the cryptographic secrets generated for a wallet */ export interface GeneratedSecrets { /** Unique identifier for the wallet in UUID format */ wallet_id: string; /** Cryptographic seed for the wallet's blinder CSPRNG */ blinder_seed: `0x${string}`; /** Cryptographic seed for the wallet's share CSPRNG */ share_seed: `0x${string}`; /** Encryption key for authenticating API requests */ symmetric_key: `0x${string}`; /** Secret key used for matching operations */ sk_match: `0x${string}`; } export declare function generateWalletSecrets(signMessage: (message: string) => Promise<SignMessageReturnType>): Promise<GeneratedSecrets>; //# sourceMappingURL=generateWalletSecrets.d.ts.map