Kit
Interfaces

BaseTransactionSignerConfig

The base configuration object for transaction signers only.

Extends

Properties

PropertyModifierTypeDescriptionInherited from
abortSignal?readonlyAbortSignalAn optional AbortSignal that can be used to cancel the signing process. Example import { generateKeyPairSigner } from '@solana/signers'; const abortController = new AbortController(); const signer = await generateKeyPairSigner(); signer.signMessages([message], { abortSignal: abortController.signal }); abortController.abort();BaseSignerConfig.abortSignal
minContextSlot?publicbigintSigners that simulate transactions (eg. wallets) might be interested in knowing which slot was current when the transaction was prepared. They can use this information to ensure that they don't run the simulation at too early a slot.-

On this page