stellar-sdk
Version:
A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.
13 lines (12 loc) • 505 B
TypeScript
import { Transaction } from "@stellar/stellar-base";
export declare class Utils {
/**
* Verifies if the current date is within the transaction's timebonds
*
* @static
* @function
* @param {Transaction} transaction the transaction whose timebonds will be validated.
* @returns {boolean} returns true if the current time is within the transaction's [minTime, maxTime] range.
*/
static validateTimebounds(transaction: Transaction, gracePeriod?: number): boolean;
}