mirror of
https://github.com/codex-storage/codex-contracts-eth.git
synced 2025-02-03 07:03:26 +00:00
18 lines
225 B
JavaScript
18 lines
225 B
JavaScript
const RequestState = {
|
|
New: 0,
|
|
Started: 1,
|
|
Cancelled: 2,
|
|
Finished: 3,
|
|
Failed: 4,
|
|
}
|
|
|
|
const SlotState = {
|
|
Free: 0,
|
|
Filled: 1,
|
|
Finished: 2,
|
|
Failed: 3,
|
|
Paid: 4,
|
|
}
|
|
|
|
module.exports = { RequestState, SlotState }
|