Skip to content

Commit e89bccb

Browse files
tribesxappGabriel Sanches
andauthored
Updating contracts for TVL to include Hyperliquid EVM (DefiLlama#15194)
Co-authored-by: Gabriel Sanches <[email protected]>
1 parent 424af06 commit e89bccb

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

projects/perfect-pool/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,25 @@
11
const { sumTokensExport } = require("../helper/unwrapLPs")
22
const ADDRESSES = require('../helper/coreAssets.json')
33

4+
//base
45
const NFT_ACE8 = '0x21F3ea812734b6492D88D268622CF068e9E6D596'
56
const NFT_ACE16 = '0x70A254c8201adbD88d88D17937d5e8aBb8B8095F'
67
const NFT_CLUB_WORLD_CUP = '0x6b08888efd22d694504Bb293Cb135fD2Ea5f1fE4'
78
const PERFECT_POOL = '0x0a35174FB79C59F635204D4ae443D94B278742A8'
89

10+
//hyperliquid EVM
11+
const NFT_CLUB_WORLD_CUP_HYPERLIQUID = '0x9c0B8c13dBC4c8b72Bd2574f23592E0b3118Ab7c'
12+
913
module.exports = {
1014
start: '2024-09-02',
1115
base: {
1216
tvl: sumTokensExport(
1317
{ owners: [NFT_ACE8, NFT_ACE16, NFT_CLUB_WORLD_CUP, PERFECT_POOL], token: ADDRESSES.base.USDC },
1418
),
19+
},
20+
hyperliquid: {
21+
tvl: sumTokensExport(
22+
{ owners: [NFT_CLUB_WORLD_CUP_HYPERLIQUID], token: "0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb" },
23+
),
1524
}
1625
}

0 commit comments

Comments
 (0)