Skip to content

Commit

Permalink
Merge pull request #711 from chriswessels/patch-2
Browse files Browse the repository at this point in the history
fix: remove curve initiative from deployment-manifest-to-app-env.ts
  • Loading branch information
danielattilasimon authored Jan 19, 2025
2 parents 8490072 + e9b34eb commit 94a354b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions contracts/utils/deployment-manifest-to-app-env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ const ZDeploymentManifest = z.object({
LQTYToken: ZAddress,
LQTYStaking: ZAddress.default(ZERO_ADDRESS),
governance: ZAddress,
curveV2GaugeRewardsInitiative: ZAddress,
}),

branches: z.array(
Expand Down Expand Up @@ -219,10 +218,6 @@ function contractNameToAppEnvVariable(contractName: string, prefix: string = "")
return `${prefix}_LQTY_STAKING`;
case "governance":
return `${prefix}_GOVERNANCE`;

// governance initiatives
case "curveV2GaugeRewardsInitiative":
return `${prefix}_CURVE_V2_GAUGE_REWARDS`;
}
return null;
}
Expand Down

0 comments on commit 94a354b

Please sign in to comment.