Skip to content

Commit

Permalink
Added USDC_V5 pool
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwell-1999 committed Jul 26, 2024
1 parent 1966a76 commit 1333c1e
Showing 1 changed file with 6 additions and 1 deletion.
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"],

],
};

0 comments on commit 1333c1e

Please sign in to comment.