@solana/web3.js
    Preparing search index...

    Type Alias DurableNonceTransactionConfirmationStrategy

    DurableNonceTransactionConfirmationStrategy: BaseTransactionConfirmationStrategy & {
        minContextSlot: number;
        nonceAccountPubkey: PublicKey;
        nonceValue: DurableNonce;
    }

    A strategy for confirming durable nonce transactions.

    Type Declaration

    • minContextSlot: number

      The lowest slot at which to fetch the nonce value from the nonce account. This should be no lower than the slot at which the last-known value of the nonce was fetched.

    • nonceAccountPubkey: PublicKey

      The account where the current value of the nonce is stored.

    • nonceValue: DurableNonce

      The nonce value that was used to sign the transaction for which confirmation is being sought.