- {{ item.voter }} |
+ {{ showValidatorName(item.voter) }} |
- {{ item.option }}
+ {{ String(item.option).replace("VOTE_OPTION_", "") }}
|
diff --git a/src/modules/[chain]/index.vue b/src/modules/[chain]/index.vue
index 81971af4..ff35ed95 100644
--- a/src/modules/[chain]/index.vue
+++ b/src/modules/[chain]/index.vue
@@ -267,9 +267,7 @@ const color = computed(() => {
{{ format.formatToken(walletStore.balanceOfStakingToken) }}
-
- ${{ format.tokenValue(walletStore.balanceOfStakingToken) }}
-
+ ${{ format.tokenValue(walletStore.balanceOfStakingToken) }}
diff --git a/src/stores/useDashboard.ts b/src/stores/useDashboard.ts
index 78fa9a17..269acc5e 100644
--- a/src/stores/useDashboard.ts
+++ b/src/stores/useDashboard.ts
@@ -265,7 +265,7 @@ export const useDashboard = defineStore('dashboard', {
favorite: fav as string[],
favoriteMap: favMap as Record,
chains: {} as Record,
- prices: {},
+ prices: {} as Record,
coingecko: {} as Record,
};
},
diff --git a/src/stores/useFormatter.ts b/src/stores/useFormatter.ts
index 0e9de4a0..13b3583c 100644
--- a/src/stores/useFormatter.ts
+++ b/src/stores/useFormatter.ts
@@ -69,7 +69,7 @@ export const useFormatter = defineStore('formatter', {
return trace;
},
priceInfo(denom: string) {
- const id = this.dashboard.coingecko[denom]?.coinId;
+ const id = this.dashboard.coingecko[denom]?.coinId || "";
const prices = this.dashboard.prices[id];
return prices;
},
@@ -96,7 +96,10 @@ export const useFormatter = defineStore('formatter', {
return v!==0 ? numeral(v).format("+0,0.[00]"): ""
},
tokenValue(token?: Coin) {
- return token ? numeral(this.formatTokenAmount(token)).format('0,0.[00]') : ""
+ if(token) {
+ return numeral(this.tokenValueNumber(token)).format("0,0.[00]")
+ }
+ return ""
},
tokenValueNumber(token?: Coin) {
if(!token) return 0
@@ -129,7 +132,7 @@ export const useFormatter = defineStore('formatter', {
formatToken(
token?: { denom: string; amount: string },
withDenom = true,
- fmt = '0.0a',
+ fmt = '0,0.[0]',
mode = 'local'
): string {
if (token && token.amount && token?.denom) {
diff --git a/src/stores/useWalletStore.ts b/src/stores/useWalletStore.ts
index 9643e564..eebea3a1 100644
--- a/src/stores/useWalletStore.ts
+++ b/src/stores/useWalletStore.ts
@@ -42,8 +42,9 @@ export const useWalletStore = defineStore('walletStore', {
);
},
stakingAmount() {
+ const stakingStore = useStakingStore();
let amt = 0;
- let denom = '';
+ let denom = stakingStore.params.bond_denom;
this.delegations.forEach((i) => {
amt += Number(i.balance.amount);
denom = i.balance.denom;