- Confirme em sua carteira
+ {{
+ props.title ? props.title : "Confirme em sua carteira"
+ }}
- A transação está sendo enviada para a rede
+ {{ $props.message }}
diff --git a/src/components/SearchComponent.vue b/src/components/SearchComponent.vue
index 1cd16b7..bf18eb5 100644
--- a/src/components/SearchComponent.vue
+++ b/src/components/SearchComponent.vue
@@ -52,6 +52,7 @@ const decimalCount = (num: Number) => {
}
return 0;
};
+
// Verify if there is a valid deposit to buy
const verifyLiquidity = () => {
enableSelectButton.value = false;
diff --git a/src/store/ether.ts b/src/store/ether.ts
index b757507..37a73d7 100644
--- a/src/store/ether.ts
+++ b/src/store/ether.ts
@@ -16,7 +16,7 @@ export const useEtherStore = defineStore("ether", {
// Locks 'released' na blockchain
locksReleasedList: [] as any[],
// Locks expirados na blockchain
- locksExpiredList: [] as any[]
+ locksExpiredList: [] as any[],
}),
actions: {
setWalletAddress(walletAddress: string) {
@@ -47,4 +47,4 @@ export const useEtherStore = defineStore("ether", {
this.locksExpiredList = locksExpiredList;
},
},
-});
\ No newline at end of file
+});
diff --git a/src/utils/blockchain.ts b/src/utils/blockchain.ts
index 8fda2d2..7e86049 100644
--- a/src/utils/blockchain.ts
+++ b/src/utils/blockchain.ts
@@ -32,7 +32,11 @@ const splitTokens = async () => {
if (!provider) return;
const signer = provider.getSigner();
- const tokenContract = new ethers.Contract(addresses.token, mockToken.abi, signer);
+ const tokenContract = new ethers.Contract(
+ addresses.token,
+ mockToken.abi,
+ signer
+ );
for (let i = 0; i < wallets.length; i++) {
const tx = await tokenContract.transfer(
@@ -45,7 +49,9 @@ const splitTokens = async () => {
};
// get wallet transactions
-const listTransactionByWalletAddress = async (walletAddress: string): Promise