import type { SchnorrSigner } from "../signers"; import type { Key, PublicNonces, SignatureOutput } from "."; export interface MultiSigTx { signers: SchnorrSigner[]; combinedPubKey: Key; signatures: SignatureOutput[]; } export type SignersSignatures = Record; export type SignersNonces = Record; export type SignersPubKeys = Record;