Function setTransactionMessageLifetimeUsingBlockhash
- setTransactionMessageLifetimeUsingBlockhash<
TTransaction extends
Readonly<
{
instructions: readonly IInstruction<
string,
readonly (IAccountLookupMeta<string, string> | IAccountMeta<string>)[],
>[];
version: TransactionVersion;
},
> & TransactionMessageWithDurableNonceLifetime<string, string, string>,
>(
blockhashLifetimeConstraint: Readonly<
{ blockhash: Blockhash; lastValidBlockHeight: bigint },
>,
transaction: TTransaction,
): Omit<TTransaction, "lifetimeConstraint"> & TransactionMessageWithBlockhashLifetime - setTransactionMessageLifetimeUsingBlockhash<
TTransaction extends
| Readonly<
{
instructions: readonly IInstruction<
string,
readonly (IAccountLookupMeta<string, string> | IAccountMeta<string>)[],
>[];
version: TransactionVersion;
},
>
| Readonly<
{
instructions: readonly IInstruction<
string,
readonly (IAccountLookupMeta<string, string> | IAccountMeta<string>)[],
>[];
version: TransactionVersion;
},
> & TransactionMessageWithBlockhashLifetime,
>(
blockhashLifetimeConstraint: Readonly<
{ blockhash: Blockhash; lastValidBlockHeight: bigint },
>,
transaction: TTransaction,
): TransactionMessageWithBlockhashLifetime & TTransaction