Skip to content

Commit

Permalink
feat: bera points
Browse files Browse the repository at this point in the history
  • Loading branch information
essserrr committed Jan 23, 2025
1 parent d01855b commit 207aa02
Showing 1 changed file with 40 additions and 1 deletion.
41 changes: 40 additions & 1 deletion src/points/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ type PointsType =
| "karak"
| "pumpBTC"
| "obol"
| "ssv";
| "ssv"
| "berachain"
| "kodiak"
| "dolomite"
| "beraWave";

interface PointsReward {
name: string;
Expand Down Expand Up @@ -145,6 +149,30 @@ const REWARDS_BASE_INFO = {
multiplier,
type: "ssv",
}),
berachain: (multiplier: PointsReward["multiplier"]): PointsReward => ({
name: "Berachain",
units: "points",
multiplier,
type: "berachain",
}),
kodiak: (multiplier: PointsReward["multiplier"]): PointsReward => ({
name: "Kodiak",
units: "points",
multiplier,
type: "kodiak",
}),
beraWave: (multiplier: PointsReward["multiplier"]): PointsReward => ({
name: "Bera-wave",
units: "points",
multiplier,
type: "beraWave",
}),
dolomite: (multiplier: PointsReward["multiplier"]): PointsReward => ({
name: "Dolomite",
units: "points",
multiplier,
type: "dolomite",
}),
};

export interface PointsInfo {
Expand Down Expand Up @@ -308,6 +336,17 @@ export const POINTS_INFO_BY_NETWORK: Record<NetworkType, Array<PointsInfo>> = {
REWARDS_BASE_INFO.ssv(1_00n),
],
},

{
address: "0x97Ad75064b20fb2B2447feD4fa953bF7F007a706",
symbol: "beraSTONE",
rewards: [
REWARDS_BASE_INFO.berachain(1_00n),
REWARDS_BASE_INFO.kodiak(1_00n),
REWARDS_BASE_INFO.dolomite(1_00n),
REWARDS_BASE_INFO.beraWave(1_00n),
],
},
],
Arbitrum: [
{
Expand Down

0 comments on commit 207aa02

Please sign in to comment.