The IFundingTransactionParametersWithoutSigner type is a subset of funding transaction parameters that excludes signer-related fields. It omits the signer, network, ML-DSA signer, and gas fee fields, useful when these values are provided separately.
IFundingTransactionParametersWithoutSigner
Overview
The full source code is available on GitHub at IWeb3ProviderTypes.ts.
Import
import { IFundingTransactionParametersWithoutSigner } from '@btc-vision/transaction';Interface
Signature
type IFundingTransactionParametersWithoutSigner = Omit<
IFundingTransactionParameters,
'signer' | 'network' | 'mldsaSigner' | 'gasSatFee'
>Description