Skip to content

Commit 495d43a

Browse files
committed
deployed bootstrap
1 parent 25e0ca0 commit 495d43a

File tree

3 files changed

+33
-29
lines changed

3 files changed

+33
-29
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: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -82,19 +82,19 @@ export const platformsList: PlatformsList = {
8282

8383
const geyserList: AppGeysersList = {
8484
[Network.Mainnet]: [
85-
// {
86-
// name: 'Bootstrap I (Charm USDC/SPOT)',
87-
// address: '0x569f042C54B094A10E6fe1b52515eEC507D8da06',
88-
// stakingToken: StakingToken.CHARM_V1,
89-
// rewardToken: RewardToken.AMPL,
90-
// isWrapped: false,
91-
// poolAddress: 'https://alpha.charm.fi/ethereum/vault/0x2dcaff0f75765d7867887fc402b71c841b3a4bfb',
92-
// slug: 'bootstrap-v1',
93-
// lpRef: 'charmUsdcSpot',
94-
// platform: Platform.Charm,
95-
// exclusive: true,
96-
// // staked pool address: 0x898adc9aa0c23dce3fed6456c34dbe2b57784325
97-
// },
85+
{
86+
name: 'Bootstrap Troposphere (Charm USDC/SPOT)',
87+
address: '0xFF7D65c538b2968E72E7a4bf59d33Eb4081CE4e8',
88+
stakingToken: StakingToken.CHARM_V1,
89+
rewardToken: RewardToken.AMPL,
90+
isWrapped: false,
91+
poolAddress: 'https://alpha.charm.fi/ethereum/vault/0x2dcaff0f75765d7867887fc402b71c841b3a4bfb',
92+
slug: 'bootstrap-troposphere',
93+
lpRef: 'charmUsdcSpot',
94+
platform: Platform.Charm,
95+
exclusive: true,
96+
// staked pool address: 0x898adc9aa0c23dce3fed6456c34dbe2b57784325
97+
},
9898

9999
{
100100
name: 'Riverside I (stAMPL)',

0 commit comments

Comments
 (0)