forked from cerc-io/cosmos-explorer
disable coin_type 60 for now
This commit is contained in:
parent
a892fc305f
commit
afa822529a
@ -286,7 +286,7 @@
|
|||||||
|
|
||||||
<b-alert
|
<b-alert
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
:show="true"
|
:show="!accounts"
|
||||||
>
|
>
|
||||||
<h4 class="alert-heading">
|
<h4 class="alert-heading">
|
||||||
Enable Keplr For {{ chainId }}
|
Enable Keplr For {{ chainId }}
|
||||||
@ -389,6 +389,13 @@ export default {
|
|||||||
computed: {
|
computed: {
|
||||||
chains() {
|
chains() {
|
||||||
const config = JSON.parse(localStorage.getItem('chains'))
|
const config = JSON.parse(localStorage.getItem('chains'))
|
||||||
|
|
||||||
|
Object.values(config).forEach(x => {
|
||||||
|
if (x.coin_type === '60') {
|
||||||
|
this.exludes.push(x.chain_name)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
this.exludes.forEach(x => {
|
this.exludes.forEach(x => {
|
||||||
delete config[x]
|
delete config[x]
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user