Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added USDC_V5 pool #11114

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion projects/buffer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ 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,
};
Expand All @@ -16,20 +17,22 @@ const contracts = {
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: [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,
],
}),
},
Expand All @@ -53,5 +56,7 @@ module.exports = {
],
[Math.floor(new Date("2023-09-01") / 1e3), "Debuted Version 2.5"],
[Math.floor(new Date("2024-01-03") / 1e3), "Launched above/below options"],
[Math.floor(new Date("2024-05-30") / 1e3), "Debuted Version 2.6"],

],
};
Loading