Mock tokens implementation

This commit is contained in:
brunoedcf
2022-11-24 13:05:33 -03:00
parent beb4aca780
commit b8e5f5c408
6 changed files with 180 additions and 14 deletions

View File

@@ -4,6 +4,7 @@ export const useEtherStore = defineStore("ether", {
state: () => ({
walletAddress: "",
balance: "",
depositList: {},
}),
actions: {
setWalletAddress(walletAddress: string) {
@@ -12,5 +13,8 @@ export const useEtherStore = defineStore("ether", {
setBalance(balance: string) {
this.balance = balance;
},
setDepositList(depositList: {}) {
this.depositList = depositList;
},
},
});