Type Alias ITransactionMessageWithSigners<TAddress, TSigner, TAccounts>

ITransactionMessageWithSigners: Partial<
    | ITransactionMessageWithFeePayer<TAddress>
    | ITransactionMessageWithFeePayerSigner<TAddress, TSigner>,
> & Pick<
    BaseTransactionMessage<
        TransactionVersion,
        IInstruction & IInstructionWithSigners<TSigner, TAccounts>,
    >,
    "instructions",
>

A variation of the transaction message type that allows IAccountSignerMeta in its account metas.

Type Parameters