DepositStatus
The status of a deposit
enum DepositStatus {
STATUS_OPEN
STATUS_CANCELLED
STATUS_FINALIZED
}
Values
DepositStatus.STATUS_OPEN
The deposit is open and being processed by the network
DepositStatus.STATUS_CANCELLED
The deposit have been cancelled by the network, either because it expired, or something went wrong with the foreign chain
DepositStatus.STATUS_FINALIZED
The deposit was finalised, it was valid, the foreign chain has executed it and the network updated all accounts
Member of
Deposit
object