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