update configs

This commit is contained in:
liangping 2022-04-08 19:12:35 +08:00
parent bcb10125ba
commit 09eb5bcc9f
3 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
{ {
"chain_name": "secret", "chain_name": "secret",
"coingecko": "secret", "coingecko": "secret",
"api": "https://api.scrt.network", "api": ["https://api.roninventures.io","https://api.scrt.network"],
"rpc": ["http://beta-api.scrt.network:26657", "https://api.scrt.network:443"], "rpc": ["http://beta-api.scrt.network:26657", "https://api.scrt.network:443"],
"snapshot_provider": "", "snapshot_provider": "",
"sdk_version": "0.33.8", "sdk_version": "0.33.8",

View File

@ -2,7 +2,7 @@
"chain_name": "umee", "chain_name": "umee",
"api": ["https://api.blue.main.network.umee.cc", "https://api.bottlenose.main.network.umee.cc", "https://api.apollo.main.network.umee.cc", "https://api.aphrodite.main.network.umee.cc", "https://api.artemis.main.network.umee.cc", "https://api.athena.main.network.umee.cc", "https://api.beaked.main.network.umee.cc"], "api": ["https://api.blue.main.network.umee.cc", "https://api.bottlenose.main.network.umee.cc", "https://api.apollo.main.network.umee.cc", "https://api.aphrodite.main.network.umee.cc", "https://api.artemis.main.network.umee.cc", "https://api.athena.main.network.umee.cc", "https://api.beaked.main.network.umee.cc"],
"rpc": ["https://rpc.aphrodite.main.network.umee.cc:443", "https://rpc.apollo.main.network.umee.cc:443"], "rpc": ["https://rpc.aphrodite.main.network.umee.cc:443", "https://rpc.apollo.main.network.umee.cc:443"],
"snapshot_provider": "", "snapshot_provider": "d97750eddfe88fcd0be61694c396d4491217549b@94.250.203.6:26696,c12ac110e0249f0cef55599b335892444e4a21ac@142.132.198.227:26656",
"sdk_version": "0.45.1", "sdk_version": "0.45.1",
"coin_type": "118", "coin_type": "118",
"min_tx_fee": "8000", "min_tx_fee": "8000",

View File

@ -61,11 +61,11 @@ export default {
}, },
methods: { methods: {
formatDenom(v) { formatDenom(v) {
if (this.denoms[v]) {
const trace = this.denoms[v] const trace = this.denoms[v]
return `* ${formatTokenDenom(trace.base_denom)} (${trace.path})` if (trace) {
return `* ${formatTokenDenom(trace)}`
} }
return v return formatTokenDenom(v)
}, },
}, },
} }