mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-30 22:02:28 +08:00
feat: add Berachain configuration to index.js #13426
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
const {staking} = require('../helper/staking')
|
||||
const { staking } = require('../helper/staking')
|
||||
const { gmxExports } = require('../helper/gmx')
|
||||
|
||||
const phoenixVaultAddress = '0xa6b88069EDC7a0C2F062226743C8985FF72bB2Eb';
|
||||
@@ -13,18 +13,26 @@ const bscVaultAddress = '0xdcFaaf6f3bb71B270404992853588BE9B7fc89EA';
|
||||
const bscStakingAddress = '0x9fe50b66fc34cA06BbC684fF13242d61c860F190';
|
||||
const bscAmpAddress = '0x16DF3d8978d17fE725Dc307aD14FdE3B12E6Da75';
|
||||
|
||||
const berachainVaultAddress = '0xc3727b7E7F3FF97A111c92d3eE05529dA7BD2f48';
|
||||
const berachainStakingAddress = '0xE65668F745F546F061b4fC925A31Cb1F6512c32A';
|
||||
const berachainAmpAddress = '0xAc611438AE5F3953DeDB47c2ea8d6650D601C1B4';
|
||||
|
||||
module.exports = {
|
||||
start: '2024-06-06',
|
||||
lightlink_phoenix: {
|
||||
staking: staking(phoenixStakingAddress, phoenixAmpAddress),
|
||||
tvl: gmxExports({ vault: phoenixVaultAddress, })
|
||||
staking: staking(phoenixStakingAddress, phoenixAmpAddress),
|
||||
tvl: gmxExports({ vault: phoenixVaultAddress, })
|
||||
},
|
||||
bsc: {
|
||||
staking: staking(bscStakingAddress, bscAmpAddress),
|
||||
tvl: gmxExports({ vault: bscVaultAddress, })
|
||||
staking: staking(bscStakingAddress, bscAmpAddress),
|
||||
tvl: gmxExports({ vault: bscVaultAddress, })
|
||||
},
|
||||
sonic: {
|
||||
staking: staking(sonicStakingAddress, sonicAmpAddress),
|
||||
tvl: gmxExports({ vault: sonicVaultAddress, })
|
||||
staking: staking(sonicStakingAddress, sonicAmpAddress),
|
||||
tvl: gmxExports({ vault: sonicVaultAddress, })
|
||||
},
|
||||
berachain: {
|
||||
staking: staking(berachainStakingAddress, berachainAmpAddress),
|
||||
tvl: gmxExports({ vault: berachainVaultAddress, })
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user