From ca9f4dcb1e22fe2c2cb01eb517a02396bd0519cf Mon Sep 17 00:00:00 2001 From: Fabian Scherer <48454910+fabianschu@users.noreply.github.com> Date: Tue, 9 Apr 2024 15:31:48 +0200 Subject: [PATCH 1/2] chore: update pool ids & add composable stable pool --- src/lib/config/celo/pools.ts | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/lib/config/celo/pools.ts b/src/lib/config/celo/pools.ts index 520f78a6c..a6b3cb4c8 100644 --- a/src/lib/config/celo/pools.ts +++ b/src/lib/config/celo/pools.ts @@ -15,8 +15,13 @@ const pools: Pools = { DynamicFees: { Gauntlet: [], }, - BlockList: [''], - IncludedPoolTypes: ['Weighted'], + BlockList: [ + '0xac95f160947a68d222f70760f0c6d40a7aa639cd000200000000000000000002', + '0x518282155ff9d72dfb2c6d205a402ebd86625999000200000000000000000003', + '0xeb1aa80b91f8b7146e15cc6ab1939f579cac32bc000200000000000000000001', + '0x0bb36015d267708ffda79c9d71c8820238358017000200000000000000000004', + ], + IncludedPoolTypes: ['Weighted', 'Stable', 'ComposableStable'], Stable: { AllowList: [], }, @@ -27,18 +32,12 @@ const pools: Pools = { // Only effective after given timestamp here: usePool.ts#createdAfterTimestamp // see useDisabledJoinPool.ts#nonAllowedWeightedPoolAfterTimestamp for logic. AllowList: [ - '0xac95f160947a68d222f70760f0c6d40a7aa639cd000200000000000000000002', - '0x518282155ff9d72dfb2c6d205a402ebd86625999000200000000000000000003', - '0xeb1aa80b91f8b7146e15cc6ab1939f579cac32bc000200000000000000000001', - '0x0bb36015d267708ffda79c9d71c8820238358017000200000000000000000004', + '0xd218f56d30a3699c9de4c82cd37e23a6dfefe479000200000000000000000005', ], }, Factories: { '0xeb1055c017a1427726f01368c8247649c5a79bf9': 'weightedPool', // Weighted v4 - // '0x8ea89804145c007e7d226001a96955ad53836087': 'composableStablePool', // ComposableStable V4 - // '0x956ccab09898c0af2aca5e6c229c3ad4e93d9288': 'composableStablePool', - // '0x6b1da720be2d11d95177ccfc40a917c2688f396c': 'erc4626Linear', // ERC4626 LinearPool - // '0x5d56ea1b2595d2dbe4f5014b967c78ce75324f0c': 'gyroE', + '0xA66501F277e27fEB17f653174954590e319404c4': 'composableStablePool', // ComposableStable V4 }, Stakable: { VotingGaugePools: [], From 91707f28d01a413be71eccbf325f94f9df58003e Mon Sep 17 00:00:00 2001 From: Fabian Scherer <48454910+fabianschu@users.noreply.github.com> Date: Wed, 10 Apr 2024 15:35:04 +0200 Subject: [PATCH 2/2] fix: remove line (linter) --- .../contextual/pages/dashboard/Cards/RefiProfileCard.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/contextual/pages/dashboard/Cards/RefiProfileCard.vue b/src/components/contextual/pages/dashboard/Cards/RefiProfileCard.vue index d68f0a70b..b441ac583 100644 --- a/src/components/contextual/pages/dashboard/Cards/RefiProfileCard.vue +++ b/src/components/contextual/pages/dashboard/Cards/RefiProfileCard.vue @@ -31,7 +31,6 @@ const hasNFT = computed( const isAbleToUpgradeNFT = computed(() => NFTData?.value?.isAbleToUpgrade[0]); - const isImageLoaded = ref(false); const isOpenUpgradeNFTModal = ref(false); const isOpenMintNFTModal = ref(false);