Skip to content

Commit

Permalink
Allow deposit_paused as a staking deployment status (#2167)
Browse files Browse the repository at this point in the history
  • Loading branch information
iamacook authored Dec 2, 2024
1 parent 259e562 commit 5f5b317
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/datasources/staking-api/entities/deployment.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ export const DeploymentProductTypes = ['defi', 'pooling', 'dedicated'] as const;

export const DeploymentChains = ['eth', 'arb', 'bsc', 'matic', 'op'] as const;

export const DeploymentStatuses = ['active', 'pending', 'disabled'] as const;
export const DeploymentStatuses = [
'active',
'deposit_paused',
'pending',
'disabled',
] as const;

export const DeploymentSchema = z.object({
id: z.string().uuid(),
Expand Down

0 comments on commit 5f5b317

Please sign in to comment.