Skip to content

Commit

Permalink
Set Superfluid Session 3 as default council
Browse files Browse the repository at this point in the history
  • Loading branch information
sembrestels committed Jan 23, 2025
1 parent 9a2921b commit a69e7b4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
8 changes: 8 additions & 0 deletions apps/web/src/components/VotingCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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) => ({
Expand Down
5 changes: 4 additions & 1 deletion apps/web/src/utils/council.ts
Original file line number Diff line number Diff line change
@@ -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 "";
Expand Down
2 changes: 1 addition & 1 deletion constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";

0 comments on commit a69e7b4

Please sign in to comment.