Function setTransactionMessageFeePayerSigner
- setTransactionMessageFeePayerSigner<
TFeePayerAddress extends string,
TTransactionMessage extends
Readonly<
{
instructions: readonly IInstruction<
string,
readonly (IAccountLookupMeta<string, string> | IAccountMeta<string>)[],
>[];
version: TransactionVersion;
},
> & Partial<
| ITransactionMessageWithFeePayer<string>
| ITransactionMessageWithFeePayerSigner<
string,
TransactionSigner<string>,
>,
>,
>(
feePayer: TransactionSigner<TFeePayerAddress>,
transactionMessage: TTransactionMessage,
): ITransactionMessageWithFeePayerSigner<TFeePayerAddress> & Omit<
TTransactionMessage,
"feePayer",
>