Migrated project to Viem, removing Ethers completelly. Not finished tests.

This commit is contained in:
Filipe Soccol
2025-03-31 10:26:57 -03:00
parent 3227e3209c
commit e93cac6086
19 changed files with 672 additions and 469 deletions

View File

@@ -3,7 +3,7 @@ import SearchComponent from "@/components/SearchComponent.vue";
import LoadingComponent from "@/components/LoadingComponent/LoadingComponent.vue";
import BuyConfirmedComponent from "@/components/BuyConfirmedComponent/BuyConfirmedComponent.vue";
import { ref, onMounted, watch } from "vue";
import { useEtherStore } from "@/store/ether";
import { useViemStore } from "@/store/viem";
import QrCodeComponent from "@/components/QrCodeComponent.vue";
import { storeToRefs } from "pinia";
import { addLock, releaseLock } from "@/blockchain/buyerMethods";
@@ -20,11 +20,11 @@ enum Step {
List,
}
const etherStore = useEtherStore();
etherStore.setSellerView(false);
const viemStore = useViemStore();
viemStore.setSellerView(false);
// States
const { loadingLock, walletAddress, networkName } = storeToRefs(etherStore);
const { loadingLock, walletAddress, networkName } = storeToRefs(viemStore);
const flowStep = ref<Step>(Step.Search);
const pixTarget = ref<string>();
const tokenAmount = ref<number>();
@@ -45,7 +45,7 @@ const confirmBuyClick = async (
// Makes lock with deposit ID and the Amount
if (selectedDeposit) {
flowStep.value = Step.Buy;
etherStore.setLoadingLock(true);
viemStore.setLoadingLock(true);
await addLock(selectedDeposit.seller, selectedDeposit.token, tokenValue)
.then((_lockID) => {
@@ -56,7 +56,7 @@ const confirmBuyClick = async (
flowStep.value = Step.Search;
});
etherStore.setLoadingLock(false);
viemStore.setLoadingLock(false);
}
};