mirror of
https://github.com/alexgo-io/DefiLlama-Adapters.git
synced 2026-01-12 16:53:02 +08:00
63 lines
1.9 KiB
JavaScript
63 lines
1.9 KiB
JavaScript
const ADDRESSES = require("../helper/coreAssets.json");
|
|
const { staking } = require("../helper/staking");
|
|
const { sumTokensExport } = require("../helper/unwrapLPs");
|
|
|
|
const tokens = {
|
|
BFR: "0x1A5B0aaF478bf1FDA7b934c76E7692D722982a6D",
|
|
USDC_ARB: ADDRESSES.arbitrum.USDC,
|
|
USDC_CIRCLE: ADDRESSES.arbitrum.USDC_CIRCLE,
|
|
USDC_POLY: ADDRESSES.polygon.USDC,
|
|
ARB: ADDRESSES.arbitrum.ARB,
|
|
};
|
|
|
|
const contracts = {
|
|
USDC_POOL_V1: "0x37Cdbe3063002383B2018240bdAFE05127d36c3C",
|
|
USDC_POOL_V2: "0x4d338bc1a2380752736718f49bd45d9a040fdff8",
|
|
USDC_POOL_V3: "0x6Ec7B10bF7331794adAaf235cb47a2A292cD9c7e",
|
|
USDC_POOL_V4: "0xfD9f8841C471Fcc55f5c09B8ad868BdC9eDeBDE1",
|
|
POLY_POOL_V1: "0x6FD5B386d8bed29b3b62C0856250cdD849b3564d",
|
|
ARB_POOL_V1: "0xaE0628C88EC6C418B3F5C005f804E905f8123833",
|
|
USDC_POOL_V5: "0x9501a00d7d4BC7558196B2e4d61c0ec5D16dEfb2",
|
|
BFR_STAKING: "0x173817F33f1C09bCb0df436c2f327B9504d6e067",
|
|
};
|
|
|
|
module.exports = {
|
|
arbitrum: {
|
|
staking: staking(contracts.BFR_STAKING, tokens.BFR),
|
|
tvl: sumTokensExport({
|
|
tokens: [tokens.USDC_ARB, tokens.ARB, tokens.USDC_CIRCLE],
|
|
owners: [
|
|
contracts.USDC_POOL_V1,
|
|
contracts.USDC_POOL_V2,
|
|
contracts.USDC_POOL_V3,
|
|
contracts.ARB_POOL_V1,
|
|
contracts.USDC_POOL_V4,
|
|
contracts.USDC_POOL_V5,
|
|
],
|
|
}),
|
|
},
|
|
polygon: {
|
|
tvl: sumTokensExport({
|
|
tokens: [tokens.USDC_POLY],
|
|
owners: [contracts.POLY_POOL_V1],
|
|
}),
|
|
},
|
|
hallmarks: [
|
|
["2022-10-26", "Shifted to USDC POL pool"],
|
|
[
|
|
"2023-01-30",
|
|
"Opened USDC BLP pool to the public",
|
|
],
|
|
["2023-02-22", "Added a USDC Pool on polygon"],
|
|
["2023-03-22", "Added ARB Pool"],
|
|
[
|
|
"2023-04-14",
|
|
"Added USDC Protocol owned liquidity Pool",
|
|
],
|
|
["2023-09-01", "Debuted Version 2.5"],
|
|
["2024-01-03", "Launched above/below options"],
|
|
["2024-05-30", "Debuted Version 2.6"],
|
|
|
|
],
|
|
};
|