add draft of gravity

This commit is contained in:
liangping 2021-09-20 10:29:23 +08:00
parent 6dff9d318a
commit dfda5c56ad
5 changed files with 150 additions and 2 deletions

View File

@ -25,6 +25,8 @@
"blockchains": "Blockchains",
"uptime": "Uptime",
"gravity": "Gravity",
"proposal_id": "Proposal ID",
"proposal_type": "Proposal Type",
"proposal_proposer": "Proposer",

View File

@ -314,6 +314,10 @@ const chainAPI = class ChainFetch {
return ChainFetch.getIBCDenomTrace(baseurl, hash).then(res => res.denom_trace.base_denom)
}
async getGravityPools() {
return this.get('/cosmos/liquidity/v1beta1/pools').then(data => commonProcess(data))
}
// CoinMarketCap
static async fetchCoinMarketCap(url) {
const host = 'https://price.ping.pub'
@ -328,9 +332,17 @@ const chainAPI = class ChainFetch {
const txString = toBase64(TxRaw.encode(bodyBytes).finish())
const txRaw = {
tx_bytes: txString,
mode: 'BROADCAST_MODE_SYNC',
mode: 'BROADCAST_MODE_BLOCK', // BROADCAST_MODE_SYNC, BROADCAST_MODE_BLOCK, BROADCAST_MODE_ASYNC
}
return this.post('/cosmos/tx/v1beta1/txs', txRaw, config)
return this.post('/cosmos/tx/v1beta1/txs', txRaw, config).then(res => {
if (res.code && res.code !== 0) {
throw new Error(res.message)
}
if (res.tx_response && res.tx_response.code !== 0) {
throw new Error(res.tx_response.raw_log)
}
return res
})
}
async post(url = '', data = {}, config = null) {

View File

@ -26,6 +26,11 @@ const modules = [
title: 'uptime',
route: 'uptime',
},
{
scope: 'cosmos',
title: 'gravity',
route: 'gravity',
},
]
function processMenu() {

View File

@ -258,6 +258,20 @@ const router = new VueRouter({
],
},
},
{
path: '/cosmos/gravity',
name: 'gravity',
component: () => import('@/views/GravityPool.vue'),
meta: {
pageTitle: 'Gravity Pools',
breadcrumb: [
{
text: 'Gravity',
active: true,
},
],
},
},
{
path: '/user/login',
name: 'login',

115
src/views/GravityPool.vue Normal file
View File

@ -0,0 +1,115 @@
<template>
<div class="container-md">
<b-row class="match-height">
<b-col
v-for="(data,index) in pools.pools"
:key="index"
md="4"
sm="6"
>
<router-link :to="data.id">
<b-card
v-if="data"
class="earnings-card text-left"
>
<b-row>
<b-col cols="8">
<b-card-title class="mb-1 text-uppercase">
#{{ data.id }} {{ formatDenom(data.reserve_coin_denoms[0]) }} - {{ formatDenom(data.reserve_coin_denoms[1]) }}<small class="font-small-2"> xx</small>
</b-card-title>
<div class="font-small-2">
Height
</div>
<h5 class="mb-1">
{{ data.height || '0' }}
</h5>
<b-card-text class="text-muted font-small-2">
<span class="font-weight-bolder">{{ data.pool_coin_denom || '...' }}</span>
</b-card-text>
</b-col>
<b-col
cols="4"
>
<b-avatar
:src="data.logo"
class="mt-1 badge-minimal"
variant="light-primary"
rounded
size="82"
badge
:badge-variant="data.variant"
/></b-col>
</b-row>
</b-card>
</router-link>
</b-col>
<!-- no result found -->
<b-col
v-show="!chains"
cols="12"
class="text-center"
>
<h4 class="mt-4">
No blockchain found!!
</h4>
</b-col>
<!--/ no result found -->
</b-row>
</div>
</template>
<script>
import {
BCard, BCardTitle, VBTooltip,
} from 'bootstrap-vue'
import { formatTokenDenom } from '@/libs/data'
// import fetch from 'node-fetch'
export default {
components: {
BCard,
BCardTitle,
},
directives: {
'b-tooltip': VBTooltip,
},
data() {
return {
pools: [],
ibcDenom: {},
}
},
created() {
this.$http.getGravityPools().then(res => {
this.pools = res
res.pools.forEach(x => {
const denom1 = x.reserve_coin_denoms[0]
const denom2 = x.reserve_coin_denoms[1]
if (denom1.startsWith('ibc')) {
this.$http.getIBCDenomTrace(denom1).then(denom => {
this.$set(this.ibcDenom, denom1, denom)
})
}
if (denom2.startsWith('ibc')) {
this.$http.getIBCDenomTrace(denom2).then(denom => {
this.$set(this.ibcDenom, denom2, denom)
})
}
})
})
},
beforeDestroy() {
this.islive = false
clearInterval(this.timer)
},
methods: {
formatDenom(v) {
console.log(v, this.ibcDenom[v])
const denom = (v.startsWith('ibc') ? this.ibcDenom[v].denom_trace.base_denom : v)
return formatTokenDenom(denom)
},
length: v => (Array.isArray(v) ? v.length : 0),
},
}
</script>