Merge branch 'develop' into list-tokens

This commit is contained in:
RcleydsonR
2022-12-13 14:41:30 -03:00
18 changed files with 436 additions and 8172 deletions

View File

@@ -4,7 +4,7 @@ export const useEtherStore = defineStore("ether", {
state: () => ({
walletAddress: "",
balance: "",
loadingLock: false,
// Depósitos válidos para compra
depositsValidList: [] as any[],
// Depósitos adicionados na blockchain
@@ -25,6 +25,9 @@ export const useEtherStore = defineStore("ether", {
setBalance(balance: string) {
this.balance = balance;
},
setLoadingLock(isLoadingLock: boolean) {
this.loadingLock = isLoadingLock;
},
setDepositsValidList(depositsValidList: any[]) {
this.depositsValidList = depositsValidList;
},