diff --git a/pages/transfers.vue b/pages/transfers.vue index 793bbb8ce..9d4e4ea95 100644 --- a/pages/transfers.vue +++ b/pages/transfers.vue @@ -48,7 +48,7 @@
- Completed transfers + Completed transactions
diff --git a/store/zksync/wallet.ts b/store/zksync/wallet.ts index 64b59409c..352c7beb4 100644 --- a/store/zksync/wallet.ts +++ b/store/zksync/wallet.ts @@ -104,6 +104,7 @@ export const useZkSyncWalletStore = defineStore("zkSyncWallet", () => { symbol: token!.symbol!, decimals: token!.decimals, amount: balance, + networkKey: token!.networkKey || undefined, }; }); //add merge tokens @@ -117,6 +118,7 @@ export const useZkSyncWalletStore = defineStore("zkSyncWallet", () => { symbol: token!.symbol!, decimals: token!.decimals, amount: "0", + networkKey: token!.networkKey || undefined, }); } } diff --git a/views/transactions/Withdraw.vue b/views/transactions/Withdraw.vue index 6b6f78b1a..5a7a178cc 100644 --- a/views/transactions/Withdraw.vue +++ b/views/transactions/Withdraw.vue @@ -634,6 +634,7 @@ const availableTokens = computed(() => { } return Object.values(tokens.value); }); + const availableBalances = computed(() => { if (props.type === "withdrawal") { if (!tokens.value) return [];