Skip to content

Commit

Permalink
fix: conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
impelcrypto committed Jan 13, 2025
2 parents 0432e99 + 1b264eb commit 8011159
Show file tree
Hide file tree
Showing 30 changed files with 872 additions and 542 deletions.
629 changes: 629 additions & 0 deletions src/assets/img/astar_icon2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
268 changes: 0 additions & 268 deletions src/assets/img/lfgm.svg

This file was deleted.

13 changes: 3 additions & 10 deletions src/assets/img/logo-talisman.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/surge_token.webp
Binary file not shown.
43 changes: 13 additions & 30 deletions src/components/assets/EvmNativeToken.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,16 +137,6 @@
</q-tooltip>
</a>

<a v-if="isZkyoto" :href="faucetSethLink" target="_blank" rel="noopener noreferrer">
<button class="btn btn--icon">
<astar-icon-faucet />
</button>
<span class="text--mobile-menu">{{ $t('assets.faucet') }}</span>
<q-tooltip>
<span class="text--tooltip">{{ $t('assets.faucet') }}</span>
</q-tooltip>
</a>

<div v-else-if="isFaucet">
<button class="btn btn--icon" @click="handleModalFaucet({ isOpen: true })">
<astar-icon-faucet />
Expand All @@ -168,26 +158,27 @@ import { ethers } from 'ethers';
import { $web3 } from 'src/boot/api';
import { cbridgeAppLink } from 'src/c-bridge';
import ModalFaucet from 'src/components/assets/modals/ModalFaucet.vue';
import Balloon from 'src/components/common/Balloon.vue';
import { LOCAL_STORAGE } from 'src/config/localStorage';
import {
ccipMinatoBridgeEnabled,
layerZeroBridgeEnabled,
nativeBridgeEnabled,
ccipSoneiumBridgeEnabled,
} from 'src/features';
import { useAccount, useBreakpoints, useFaucet, useNetworkInfo } from 'src/hooks';
import { faucetSethLink } from 'src/links';
import { getTokenImage } from 'src/modules/token';
import {
buildCcipBridgePageLink,
buildEthereumBridgePageLink,
buildTransferPageLink,
buildLzBridgePageLink,
buildCcipBridgePageLink,
buildTransferPageLink,
} from 'src/router/routes';
import { useStore } from 'src/store';
import { computed, defineComponent, ref, watch, watchEffect } from 'vue';
import {
nativeBridgeEnabled,
layerZeroBridgeEnabled,
ccipMinatoBridgeEnabled,
ccipSoneiumBridgeEnabled,
} from 'src/features';
import CustomRouterLink from '../common/CustomRouterLink.vue';
import Balloon from 'src/components/common/Balloon.vue';
import { LOCAL_STORAGE } from 'src/config/localStorage';
export default defineComponent({
components: { ModalFaucet, CustomRouterLink, Balloon },
Expand All @@ -210,15 +201,8 @@ export default defineComponent({
const isBalloonClosing = ref<boolean>(false);
const isSoneiumButtonHover = ref<boolean>(false);
const {
currentNetworkName,
nativeTokenSymbol,
isZkEvm,
isZkyoto,
isAstar,
isShibuyaEvm,
isAstarEvm,
} = useNetworkInfo();
const { currentNetworkName, nativeTokenSymbol, isZkEvm, isAstar, isShibuyaEvm, isAstarEvm } =
useNetworkInfo();
const closeCcipBalloon = () => {
isCcipBalloon.value = false;
Expand Down Expand Up @@ -310,7 +294,6 @@ export default defineComponent({
isFaucet,
isModalFaucet,
isZkEvm,
isZkyoto,
faucetSethLink,
width,
screenSize,
Expand Down
2 changes: 1 addition & 1 deletion src/components/assets/transfer/InputSelectAccount.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
class="input--address text--title"
type="text"
spellcheck="false"
placeholder="Destination Address"
:placeholder="$t('assets.transferPage.toPlaceholder')"
@change="changeAddress"
/>
</div>
Expand Down
Loading

0 comments on commit 8011159

Please sign in to comment.