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