Skip to content

Commit

Permalink
hotfix: Remove create pool popup (dm) (#4170)
Browse files Browse the repository at this point in the history
* Add missing avax logo (#4155)

* 1.122.1

* chore: Add ECLP-wstETH-rETH pool to ethereum allowlist (#4159)

Co-authored-by: balopco <balopco@users.noreply.github.com>

* 1.122.2

* chore: Add 50WETH-50cbXEN pool to base allowlist (#4151)

Co-authored-by: balopco <balopco@users.noreply.github.com>
Co-authored-by: ZeKraken <79888567+zekraken-bot@users.noreply.github.com>

* 1.122.3

* chore: Add B-50wstETH-50NEXT pool to gnosis-chain allowlist (#4163)

Co-authored-by: balopco <balopco@users.noreply.github.com>

* 1.122.4

* chore: Remove intro modal from create pool

---------

Co-authored-by: Tim Robinson <timjrobinson@users.noreply.github.com>
Co-authored-by: Automated Version Bump <gh-action-bump-version@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: balopco <balopco@users.noreply.github.com>
Co-authored-by: ZeKraken <79888567+zekraken-bot@users.noreply.github.com>
  • Loading branch information
6 people authored Sep 6, 2023
1 parent 4a12663 commit 5489b49
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@balancer/frontend-v2",
"version": "1.122.0",
"version": "1.122.4",
"engines": {
"node": "=16",
"npm": ">=8"
Expand Down
1 change: 1 addition & 0 deletions src/lib/config/base/pools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ const pools: Pools = {
'0xce1edbf534b0d787cea315ecdc27bf857b73579300020000000000000000003c', // 50BPT-stabal3-50axlUSDC
'0x775e01bde8c3f3de0f8ed1fd1331c32580417f5700020000000000000000003f', // 50DAI-50axlUSDC
'0x35f823b87ea3c1918992f958b7764b4d37c7329400020000000000000000003e', // 50WETH-50USDbC
'0x07d72005b9e2b0e4d9f2ee903de59a43439e15e6000200000000000000000044', // 50WETH-50cbXEN
'0xb1b1155337d19eb0ef9c75aa88aeb4e531440508000200000000000000000042', // 50WETH-50Gekko
'0x45754a260273183dd91f795b7feaa43c37eb148d000100000000000000000045', // 33WETH-33DAI-33BAL
],
Expand Down
1 change: 1 addition & 0 deletions src/lib/config/gnosis-chain/pools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ const pools: Pools = {
'0xb8bb1ce9c6e5401d66fe2126db6e7387e1e24ffe00020000000000000000003d', // WETH/GNO
'0x274dedb9356c3e1e24bfe2bf3d4349fbdbfa0d14000200000000000000000054', // staBAL/GNO
'0x66888e4f35063ad8bb11506a6fde5024fb4f1db0000100000000000000000053', // WETH/staBAL/WBTC
'0x7caef9e452ce161dec936ace7eab571d1023b20900020000000000000000005d', // B-50wstETH-50NEXT
],
},
Factories: {
Expand Down
1 change: 1 addition & 0 deletions src/lib/config/mainnet/pools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ const pools: Pools = {
'0xf01b0684c98cd7ada480bfdf6e43876422fa1fc10002000000000000000005de', // ECLP-wstETH-wETH
'0x6228f64d5ba8376652bfe7e36569d595347cf6fb0002000000000000000005df', // 80T-20TBTC
'0xf7a826d47c8e02835d94fb0aa40f0cc9505cb1340002000000000000000005e0', // ECLP-wstETH-cbETH
'0x5eeeef8ccf2aa28f6d2314a0566658b7cc8fe1360002000000000000000005e8', // ECLP-wstETH-rETH
],
},
Factories: {
Expand Down
9 changes: 4 additions & 5 deletions src/pages/pool/create.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,13 @@ import { useTokens } from '@/providers/tokens.provider';
import { lsGet, selectByAddress } from '@/lib/utils';
import useWeb3 from '@/services/web3/useWeb3';
import { StepState } from '@/types';
import IntroModal from '@/components/contextual/pages/pool/create/IntroModal.vue';
/**
* STATE
*/
const isUnknownTokenModalVisible = ref(false);
const isLoading = ref(true);
const showIntroModal = ref(true);
// const showIntroModal = ref(true);
/**
* COMPOSABLES
Expand Down Expand Up @@ -82,7 +81,7 @@ onBeforeMount(async () => {
if (previouslySavedState.createPoolTxHash) {
await retrievePoolAddress(previouslySavedState.createPoolTxHash);
}
showIntroModal.value = false;
// showIntroModal.value = false;
} else if (previouslySavedState === null) {
resetPoolCreationState();
}
Expand Down Expand Up @@ -289,10 +288,10 @@ watch(
:unknownTokens="unknownTokens"
@close="handleUnknownModalClose"
/>
<IntroModal
<!-- <IntroModal
v-if="showIntroModal && !hasRestoredFromSavedState"
@close="showIntroModal = false"
/>
/> -->
</div>
</template>

Expand Down

1 comment on commit 5489b49

@vercel
Copy link

@vercel vercel bot commented on 5489b49 Sep 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.