10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
import type { Address } from 'viem';
|
|
|
|
export enum LockStatus {
|
|
// from DataTypes.sol
|
|
Inexistent = 0, // Uninitialized Lock
|
|
Active = 1, // Valid Lock
|
|
Expired = 2, // Expired Lock
|
|
Released = 3, // Already released Lock
|
|
}
|