mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-04-29 21:36:44 +08:00
add above/below hallmark
* add above/below hallmark
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
const ADDRESSES = require('../helper/coreAssets.json')
|
||||
const ADDRESSES = require("../helper/coreAssets.json");
|
||||
const { staking } = require("../helper/staking");
|
||||
const { sumTokensExport } = require("../helper/unwrapLPs");
|
||||
|
||||
@@ -6,7 +6,7 @@ const tokens = {
|
||||
BFR: "0x1A5B0aaF478bf1FDA7b934c76E7692D722982a6D",
|
||||
USDC_ARB: ADDRESSES.arbitrum.USDC,
|
||||
USDC_POLY: ADDRESSES.polygon.USDC,
|
||||
ARB: ADDRESSES.arbitrum.ARB
|
||||
ARB: ADDRESSES.arbitrum.ARB,
|
||||
};
|
||||
|
||||
const contracts = {
|
||||
@@ -16,7 +16,7 @@ const contracts = {
|
||||
USDC_POOL_V4: "0xfD9f8841C471Fcc55f5c09B8ad868BdC9eDeBDE1",
|
||||
POLY_POOL_V1: "0x6FD5B386d8bed29b3b62C0856250cdD849b3564d",
|
||||
ARB_POOL_V1: "0xaE0628C88EC6C418B3F5C005f804E905f8123833",
|
||||
BFR_STAKING: "0x173817F33f1C09bCb0df436c2f327B9504d6e067"
|
||||
BFR_STAKING: "0x173817F33f1C09bCb0df436c2f327B9504d6e067",
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
@@ -29,25 +29,29 @@ module.exports = {
|
||||
contracts.USDC_POOL_V2,
|
||||
contracts.USDC_POOL_V3,
|
||||
contracts.ARB_POOL_V1,
|
||||
contracts.USDC_POOL_V4
|
||||
]
|
||||
})
|
||||
contracts.USDC_POOL_V4,
|
||||
],
|
||||
}),
|
||||
},
|
||||
polygon: {
|
||||
tvl: sumTokensExport({
|
||||
tokens: [tokens.USDC_POLY],
|
||||
owners: [contracts.POLY_POOL_V1]
|
||||
})
|
||||
owners: [contracts.POLY_POOL_V1],
|
||||
}),
|
||||
},
|
||||
hallmarks: [
|
||||
[Math.floor(new Date("2022-10-26") / 1e3), "Shifted to USDC POL pool"],
|
||||
[
|
||||
Math.floor(new Date("2023-01-30") / 1e3),
|
||||
"Opened USDC BLP pool to the public"
|
||||
"Opened USDC BLP pool to the public",
|
||||
],
|
||||
[Math.floor(new Date("2023-02-22") / 1e3), "Added a USDC Pool on polygon"],
|
||||
[Math.floor(new Date("2023-03-22") / 1e3), "Added ARB Pool"],
|
||||
[Math.floor(new Date("2023-04-14") / 1e3), "Added USDC Protocol owned liquidity Pool"],
|
||||
[
|
||||
Math.floor(new Date("2023-04-14") / 1e3),
|
||||
"Added USDC Protocol owned liquidity Pool",
|
||||
],
|
||||
[Math.floor(new Date("2023-09-01") / 1e3), "Debuted Version 2.5"],
|
||||
]
|
||||
[Math.floor(new Date("2024-01-03") / 1e3), "Launched above/below options"],
|
||||
],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user