From dc077760a7527cd7bda264f2463cbf1f99b5df8c Mon Sep 17 00:00:00 2001 From: Jack Hamer Date: Wed, 27 Mar 2024 17:25:14 +0200 Subject: [PATCH] fix: add withdrawal finalization notice --- composables/zksync/useTransaction.ts | 1 + views/transactions/Transfer.vue | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/composables/zksync/useTransaction.ts b/composables/zksync/useTransaction.ts index eb3be908c..1d107137b 100644 --- a/composables/zksync/useTransaction.ts +++ b/composables/zksync/useTransaction.ts @@ -3,6 +3,7 @@ import { BigNumber, type BigNumberish } from "ethers"; import { parseEther } from "ethers/lib/utils"; import type { TokenAmount } from "@/types"; +import type { Provider, Signer } from "zksync-ethers"; type TransactionParams = { type: "transfer" | "withdrawal"; diff --git a/views/transactions/Transfer.vue b/views/transactions/Transfer.vue index 18efde923..8f365910f 100644 --- a/views/transactions/Transfer.vue +++ b/views/transactions/Transfer.vue @@ -45,6 +45,18 @@