add account page
This commit is contained in:
parent
b0dc410959
commit
e9f52e3001
@ -59,6 +59,7 @@
|
|||||||
"vue-loader": "^15.9.6",
|
"vue-loader": "^15.9.6",
|
||||||
"vue-perfect-scrollbar": "0.2.1",
|
"vue-perfect-scrollbar": "0.2.1",
|
||||||
"vue-prism-component": "1.1.1",
|
"vue-prism-component": "1.1.1",
|
||||||
|
"vue-qr": "^2.5.0",
|
||||||
"vue-ripple-directive": "2.0.1",
|
"vue-ripple-directive": "2.0.1",
|
||||||
"vue-router": "3.4.9",
|
"vue-router": "3.4.9",
|
||||||
"vue-select": "3.11.2",
|
"vue-select": "3.11.2",
|
||||||
|
@ -79,13 +79,13 @@
|
|||||||
</b-button>
|
</b-button>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<b-dropdown-item :to="{ name: 'portfolio' }">
|
<!-- <b-dropdown-item :to="{ name: 'portfolio' }">
|
||||||
<feather-icon
|
<feather-icon
|
||||||
icon="PieChartIcon"
|
icon="PieChartIcon"
|
||||||
size="16"
|
size="16"
|
||||||
/>
|
/>
|
||||||
<span class="align-middle ml-50">Portofolio</span>
|
<span class="align-middle ml-50">Portofolio</span>
|
||||||
</b-dropdown-item>
|
</b-dropdown-item> -->
|
||||||
|
|
||||||
<b-dropdown-item :to="{ name: 'accounts' }">
|
<b-dropdown-item :to="{ name: 'accounts' }">
|
||||||
<feather-icon
|
<feather-icon
|
||||||
|
@ -227,6 +227,20 @@ export function getStakingValidatorByAccount(chainName, addr) {
|
|||||||
return addr
|
return addr
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getStakingValidatorOperator(chainName, addr, length = -1) {
|
||||||
|
const locals = localStorage.getItem(`validators-${chainName}`)
|
||||||
|
if (locals) {
|
||||||
|
const val = JSON.parse(locals).find(x => x.operator_address === addr)
|
||||||
|
if (val) {
|
||||||
|
return val.description.moniker
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (length > 0) {
|
||||||
|
return addr.substring(addr.length - length)
|
||||||
|
}
|
||||||
|
return addr
|
||||||
|
}
|
||||||
|
|
||||||
export * from 'compare-versions'
|
export * from 'compare-versions'
|
||||||
|
|
||||||
export class Data {
|
export class Data {
|
||||||
|
@ -194,10 +194,35 @@ const chainAPI = class ChainFetch {
|
|||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
static async getAuthAccount(baseurl, address) {
|
async getAuthAccount(address) {
|
||||||
return ChainFetch.fetch(baseurl, '/auth/accounts/'.concat(address)).then(data => commonProcess(data))
|
return this.get('/auth/accounts/'.concat(address)).then(data => commonProcess(data))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async getBankAccountBalance(address) {
|
||||||
|
return this.get('/bank/balances/'.concat(address)).then(data => commonProcess(data))
|
||||||
|
}
|
||||||
|
|
||||||
|
async getStakingReward(address) {
|
||||||
|
return this.get(`/cosmos/distribution/v1beta1/delegators/${address}/rewards`).then(data => commonProcess(data))
|
||||||
|
}
|
||||||
|
|
||||||
|
async getStakingValidators(address) {
|
||||||
|
return this.get(`/cosmos/distribution/v1beta1/delegators/${address}/validators`).then(data => commonProcess(data))
|
||||||
|
}
|
||||||
|
|
||||||
|
async getStakingDelegations(address) {
|
||||||
|
return this.get(`/cosmos/staking/v1beta1/delegations/${address}`).then(data => commonProcess(data))
|
||||||
|
}
|
||||||
|
|
||||||
|
async getStakingRedelegations(address) {
|
||||||
|
return this.get(`/cosmos/staking/v1beta1/delegators/${address}/redelegations`).then(data => commonProcess(data))
|
||||||
|
}
|
||||||
|
|
||||||
|
async getStakingUnbonding(address) {
|
||||||
|
return this.get(`/cosmos/staking/v1beta1/delegators/${address}/unbonding_delegations`).then(data => commonProcess(data))
|
||||||
|
}
|
||||||
|
// /cosmos/staking/v1beta1/delegations/{delegator_addr}
|
||||||
|
|
||||||
static async getBankBalance(baseurl, address) {
|
static async getBankBalance(baseurl, address) {
|
||||||
return ChainFetch.fetch(baseurl, '/bank/balances/'.concat(address)).then(data => commonProcess(data))
|
return ChainFetch.fetch(baseurl, '/bank/balances/'.concat(address)).then(data => commonProcess(data))
|
||||||
}
|
}
|
||||||
|
@ -17,6 +17,7 @@ import './global-components'
|
|||||||
// 3rd party plugins
|
// 3rd party plugins
|
||||||
import '@/libs/portal-vue'
|
import '@/libs/portal-vue'
|
||||||
import '@/libs/toastification'
|
import '@/libs/toastification'
|
||||||
|
import '@/libs/clipboard'
|
||||||
|
|
||||||
Vue.use(VueI18n)
|
Vue.use(VueI18n)
|
||||||
|
|
||||||
|
@ -76,7 +76,7 @@ const router = new VueRouter({
|
|||||||
pageTitle: 'Address Book',
|
pageTitle: 'Address Book',
|
||||||
breadcrumb: [
|
breadcrumb: [
|
||||||
{
|
{
|
||||||
text: 'Transaction',
|
text: 'Address Book',
|
||||||
active: true,
|
active: true,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
@ -98,6 +98,24 @@ const router = new VueRouter({
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/:chain/account/:address',
|
||||||
|
name: 'chain-account',
|
||||||
|
component: () => import('@/views/UserAccountDetail.vue'),
|
||||||
|
meta: {
|
||||||
|
pageTitle: 'Accounts',
|
||||||
|
breadcrumb: [
|
||||||
|
{
|
||||||
|
text: 'Accounts',
|
||||||
|
active: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: 'Detail',
|
||||||
|
active: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/:chain/staking',
|
path: '/:chain/staking',
|
||||||
name: 'staking',
|
name: 'staking',
|
||||||
|
21
src/views/ChartjsComponentDoughnutChart.vue
Normal file
21
src/views/ChartjsComponentDoughnutChart.vue
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<script>
|
||||||
|
import { Doughnut, mixins } from 'vue-chartjs'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
extends: Doughnut,
|
||||||
|
mixins: [mixins.reactiveProp],
|
||||||
|
props: {
|
||||||
|
data: {
|
||||||
|
type: Object,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
options: {
|
||||||
|
type: Object,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.renderChart(this.data, this.options)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
506
src/views/UserAccountDetail.vue
Normal file
506
src/views/UserAccountDetail.vue
Normal file
@ -0,0 +1,506 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<b-card
|
||||||
|
bg-variant="secondary"
|
||||||
|
style="color: #fff"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="d-flex flex-row align-items-center text-truncate"
|
||||||
|
>
|
||||||
|
<b-avatar
|
||||||
|
id="address-qr"
|
||||||
|
rounded
|
||||||
|
size="52"
|
||||||
|
>
|
||||||
|
<feather-icon
|
||||||
|
icon="CameraIcon"
|
||||||
|
size="32"
|
||||||
|
/>
|
||||||
|
</b-avatar>
|
||||||
|
<div class="ml-2">
|
||||||
|
<h3
|
||||||
|
style="color: #fff"
|
||||||
|
class="mb-0"
|
||||||
|
>
|
||||||
|
Address: <feather-icon
|
||||||
|
icon="CopyIcon"
|
||||||
|
size="18"
|
||||||
|
@click="copy()"
|
||||||
|
/>
|
||||||
|
</h3>
|
||||||
|
{{ address }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</b-card>
|
||||||
|
<b-card
|
||||||
|
class="d-flex flex-row"
|
||||||
|
>
|
||||||
|
<b-card-header class="pt-0 pl-0 pr-0">
|
||||||
|
<b-card-title>Assets</b-card-title>
|
||||||
|
<b-button
|
||||||
|
variant="primary"
|
||||||
|
size="sm"
|
||||||
|
>
|
||||||
|
Transfer
|
||||||
|
</b-button>
|
||||||
|
</b-card-header>
|
||||||
|
<b-card-body class="pl-0 pr-0">
|
||||||
|
<b-row>
|
||||||
|
<b-col
|
||||||
|
class="border-right"
|
||||||
|
xm="12"
|
||||||
|
md="4"
|
||||||
|
>
|
||||||
|
<chartjs-component-doughnut-chart
|
||||||
|
v-if="chartData"
|
||||||
|
:height="235"
|
||||||
|
:width="235"
|
||||||
|
:data="chartData"
|
||||||
|
:chart-data="chartData"
|
||||||
|
:options="doughnutChart.options"
|
||||||
|
class="mb-3"
|
||||||
|
/>
|
||||||
|
</b-col>
|
||||||
|
<b-col
|
||||||
|
xm="12"
|
||||||
|
md="8"
|
||||||
|
>
|
||||||
|
<!-- tokens -->
|
||||||
|
<div
|
||||||
|
v-for="(token, index) in assetTable.items"
|
||||||
|
:key="`asset-${index}`"
|
||||||
|
class="d-flex justify-content-between mb-1"
|
||||||
|
>
|
||||||
|
<div class="d-flex align-items-center">
|
||||||
|
<b-avatar
|
||||||
|
:variant="`light-${token.color}`"
|
||||||
|
rounded
|
||||||
|
>
|
||||||
|
<feather-icon
|
||||||
|
:icon="token.icon"
|
||||||
|
size="16"
|
||||||
|
:class="`text-${token.color}`"
|
||||||
|
/>
|
||||||
|
</b-avatar>
|
||||||
|
<span class="font-weight-bold ml-75 d-none d-md-block">{{ token.type }} </span>
|
||||||
|
<span class="ml-25">{{ token.percent }}%</span>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex flex-column">
|
||||||
|
<span class="text-right">{{ formatAmount(token.amount) }} {{ formatDenom(token.denom) }}</span>
|
||||||
|
<small class="text-right">${{ token.currency }}</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!--/ tokens -->
|
||||||
|
<div class="text-right border-top pt-1">
|
||||||
|
<h2>Total: ${{ assetTable.currency }}</h2>
|
||||||
|
</div>
|
||||||
|
</b-col>
|
||||||
|
</b-row>
|
||||||
|
</b-card-body>
|
||||||
|
</b-card>
|
||||||
|
|
||||||
|
<b-card>
|
||||||
|
<b-card-header class="pt-0 pl-0 pr-0">
|
||||||
|
<b-card-title>Delegation</b-card-title>
|
||||||
|
<b-button
|
||||||
|
variant="primary"
|
||||||
|
size="sm"
|
||||||
|
>
|
||||||
|
Withdraw
|
||||||
|
</b-button>
|
||||||
|
</b-card-header>
|
||||||
|
<b-card-body class="pl-0 pr-0">
|
||||||
|
<b-table
|
||||||
|
:items="deleTable"
|
||||||
|
stacked="sm"
|
||||||
|
/>
|
||||||
|
</b-card-body>
|
||||||
|
</b-card>
|
||||||
|
|
||||||
|
<b-card
|
||||||
|
v-if="account"
|
||||||
|
:title="accountTitle"
|
||||||
|
class="text-trancate"
|
||||||
|
>
|
||||||
|
<b-table-simple stacked="sm">
|
||||||
|
<b-tbody v-if="account.type === 'cosmos-sdk/BaseAccount'">
|
||||||
|
<b-tr>
|
||||||
|
<b-td class="max-width:100px;">
|
||||||
|
Account Number
|
||||||
|
</b-td><b-td> {{ account.value.account_number }} </b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> Sequence </b-td><b-td> {{ account.value.sequence }} </b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> Public Key </b-td><b-td> <object-field-component :tablefield="account.value.public_key" /> </b-td>
|
||||||
|
</b-tr>
|
||||||
|
</b-tbody>
|
||||||
|
<b-tbody v-if="account.type === 'cosmos-sdk/PeriodicVestingAccount'">
|
||||||
|
<b-tr>
|
||||||
|
<b-td class="max-width:100px;">
|
||||||
|
Account Number
|
||||||
|
</b-td><b-td> {{ account.value.base_vesting_account.base_account.account_number }} </b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> Sequence </b-td><b-td> {{ account.value.base_vesting_account.base_account.sequence }} </b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> Public Key </b-td><b-td> <object-field-component :tablefield="account.value.base_vesting_account.base_account.public_key" /> </b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> Original Vesting </b-td><b-td> {{ formatToken(account.value.base_vesting_account.original_vesting) }} </b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> Delegated Free </b-td><b-td> {{ formatToken(account.value.base_vesting_account.delegated_free) }} </b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> Delegated Vesting </b-td><b-td> {{ formatToken(account.value.base_vesting_account.delegated_vesting) }} </b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> Vesting Time </b-td><b-td> {{ formatTime(account.value.start_time) }} - {{ formatTime(account.value.base_vesting_account.end_time) }}</b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> Vesting Periods </b-td>
|
||||||
|
<b-td>
|
||||||
|
<b-table-simple>
|
||||||
|
<th style="width:50px;">
|
||||||
|
#
|
||||||
|
</th><th>Length</th><th>Amount</th>
|
||||||
|
<b-tr
|
||||||
|
v-for="p, index in account.value.vesting_periods"
|
||||||
|
:key="index"
|
||||||
|
>
|
||||||
|
<td>{{ index+1 }}</td><td>{{ p.length }} - {{ formatLength(p.length) }} </td><td>{{ formatToken(p.amount) }}</td>
|
||||||
|
</b-tr>
|
||||||
|
</b-table-simple>
|
||||||
|
</b-td>
|
||||||
|
</b-tr>
|
||||||
|
</b-tbody>
|
||||||
|
<b-tbody v-if="account.type === 'cosmos-sdk/DelayedVestingAccount'">
|
||||||
|
<b-tr>
|
||||||
|
<b-td style="max-width:100px;">
|
||||||
|
Account Number
|
||||||
|
</b-td><b-td> {{ account.value.base_vesting_account.base_account.account_number }} </b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> Sequence </b-td><b-td> {{ account.value.base_vesting_account.base_account.sequence }} </b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> Public Key </b-td><b-td> <object-field-component :tablefield="account.value.base_vesting_account.base_account.public_key" /> </b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> Original Vesting </b-td><b-td> {{ formatToken(account.value.base_vesting_account.original_vesting) }} </b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> Delegated Free </b-td><b-td> {{ formatToken(account.value.base_vesting_account.delegated_free) }} </b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> Delegated Vesting </b-td><b-td> {{ formatToken(account.value.base_vesting_account.delegated_vesting) }} </b-td>
|
||||||
|
</b-tr>
|
||||||
|
<b-tr>
|
||||||
|
<b-td> End Time </b-td><b-td> {{ formatTime(account.value.base_vesting_account.end_time) }}</b-td>
|
||||||
|
</b-tr>
|
||||||
|
</b-tbody>
|
||||||
|
</b-table-simple>
|
||||||
|
</b-card>
|
||||||
|
|
||||||
|
<b-popover
|
||||||
|
target="address-qr"
|
||||||
|
variant="dark"
|
||||||
|
triggers="hover"
|
||||||
|
placement="bottom"
|
||||||
|
>
|
||||||
|
<vue-qr :text="address" />
|
||||||
|
</b-popover></div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {
|
||||||
|
BCard, BAvatar, BPopover, BTable, BRow, BCol, BTableSimple, BTr, BTd, BTbody, BCardHeader, BCardTitle, BButton, BCardBody,
|
||||||
|
} from 'bootstrap-vue'
|
||||||
|
import FeatherIcon from '@/@core/components/feather-icon/FeatherIcon.vue'
|
||||||
|
import ToastificationContent from '@core/components/toastification/ToastificationContent.vue'
|
||||||
|
import Ripple from 'vue-ripple-directive'
|
||||||
|
import VueQr from 'vue-qr'
|
||||||
|
import chainAPI from '@/libs/fetch'
|
||||||
|
import {
|
||||||
|
formatToken, formatTokenAmount, formatTokenDenom, getStakingValidatorOperator, percent, tokenFormatter, toDay, toDuration,
|
||||||
|
} from '@/libs/data'
|
||||||
|
import { $themeColors } from '@themeConfig'
|
||||||
|
import ObjectFieldComponent from './ObjectFieldComponent.vue'
|
||||||
|
import ChartjsComponentDoughnutChart from './ChartjsComponentDoughnutChart.vue'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
BRow,
|
||||||
|
BCol,
|
||||||
|
BCard,
|
||||||
|
BAvatar,
|
||||||
|
BPopover,
|
||||||
|
BTable,
|
||||||
|
FeatherIcon,
|
||||||
|
VueQr,
|
||||||
|
BTableSimple,
|
||||||
|
BTbody,
|
||||||
|
BCardHeader,
|
||||||
|
BCardTitle,
|
||||||
|
BCardBody,
|
||||||
|
BButton,
|
||||||
|
BTr,
|
||||||
|
BTd,
|
||||||
|
// eslint-disable-next-line vue/no-unused-components
|
||||||
|
ToastificationContent,
|
||||||
|
ObjectFieldComponent,
|
||||||
|
ChartjsComponentDoughnutChart,
|
||||||
|
},
|
||||||
|
directives: {
|
||||||
|
Ripple,
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
const { address } = this.$route.params
|
||||||
|
return {
|
||||||
|
totalCurrency: 0,
|
||||||
|
address,
|
||||||
|
account: null,
|
||||||
|
assets: [],
|
||||||
|
denoms: {},
|
||||||
|
reward: [],
|
||||||
|
delegations: [],
|
||||||
|
redelegations: [],
|
||||||
|
unbonding: [],
|
||||||
|
quotes: {},
|
||||||
|
doughnutChart: {
|
||||||
|
options: {
|
||||||
|
responsive: true,
|
||||||
|
maintainAspectRatio: false,
|
||||||
|
responsiveAnimationDuration: 500,
|
||||||
|
cutoutPercentage: 60,
|
||||||
|
legend: {
|
||||||
|
display: true,
|
||||||
|
title: {
|
||||||
|
display: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
tooltips: {
|
||||||
|
callbacks: {
|
||||||
|
label(tooltipItem, data) {
|
||||||
|
const label = data.datasets[0].labels[tooltipItem.index] || ''
|
||||||
|
const value = data.datasets[0].data[tooltipItem.index]
|
||||||
|
const total = data.datasets[0].data.reduce((t, c) => t + c)
|
||||||
|
const output = ` ${label} : ${percent(value / total)} %`
|
||||||
|
return output
|
||||||
|
},
|
||||||
|
},
|
||||||
|
// Updated default tooltip UI
|
||||||
|
shadowOffsetX: 1,
|
||||||
|
shadowOffsetY: 1,
|
||||||
|
shadowBlur: 8,
|
||||||
|
// shadowColor: chartColors.tooltipShadow,
|
||||||
|
// backgroundColor: $themeColors.light,
|
||||||
|
// titleFontColor: $themeColors.dark,
|
||||||
|
// bodyFontColor: $themeColors.dark,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
accountTitle() {
|
||||||
|
if (this.account) {
|
||||||
|
return this.account.type.substring(this.account.type.indexOf('/') + 1)
|
||||||
|
}
|
||||||
|
return ''
|
||||||
|
},
|
||||||
|
assetTable() {
|
||||||
|
let total = []
|
||||||
|
let sum = 0
|
||||||
|
let sumCurrency = 0
|
||||||
|
total = total.concat(this.assets.map(x => {
|
||||||
|
const xh = x
|
||||||
|
xh.type = 'Balance'
|
||||||
|
xh.color = 'primary'
|
||||||
|
xh.icon = 'CreditCardIcon'
|
||||||
|
xh.currency = this.formatCurrency(xh.amount, xh.denom)
|
||||||
|
sumCurrency += xh.currency
|
||||||
|
sum += Number(xh.amount)
|
||||||
|
return xh
|
||||||
|
}))
|
||||||
|
|
||||||
|
total = total.concat(this.delegations.map(x => {
|
||||||
|
const xh = x.balance
|
||||||
|
xh.type = 'Delegation'
|
||||||
|
xh.color = 'success'
|
||||||
|
xh.icon = 'LockIcon'
|
||||||
|
xh.currency = this.formatCurrency(xh.amount, xh.denom)
|
||||||
|
sumCurrency += xh.currency
|
||||||
|
sum += Number(xh.amount)
|
||||||
|
return xh
|
||||||
|
}))
|
||||||
|
|
||||||
|
if (this.reward.total) {
|
||||||
|
total = total.concat(this.reward.total.map(x => {
|
||||||
|
const xh = x
|
||||||
|
xh.type = 'Reward'
|
||||||
|
xh.color = 'warning'
|
||||||
|
xh.icon = 'TrendingUpIcon'
|
||||||
|
xh.currency = this.formatCurrency(xh.amount, xh.denom)
|
||||||
|
sumCurrency += xh.currency
|
||||||
|
sum += Number(xh.amount)
|
||||||
|
return xh
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
if (this.unbonding) {
|
||||||
|
// total = total.concat(this.unbonding.map(x => {
|
||||||
|
// const xh = x.entries[0]
|
||||||
|
// xh.type = 'unbonding'
|
||||||
|
// xh.color = 'text-warning'
|
||||||
|
// xh.icon = 'TrendingUpIcon'
|
||||||
|
// return xh
|
||||||
|
// }))
|
||||||
|
total.push({
|
||||||
|
type: 'unbonding',
|
||||||
|
color: 'danger',
|
||||||
|
icon: 'TrendingDownIcon',
|
||||||
|
denom: '',
|
||||||
|
amount: 0,
|
||||||
|
percent: 0,
|
||||||
|
currency: 0,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
total = total.map(x => {
|
||||||
|
const xh = x
|
||||||
|
xh.percent = percent(Number(x.amount) / sum)
|
||||||
|
return xh
|
||||||
|
})
|
||||||
|
return {
|
||||||
|
items: total,
|
||||||
|
currency: parseFloat(sumCurrency.toFixed(2)),
|
||||||
|
}
|
||||||
|
},
|
||||||
|
chartData() {
|
||||||
|
const data = this.assetTable.items.reduce((t, c) => {
|
||||||
|
const th = t
|
||||||
|
if (t[c.type]) {
|
||||||
|
th[c.type] += Number(c.amount)
|
||||||
|
} else {
|
||||||
|
th[c.type] = Number(c.amount)
|
||||||
|
}
|
||||||
|
return th
|
||||||
|
}, [])
|
||||||
|
return {
|
||||||
|
datasets: [
|
||||||
|
{
|
||||||
|
labels: Object.keys(data),
|
||||||
|
data: Object.values(data),
|
||||||
|
backgroundColor: [$themeColors.primary, $themeColors.success, $themeColors.warning, $themeColors.danger, $themeColors.info],
|
||||||
|
borderWidth: 0,
|
||||||
|
pointStyle: 'rectRounded',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
||||||
|
},
|
||||||
|
deleTable() {
|
||||||
|
const re = []
|
||||||
|
if (this.reward.rewards) {
|
||||||
|
this.delegations.forEach(e => {
|
||||||
|
const reward = this.reward.rewards.find(r => r.validator_address === e.delegation.validator_address)
|
||||||
|
re.push({
|
||||||
|
validator: getStakingValidatorOperator(this.$http.config.chain_name, e.delegation.validator_address, 8),
|
||||||
|
token: formatToken(e.balance),
|
||||||
|
reward: tokenFormatter(reward.reward),
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return re
|
||||||
|
},
|
||||||
|
accTable() {
|
||||||
|
let table = {}
|
||||||
|
if (this.account && this.account.type === 'cosmos-sdk/PeriodicVestingAccount') {
|
||||||
|
table = this.account.value
|
||||||
|
}
|
||||||
|
return table
|
||||||
|
},
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.$http.getAuthAccount(this.address).then(acc => {
|
||||||
|
this.account = acc
|
||||||
|
})
|
||||||
|
this.$http.getBankAccountBalance(this.address).then(bal => {
|
||||||
|
this.assets = bal
|
||||||
|
bal.forEach(x => {
|
||||||
|
if (x.denom.startsWith('ibc/')) {
|
||||||
|
chainAPI.getIBCDenomTraceText(this.$http.config.api, x.denom).then(denom => {
|
||||||
|
this.$set(this.denoms, x.denom, denom)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
const symbol = formatTokenDenom(x.denom)
|
||||||
|
if (!this.quotes[symbol]) {
|
||||||
|
chainAPI.fetchTokenQuote(symbol).then(quote => {
|
||||||
|
this.$set(this.quotes, symbol, quote)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
this.$http.getStakingReward(this.address).then(res => {
|
||||||
|
this.reward = res
|
||||||
|
})
|
||||||
|
this.$http.getStakingDelegations(this.address).then(res => {
|
||||||
|
this.delegations = res.delegation_responses
|
||||||
|
})
|
||||||
|
this.$http.getStakingRedelegations(this.address).then(res => {
|
||||||
|
this.redelegations = res.redelegation_responses
|
||||||
|
})
|
||||||
|
this.$http.getStakingUnbonding(this.address).then(res => {
|
||||||
|
this.unbonding = res.unbonding_responses
|
||||||
|
})
|
||||||
|
// this.$http.getStakingValidators(this.address).then(res => {
|
||||||
|
// console.log(res)
|
||||||
|
// })
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
formatDenom(v) {
|
||||||
|
return formatTokenDenom(this.denoms[v] ? this.denoms[v] : v)
|
||||||
|
},
|
||||||
|
formatAmount(v) {
|
||||||
|
return formatTokenAmount(v)
|
||||||
|
},
|
||||||
|
formatToken(v) {
|
||||||
|
return tokenFormatter(v)
|
||||||
|
},
|
||||||
|
formatCurrency(amount, denom) {
|
||||||
|
const qty = this.formatAmount(amount)
|
||||||
|
const d2 = this.formatDenom(denom)
|
||||||
|
const userCurrency = 'USD'
|
||||||
|
const quote = this.quotes[d2]
|
||||||
|
if (quote && quote.quote) {
|
||||||
|
const { price } = quote.quote[userCurrency]
|
||||||
|
return parseFloat((qty * price).toFixed(2))
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
},
|
||||||
|
formatTime: v => toDay(Number(v) * 1000),
|
||||||
|
formatLength: v => toDuration(Number(v) * 1000),
|
||||||
|
copy() {
|
||||||
|
this.$copyText(this.address).then(() => {
|
||||||
|
this.$toast({
|
||||||
|
component: ToastificationContent,
|
||||||
|
props: {
|
||||||
|
title: 'Address copied',
|
||||||
|
icon: 'BellIcon',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}, e => {
|
||||||
|
this.$toast({
|
||||||
|
component: ToastificationContent,
|
||||||
|
props: {
|
||||||
|
title: `Failed to copy address! ${e}`,
|
||||||
|
icon: 'BellIcon',
|
||||||
|
variant: 'danger',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
})
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
@ -46,21 +46,19 @@
|
|||||||
class="cursor-pointer"
|
class="cursor-pointer"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<b-dropdown-item
|
<b-dropdown-item
|
||||||
v-if="balances[acc.addr]"
|
v-if="balances[acc.addr]"
|
||||||
@click="removeAddress(acc.chain)"
|
|
||||||
>
|
>
|
||||||
Send
|
<feather-icon icon="SendIcon" /> Transfer
|
||||||
</b-dropdown-item>
|
</b-dropdown-item>
|
||||||
<b-dropdown-item
|
<b-dropdown-item
|
||||||
v-if="balances[acc.addr]"
|
v-if="balances[acc.addr]"
|
||||||
@click="removeAddress(acc.chain)"
|
:to="`/${acc.chain}/account/${acc.addr}`"
|
||||||
>
|
>
|
||||||
Detail
|
<feather-icon icon="TrelloIcon" /> Detail
|
||||||
</b-dropdown-item>
|
</b-dropdown-item>
|
||||||
<b-dropdown-item @click="removeAddress(acc.addr)">
|
<b-dropdown-item @click="removeAddress(acc.addr)">
|
||||||
Remove
|
<feather-icon icon="Trash2Icon" /> Remove
|
||||||
</b-dropdown-item>
|
</b-dropdown-item>
|
||||||
</b-dropdown>
|
</b-dropdown>
|
||||||
|
|
||||||
|
@ -11255,6 +11255,11 @@ vue-property-decorator@^8.0.0:
|
|||||||
dependencies:
|
dependencies:
|
||||||
vue-class-component "^7.1.0"
|
vue-class-component "^7.1.0"
|
||||||
|
|
||||||
|
vue-qr@^2.5.0:
|
||||||
|
version "2.5.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/vue-qr/-/vue-qr-2.5.0.tgz#2b938f8d4c3d07eaf9e4931b714e32f7ca15b5dd"
|
||||||
|
integrity sha512-lVCEqzZyhrZ49dr6n1C4dMNH/tvKJzRwJhCi9vxWYpiosYTWM0J5m5RsJ745S88XWwgTeOynKMGbyOLG9ZP20Q==
|
||||||
|
|
||||||
vue-ripple-directive@2.0.1:
|
vue-ripple-directive@2.0.1:
|
||||||
version "2.0.1"
|
version "2.0.1"
|
||||||
resolved "https://registry.npmjs.org/vue-ripple-directive/-/vue-ripple-directive-2.0.1.tgz"
|
resolved "https://registry.npmjs.org/vue-ripple-directive/-/vue-ripple-directive-2.0.1.tgz"
|
||||||
|
Loading…
Reference in New Issue
Block a user