重新梳理流程,更好集成交易所接口

This commit is contained in:
liangping 2021-11-25 19:20:58 +08:00
parent 4044df4cf6
commit 8e37979b88
5 changed files with 154 additions and 60 deletions

View File

@ -5,8 +5,45 @@
* @LastEditors: dingyiming * @LastEditors: dingyiming
* @LastEditTime: 2021-11-23 11:19:51 * @LastEditTime: 2021-11-23 11:19:51
*/ */
import { sha256 } from '@cosmjs/crypto'
import { toHex } from '@cosmjs/encoding'
import fetch from 'node-fetch' import fetch from 'node-fetch'
import { getLocalChains } from './data/data' import { formatTokenDenom, getLocalChains } from './data/data'
export const poolIds = {
1: true,
2: true,
3: true,
4: true,
5: true,
6: true,
7: true,
8: true,
9: true,
10: true,
13: true,
15: true,
461: true,
482: true,
497: true,
498: true,
548: true,
557: true,
558: true,
571: true,
572: true,
}
export function getPairName(pool, denomTrace, type = 'base') {
const index = type === 'base' ? 0 : 1
if (pool && pool.poolAssets) {
if (pool.poolAssets[index].token.denom.startsWith('ibc')) {
return formatTokenDenom(denomTrace[pool.poolAssets[index].token.denom].base_denom)
}
return formatTokenDenom(pool.poolAssets[index].token.denom)
}
return '-'
}
export default class OsmosAPI { export default class OsmosAPI {
constructor() { constructor() {
@ -76,7 +113,27 @@ export default class OsmosAPI {
// Custom Module // Custom Module
async getPools() { async getPools() {
return this.get('/osmosis/gamm/v1beta1/pools?pagination.limit=700') const tradeable = []
Object.keys(poolIds).forEach(k => {
if (poolIds[k]) {
tradeable.push(k)
}
})
return this.get('/osmosis/gamm/v1beta1/pools?pagination.limit=700').then(res => {
const output = res.pools.filter(x => tradeable.includes(x.id))
return output
})
}
async getDenomTraces() {
return this.get('/ibc/applications/transfer/v1beta1/denom_traces?pagination.limit=300').then(x => {
const combined = {}
x.denom_traces.forEach(item => {
const k = 'ibc/'.concat(toHex(sha256(new TextEncoder('utf-8').encode(`${item.path}/${item.base_denom}`))).toUpperCase())
combined[k] = item
})
return combined
})
} }
async getIncentivesPools() { async getIncentivesPools() {

View File

@ -295,14 +295,18 @@ const router = new VueRouter({
}, },
// 2. OSMOSIS // 2. OSMOSIS
{ {
path: '/:chain/osmosis/trade/:base?/:target?', path: '/:chain/osmosis/trade/:poolid?',
name: 'osmosis-trade', name: 'osmosis-trade',
component: () => import('@/views/OsmosisTrade.vue'), component: () => import('@/views/OsmosisTrade.vue'),
meta: { meta: {
pageTitle: 'Trade', pageTitle: 'Classic Trade',
breadcrumb: [ breadcrumb: [
{ {
text: 'Trade', text: 'DEX',
active: true,
},
{
text: 'Classic Trade',
active: true, active: true,
}, },
], ],

View File

@ -36,9 +36,9 @@
<template #cell(pair)="data"> <template #cell(pair)="data">
<router-link <router-link
:to="`/osmosis/osmosis/trade/${data.item.pair}`" :to="`/osmosis/osmosis/trade/${data.item.id}`"
> >
{{ data.item.pair }} {{ data.item.pair[0] }} / {{ data.item.pair[1] }}
</router-link> </router-link>
</template> </template>
</b-table> </b-table>
@ -70,8 +70,8 @@
> >
<b-card> <b-card>
<Place <Place
:base="base" :pool.sync="current"
:target="target" :denom-trace="denomTrace"
/> />
</b-card> </b-card>
</b-col> </b-col>
@ -83,6 +83,7 @@
import { import {
BRow, BCol, BCard, BButton, BPopover, BTable, BRow, BCol, BCard, BButton, BPopover, BTable,
} from 'bootstrap-vue' } from 'bootstrap-vue'
import { getPairName } from '@/libs/osmos'
import Place from './components/KlineTrade/Place.vue' import Place from './components/KlineTrade/Place.vue'
import Kline from './components/kline/index.vue' import Kline from './components/kline/index.vue'
@ -100,19 +101,41 @@ export default {
data() { data() {
return { return {
show: false, show: false,
base: 'ATOM', // pairs: [
target: 'OSMO', // { pair: 'ATOM/OSMO' },
pairs: [ // { pair: 'IRIS/OSMO' },
{ pair: 'ATOM/OSMO' }, // { pair: 'AKT/OSMO' },
{ pair: 'IRIS/OSMO' }, // { pair: 'ATOM/OSMO' },
{ pair: 'AKT/OSMO' }, // { pair: 'ATOM/OSMO' },
{ pair: 'ATOM/OSMO' }, // ],
{ pair: 'ATOM/OSMO' }, pools: [],
], current: {},
denomTrace: [],
klineData: [], klineData: [],
} }
}, },
computed: { computed: {
base() {
return getPairName(this.current, this.denomTrace, 'base')
},
target() {
return getPairName(this.current, this.denomTrace, 'target')
},
pairs() {
const pairs = this.pools.map(x => {
const x2 = {
id: x.id,
pair: x.poolAssets.map(t => {
if (t.token.denom.startsWith('ibc/')) {
return (this.denomTrace[t.token.denom] ? this.denomTrace[t.token.denom].base_denom : ' ')
}
return t.token.denom
}),
}
return x2
})
return pairs
},
latestPrice() { latestPrice() {
const p1 = this.$store.state.chains.quotes[this.base] const p1 = this.$store.state.chains.quotes[this.base]
const p2 = this.$store.state.chains.quotes[this.target] const p2 = this.$store.state.chains.quotes[this.target]
@ -131,22 +154,27 @@ export default {
this.$http.osmosis.getOHCL4Pairs( this.$http.osmosis.getOHCL4Pairs(
this.$http.osmosis.getCoinGeckoId(base), this.$http.osmosis.getCoinGeckoId(base),
this.$http.osmosis.getCoinGeckoId(target), this.$http.osmosis.getCoinGeckoId(target),
) ).then(data => {
.then(data => { this.klineData = data
this.klineData = data })
}) this.$http.osmosis.getDenomTraces().then(x => {
this.denomTrace = x
})
this.$http.osmosis.getPools().then(x => {
this.pools = x
const id = this.$route.params.poolid || '1'
this.current = this.pools.find(p => p.id === id) || this.pools[0]
})
}, },
beforeRouteUpdate(to, from, next) { beforeRouteUpdate(to, from, next) {
const { base, target } = to.params const { poolid } = to.params
this.init(base, target) this.init(poolid)
console.log(base, target)
next() next()
// } // }
}, },
methods: { methods: {
init(base, target) { init(poolid) {
this.base = base || 'ATOM' this.current = this.pools.find(p => p.id === poolid) || this.pools[0]
this.target = target || 'OSMO'
}, },
}, },
} }

View File

@ -18,8 +18,8 @@
</b-tabs> </b-tabs>
<PlaceForm <PlaceForm
:type="tabIndex" :type="tabIndex"
:base="base" :pool.sync="pool"
:target="target" :denom-trace="denomTrace"
/> />
</div> </div>
</template> </template>
@ -37,13 +37,13 @@ export default {
PlaceForm, PlaceForm,
}, },
props: { props: {
base: { pool: {
type: String, type: Object,
required: true, default: () => {},
}, },
target: { denomTrace: {
type: String, type: [Array, Object],
required: true, default: () => [],
}, },
}, },
data: () => ({ data: () => ({

View File

@ -141,6 +141,7 @@ import {
} from 'bootstrap-vue' } from 'bootstrap-vue'
import FeatherIcon from '@/@core/components/feather-icon/FeatherIcon.vue' import FeatherIcon from '@/@core/components/feather-icon/FeatherIcon.vue'
import { /* abbrAddress, */ formatTokenAmount, getLocalAccounts } from '@/libs/data' import { /* abbrAddress, */ formatTokenAmount, getLocalAccounts } from '@/libs/data'
import { getPairName } from '@/libs/osmos'
import DepositeWindow from './DepositeWindow.vue' import DepositeWindow from './DepositeWindow.vue'
export default { export default {
@ -160,13 +161,13 @@ export default {
type: Number, type: Number,
required: true, required: true,
}, },
base: { pool: {
type: String, type: Object,
required: true, default: () => {},
}, },
target: { denomTrace: {
type: String, type: [Array, Object],
required: true, default: () => [],
}, },
}, },
data() { data() {
@ -176,11 +177,18 @@ export default {
total: 0, total: 0,
slippage: 0.05, slippage: 0.05,
marks: [0, 0.01, 0.025, 0.05], marks: [0, 0.01, 0.025, 0.05],
baseAmount: 0, balance: {},
targetAmount: 0, // base: '',
// target: '',
} }
}, },
computed: { computed: {
base() {
return getPairName(this.pool, this.denomTrace, 'base')
},
target() {
return getPairName(this.pool, this.denomTrace, 'target')
},
price() { price() {
const p1 = this.$store.state.chains.quotes[this.base] const p1 = this.$store.state.chains.quotes[this.base]
const p2 = this.$store.state.chains.quotes[this.target] const p2 = this.$store.state.chains.quotes[this.target]
@ -190,28 +198,25 @@ export default {
return '' return ''
}, },
available() { available() {
const denom = this.$http.osmosis.getMinDenom(this.type === 0 ? this.base : this.target) if (this.pool && this.pool.poolAssets) {
return formatTokenAmount(this.type === 0 ? this.targetAmount : this.baseAmount, 2, denom) const mode = this.type === 1 ? 0 : 1
const { denom } = this.pool.poolAssets[mode].token
let amount = 0
this.balance.forEach(x => {
if (x.denom === denom) {
amount = x.amount
}
})
return formatTokenAmount(amount, 6, denom)
}
return 0
}, },
}, },
created() { created() {
this.initialAddress() this.initialAddress()
console.log('address', this.address)
this.$http.getBankBalances(this.address).then(res => { this.$http.getBankBalances(this.address).then(res => {
console.log(res, this.base, this.target)
if (res && res.length > 0) { if (res && res.length > 0) {
const baseHash = this.$http.osmosis.getIBCDenomHash(this.base) this.balance = res
const targetHash = this.$http.osmosis.getIBCDenomHash(this.target)
res.forEach(token => {
console.log('token:', token)
if (token.denom === baseHash) {
this.baseAmount = token.amount
}
if (token.denom === targetHash) {
this.targetAmount = token.amount
}
})
console.log(this.baseAmount, this.targetAmount)
} }
}) })
}, },