Skip to main content

Variable.InvestTransactionStatus

const InvestTransactionStatus: {
Pending: "PENDING";
Rejected: "REJECTED";
Validated: "VALIDATED";
};

Status of an investment transaction through its lifecycle.

  • PENDING: The transaction has been submitted and is awaiting review or on-chain confirmation. This is the initial state for all new transactions.
  • VALIDATED: The transaction has been approved and the holding records have been updated accordingly.
  • REJECTED: The transaction was denied (e.g. compliance check failed or insufficient funds); no holding update is applied.

Type Declaration

Pending

readonly Pending: "PENDING";

Rejected

readonly Rejected: "REJECTED";

Validated

readonly Validated: "VALIDATED";