ZkTransactionInput
type ZkTransactionInput = { chainId?: string; data?: string; from: string; gas: string; gasPrice?: string; maxFeePerGas: string; maxPriorityFeePerGas: string; nonce?: string; paymaster: string; signedTransaction: string; to: string; value?: string;};
type chainId = string;
type data = string;
type from = string;
type gas = string;
type gasPrice = string;
type maxFeePerGas = string;
type maxPriorityFeePerGas = string;
type nonce = string;
type paymaster = string;
type signedTransaction = string;
type to = string;
type value = string;