Skip to content

Commit 1bb69fe

Browse files
committed
feat: add Berachain configuration to index.js DefiLlama#13426
1 parent 46881f1 commit 1bb69fe

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

projects/amped/index.js

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const {staking} = require('../helper/staking')
1+
const { staking } = require('../helper/staking')
22
const { gmxExports } = require('../helper/gmx')
33

44
const phoenixVaultAddress = '0xa6b88069EDC7a0C2F062226743C8985FF72bB2Eb';
@@ -13,18 +13,26 @@ const bscVaultAddress = '0xdcFaaf6f3bb71B270404992853588BE9B7fc89EA';
1313
const bscStakingAddress = '0x9fe50b66fc34cA06BbC684fF13242d61c860F190';
1414
const bscAmpAddress = '0x16DF3d8978d17fE725Dc307aD14FdE3B12E6Da75';
1515

16+
const berachainVaultAddress = '0xc3727b7E7F3FF97A111c92d3eE05529dA7BD2f48';
17+
const berachainStakingAddress = '0xE65668F745F546F061b4fC925A31Cb1F6512c32A';
18+
const berachainAmpAddress = '0xAc611438AE5F3953DeDB47c2ea8d6650D601C1B4';
19+
1620
module.exports = {
1721
start: '2024-06-06',
1822
lightlink_phoenix: {
19-
staking: staking(phoenixStakingAddress, phoenixAmpAddress),
20-
tvl: gmxExports({ vault: phoenixVaultAddress, })
23+
staking: staking(phoenixStakingAddress, phoenixAmpAddress),
24+
tvl: gmxExports({ vault: phoenixVaultAddress, })
2125
},
2226
bsc: {
23-
staking: staking(bscStakingAddress, bscAmpAddress),
24-
tvl: gmxExports({ vault: bscVaultAddress, })
27+
staking: staking(bscStakingAddress, bscAmpAddress),
28+
tvl: gmxExports({ vault: bscVaultAddress, })
2529
},
2630
sonic: {
27-
staking: staking(sonicStakingAddress, sonicAmpAddress),
28-
tvl: gmxExports({ vault: sonicVaultAddress, })
31+
staking: staking(sonicStakingAddress, sonicAmpAddress),
32+
tvl: gmxExports({ vault: sonicVaultAddress, })
33+
},
34+
berachain: {
35+
staking: staking(berachainStakingAddress, berachainAmpAddress),
36+
tvl: gmxExports({ vault: berachainVaultAddress, })
2937
}
3038
};

0 commit comments

Comments
 (0)