Interfaces
BaseTransactionSignerConfig
The base configuration object for transaction signers only.
Extends
Properties
Property | Modifier | Type | Description | Inherited from |
---|---|---|---|---|
abortSignal? | readonly | AbortSignal | An 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? | public | bigint | Signers 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. | - |