diff --git a/src/@core/layouts/layout-vertical/components/vertical-nav-menu/components/vertical-nav-menu-group/VerticalNavMenuGroup.vue b/src/@core/layouts/layout-vertical/components/vertical-nav-menu/components/vertical-nav-menu-group/VerticalNavMenuGroup.vue
index 06c951d7..256713b1 100644
--- a/src/@core/layouts/layout-vertical/components/vertical-nav-menu/components/vertical-nav-menu-group/VerticalNavMenuGroup.vue
+++ b/src/@core/layouts/layout-vertical/components/vertical-nav-menu/components/vertical-nav-menu-group/VerticalNavMenuGroup.vue
@@ -12,7 +12,14 @@
class="d-flex align-items-center"
@click="() => updateGroupOpen(!isOpen)"
>
-
+
+
diff --git a/src/views/ProposalView.vue b/src/views/ProposalView.vue
new file mode 100644
index 00000000..2b2bf3a2
--- /dev/null
+++ b/src/views/ProposalView.vue
@@ -0,0 +1,357 @@
+
+
+
+
+
+
+ Deposit
+
+
+ Voting
+
+
+ Passed
+
+
+ Rejected
+
+ #{{ proposal.id }} {{ proposal.title }}
+
+
+
+
+
+
+ {{ $t('proposal_id') }}
+ {{ proposal.id }}
+
+
+
+ {{ $t('proposal_proposer') }}
+ {{ proposer.proposer }}
+
+
+
+ {{ $t('proposal_total_deposit') }}
+ {{ proposal.total_deposit }}
+
+
+
+ {{ $t('proposal_submit_time') }}
+ {{ proposal.submit_time }}
+
+
+
+ {{ $t('proposal_voting_start_time') }}
+ {{ proposal.voting_start_time }}
+
+
+
+ {{ $t('proposal_voting_end_time') }}
+ {{ proposal.voting_end_time }}
+
+
+
+ {{ $t('proposal_type') }}
+ {{ proposal.type }}
+
+
+
+ {{ name.replaceAll('_',' ') }}
+
+
+ {{ value }}
+
+
+
+ {{ token.amount }} {{ token.denom }}
+
+
+
+
+
+
+
+ {{ token.amount }} {{ token.denom }}
+
+
+
+
+
+
+
+
+
+
+ {{ $t('btn_back_list') }}
+
+
+
+ {{ $t('btn_vote') }}
+
+
+
+
+
+
+
+ Votes
+
+
+
+
+
+
+
+
+
+
+ {{ proposal.tally.yes }}% voted Yes
+
+
+ {{ proposal.tally.no }}% voted No
+
+
+ {{ proposal.tally.veto }}% voted No With Veta
+
+
+ {{ proposal.tally.abstain }}% voted Abstain
+
+
+
+
+
+
+
+ Deposits ({{ proposal.total_deposit }})
+
+
+
+
+
+
+
+
+ {{ $t('btn_back_list') }}
+
+
+
+ {{ $t('btn_vote') }}
+
+
+
+
+
+
+
+
+
diff --git a/src/views/Staking.vue b/src/views/Staking.vue
index cf970315..9fd929ca 100644
--- a/src/views/Staking.vue
+++ b/src/views/Staking.vue
@@ -6,7 +6,8 @@
>
@@ -16,41 +17,90 @@
>
+ striped
+ :items="validators"
+ :fields="validator_fields"
+ :sort-desc="true"
+ sort-by="tokens"
+ >
+
+
+
+
+
+
+
+ {{ data.item.description.moniker }}
+
+ {{ data.item.description.website || data.item.description.identity }}
+
+
+