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

chore: update pool ids & add composable stable pool #41

Merged
merged 2 commits into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ const hasNFT = computed(

const isAbleToUpgradeNFT = computed(() => NFTData?.value?.isAbleToUpgrade[0]);


const isImageLoaded = ref<boolean>(false);
const isOpenUpgradeNFTModal = ref(false);
const isOpenMintNFTModal = ref(false);
Expand Down
19 changes: 9 additions & 10 deletions src/lib/config/celo/pools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@ const pools: Pools = {
DynamicFees: {
Gauntlet: [],
},
BlockList: [''],
IncludedPoolTypes: ['Weighted'],
BlockList: [
'0xac95f160947a68d222f70760f0c6d40a7aa639cd000200000000000000000002',
'0x518282155ff9d72dfb2c6d205a402ebd86625999000200000000000000000003',
'0xeb1aa80b91f8b7146e15cc6ab1939f579cac32bc000200000000000000000001',
'0x0bb36015d267708ffda79c9d71c8820238358017000200000000000000000004',
],
IncludedPoolTypes: ['Weighted', 'Stable', 'ComposableStable'],
Stable: {
AllowList: [],
},
Expand All @@ -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: [],
Expand Down
Loading