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
| Name | Type | Default value |
|---|---|---|
Pending | "PENDING" | 'PENDING' |
Rejected | "REJECTED" | 'REJECTED' |
Validated | "VALIDATED" | 'VALIDATED' |