diff --git a/projects/buffer/index.js b/projects/buffer/index.js index 0384e3b2d19a..f5195dea68bb 100644 --- a/projects/buffer/index.js +++ b/projects/buffer/index.js @@ -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, }; @@ -16,6 +17,7 @@ const contracts = { USDC_POOL_V4: "0xfD9f8841C471Fcc55f5c09B8ad868BdC9eDeBDE1", POLY_POOL_V1: "0x6FD5B386d8bed29b3b62C0856250cdD849b3564d", ARB_POOL_V1: "0xaE0628C88EC6C418B3F5C005f804E905f8123833", + USDC_POOL_V5: "0x9501a00d7d4BC7558196B2e4d61c0ec5D16dEfb2", BFR_STAKING: "0x173817F33f1C09bCb0df436c2f327B9504d6e067", }; @@ -23,13 +25,14 @@ 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, ], }), }, @@ -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"], + ], };