mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-04 06:13:09 +00:00
9 lines
115 B
JavaScript
9 lines
115 B
JavaScript
|
|
const FundStatus = {
|
||
|
|
Inactive: 0,
|
||
|
|
Locked: 1,
|
||
|
|
Frozen: 2,
|
||
|
|
Withdrawing: 3,
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = { FundStatus }
|