Skip to content

Commit 60ebe3d

Browse files
committed
deployed bootstrap
1 parent 25e0ca0 commit 60ebe3d

File tree

3 files changed

+23
-19
lines changed

3 files changed

+23
-19
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ ethereum:
1515
proxyAdmin: 0xc70F5bc82ccb3de00400814ff8bD406C271db3c4
1616
geyserRegistry: 0xFc43803F203e3821213bE687120aD44C8a21A7e7
1717
geysers:
18-
- poolRef: "CHARM-SPOT-USDC (Bootstrap V1)"
19-
deployment: 0x569f042C54B094A10E6fe1b52515eEC507D8da06
18+
- poolRef: "CHARM-SPOT-USDC (Bootstrap Troposphere)"
19+
deployment: 0xFF7D65c538b2968E72E7a4bf59d33Eb4081CE4e8
2020

2121
- poolRef: "CHARM-WAMPL-WETH (Crystal V2)"
2222
deployment: 0x59d177f718e902e59CF3Cbd19519194bcC437FeF

frontend/src/components/GeyserFirst/MyStats.tsx

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -80,20 +80,24 @@ export const MyStats = () => {
8080
}}
8181
/>
8282

83-
<GeyserStatsBox
84-
containerClassName="w-1/2"
85-
name="Multiplier"
86-
value={currentMultiplier}
87-
units="x"
88-
interpolate={(val) => safeNumeral(val, '0.0')}
89-
tooltipMessage={{
90-
title: 'Bonus Multiplier',
91-
body: GET_REWARD_MULTIPLIER_MSG({
92-
days: safeNumeral(Math.max(calcPeriodInDays || 30, 30), '0'),
93-
multiplier: safeNumeral(maxMultiplier || 3, '0.0'),
94-
}),
95-
}}
96-
/>
83+
{calcPeriodInDays > 1 ? (
84+
<GeyserStatsBox
85+
containerClassName="w-1/2"
86+
name="Multiplier"
87+
value={currentMultiplier}
88+
units="x"
89+
interpolate={(val) => safeNumeral(val, '0.0')}
90+
tooltipMessage={{
91+
title: 'Bonus Multiplier',
92+
body: GET_REWARD_MULTIPLIER_MSG({
93+
days: safeNumeral(Math.max(calcPeriodInDays || 30, 30), '0'),
94+
multiplier: safeNumeral(maxMultiplier || 3, '0.0'),
95+
}),
96+
}}
97+
/>
98+
) : (
99+
<></>
100+
)}
97101
</GeyserStatsBoxContainer>
98102

99103
<GeyserStatsBoxContainer>

frontend/src/config/app.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ export const platformsList: PlatformsList = {
8383
const geyserList: AppGeysersList = {
8484
[Network.Mainnet]: [
8585
// {
86-
// name: 'Bootstrap I (Charm USDC/SPOT)',
87-
// address: '0x569f042C54B094A10E6fe1b52515eEC507D8da06',
86+
// name: 'Bootstrap Troposphere (Charm USDC/SPOT)',
87+
// address: '0xFF7D65c538b2968E72E7a4bf59d33Eb4081CE4e8',
8888
// stakingToken: StakingToken.CHARM_V1,
8989
// rewardToken: RewardToken.AMPL,
9090
// isWrapped: false,
9191
// poolAddress: 'https://alpha.charm.fi/ethereum/vault/0x2dcaff0f75765d7867887fc402b71c841b3a4bfb',
92-
// slug: 'bootstrap-v1',
92+
// slug: 'bootstrap-troposphere',
9393
// lpRef: 'charmUsdcSpot',
9494
// platform: Platform.Charm,
9595
// exclusive: true,

0 commit comments

Comments
 (0)