Function setTransactionMessageLifetimeUsingDurableNonce
- setTransactionMessageLifetimeUsingDurableNonce<
TTransaction extends
Readonly<
{
instructions: readonly IInstruction<
string,
readonly (IAccountLookupMeta<string, string> | IAccountMeta<string>)[],
>[];
version: TransactionVersion;
},
>,
TNonceAccountAddress extends string = string,
TNonceAuthorityAddress extends string = string,
TNonceValue extends string = string,
>(
__namedParameters: Readonly<
{
nonce: Nonce<TNonceValue>;
nonceAccountAddress: Address<TNonceAccountAddress>;
nonceAuthorityAddress: Address<TNonceAuthorityAddress>;
},
>,
transaction:
| TTransaction
| TransactionMessageWithDurableNonceLifetime<string, string, string> & TTransaction,
): TransactionMessageWithDurableNonceLifetime<
TNonceAccountAddress,
TNonceAuthorityAddress,
TNonceValue,
> & TTransaction