From e9b34eba27fe1e5b3f2827de2494dd5d367c8a5c Mon Sep 17 00:00:00 2001 From: Chris Wessels Date: Sat, 18 Jan 2025 22:31:45 +0000 Subject: [PATCH] fix: remove curve initiative from deployment-manifest-to-app-env.ts --- contracts/utils/deployment-manifest-to-app-env.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/contracts/utils/deployment-manifest-to-app-env.ts b/contracts/utils/deployment-manifest-to-app-env.ts index f270fa94..3d9dcea5 100644 --- a/contracts/utils/deployment-manifest-to-app-env.ts +++ b/contracts/utils/deployment-manifest-to-app-env.ts @@ -44,7 +44,6 @@ const ZDeploymentManifest = z.object({ LQTYToken: ZAddress, LQTYStaking: ZAddress.default(ZERO_ADDRESS), governance: ZAddress, - curveV2GaugeRewardsInitiative: ZAddress, }), branches: z.array( @@ -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; }