import type { SignedTransaction } from "web3-core"; import type { TransactionReceiptL2 } from "../nightfall/types"; export interface RecipientNightfallData { recipientCompressedZkpPublicKeys: string[]; values: string[]; } export interface TransactionResult { signedTxL1?: SignedTransaction; txReceiptL2?: TransactionReceiptL2; } export interface NightfallSDKTransactionReceipt { txHashL1?: string; txHashL2?: string; }