diff --git a/apps/web/src/components/VotingCard/index.tsx b/apps/web/src/components/VotingCard/index.tsx index 87c53e1..3768740 100644 --- a/apps/web/src/components/VotingCard/index.tsx +++ b/apps/web/src/components/VotingCard/index.tsx @@ -39,12 +39,20 @@ const VotingCard = ({ // TODO: Remove this once we have a way to rename projects const mapping: { [key: string]: string } = { + // Season 2 Lee: "Zenidrop by Lee", "Bruno & team": "AstroBlock by Bruno team", SenSpace: "SenSpace by SenSpace team", MarkCarey: "Pixel Nouns by Mark", "Dayitva & team": "Superboring Incentive by Dayitva team", "Nikku & team": "Buzzfi by Nikko team", + // Season 3 + Nezzar: "Nezzar: Astroblock V2", + "Giovanni & Dayitva": "Giovanni & Dayitva: Streamline Agent", + Dhruv: "Dhruv: Pipegate", + "Efrain & Shreyas": "Efrain & Shreyas: FluidFunds", + "Mark & Lee": "Mark & Lee: Streme.fun", + QinHao: "QingHao: DeepFlow", }; const renamedProjects = randomizedProjects.map((project) => ({ diff --git a/apps/web/src/utils/council.ts b/apps/web/src/utils/council.ts index 9ebb194..c9a9ba2 100644 --- a/apps/web/src/utils/council.ts +++ b/apps/web/src/utils/council.ts @@ -1,5 +1,8 @@ export const getCouncilImage = (council: `0x${string}` | undefined) => { - if (council === "0xFa942226E5dd1E2d4D99014982846786B09939DA") { + if ( + council === "0xFa942226E5dd1E2d4D99014982846786B09939DA" || + council === "0xB0A240F3887436A94fC2Af895103350971E271da" + ) { return "https://ipfs.blossom.software/ipfs/QmSkDgv6nQEUM5GjKCpqCiuKvMVYs63KqFveNH6DSra9ve"; } return ""; diff --git a/constants.ts b/constants.ts index bccadbc..34679b9 100644 --- a/constants.ts +++ b/constants.ts @@ -6,7 +6,7 @@ export const SOCIAL_TWITTER = "@blossom_labs"; export const SOCIAL_GITHUB = "BlossomLabs/CouncilHaus"; export const DEFAULT_COUNCIL_ADDRESS = - "0xfa942226e5dd1e2d4d99014982846786b09939da"; + "0xB0A240F3887436A94fC2Af895103350971E271da"; export const COUNCIL_FACTORY_ADDRESS = "0xdef306E171B39101cf133747f391E5e1A49C8948"; // Update also in contracts/councilhaus/subgraph/config/*.json export const NETWORK: "optimism" | "base" = "base";