Interface ITransactionMessageWithFeePayerSigner<TAddress, TSigner>

interface ITransactionMessageWithFeePayerSigner<
    TAddress extends string = string,
    TSigner extends TransactionSigner<TAddress> = TransactionSigner<TAddress>,
> {
    feePayer: TSigner;
}

Type Parameters

Properties

Properties

feePayer: TSigner