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