diff --git a/chains/mainnet/axelar.json b/chains/mainnet/axelar.json index 7b416ee8..f5350add 100644 --- a/chains/mainnet/axelar.json +++ b/chains/mainnet/axelar.json @@ -8,6 +8,7 @@ "min_tx_fee": "800", "addr_prefix": "axelar", "logo": "/logos/axelar.svg", + "theme_color": "#000000", "assets": [{ "base": "uaxl", "symbol": "AXL", diff --git a/chains/mainnet/cosmos.json b/chains/mainnet/cosmos.json index ca242fb9..6f0db8c4 100644 --- a/chains/mainnet/cosmos.json +++ b/chains/mainnet/cosmos.json @@ -3,7 +3,12 @@ "registry_name": "cosmoshub", "api": [ "https://api-cosmoshub-ia.cosmosia.notional.ventures", - "https://lcd-cosmoshub.blockapsis.com:443" + "https://lcd-cosmoshub.blockapsis.com:443", + "https://lcd-cosmoshub.whispernode.com:443", + "https://api-cosmoshub.pupmos.network", + "https://cosmos-rest.publicnode.com", + "https://cosmos-rest.staketab.org", + "https://api.cosmos.nodestake.top" ], "rpc": ["https://rpc.cosmos.network:443", "https://cosmos-rpc.icycro.org", "https://rpc.cosmos.dragonstake.io"], "sdk_version": "0.45.1", diff --git a/chains/mainnet/neutron.json b/chains/mainnet/neutron.json index 3a005dd5..52cbbae7 100644 --- a/chains/mainnet/neutron.json +++ b/chains/mainnet/neutron.json @@ -1,11 +1,11 @@ { "chain_name": "neutron", - "api": ["https://neutron-api.lavenderfive.com/"], - "rpc": ["https://neutron-rpc.lavenderfive.com"], + "api": ["https://neutron-api.polkachu.com/"], + "rpc": ["https://neutron-rpc.polkachu.com/"], "provider_chain": { "api": ["https://api-cosmoshub-ia.cosmosia.notional.ventures"] }, - "features": ["dashboard", "blocks", "ibc", "cosmwasm", "uptime", "parameters", "state-sync"], + "features": ["dashboard", "blocks", "ibc", "cosmwasm", "uptime", "parameters", "state-sync", "consensus", "supply", "widget"], "sdk_version": "0.45.1", "coin_type": "118", "min_tx_fee": "8000", @@ -17,6 +17,6 @@ "logo": "/logos/neutron.svg" }], "addr_prefix": "neutron", - "theme_color": "", + "theme_color": "#000000", "logo": "/logos/neutron.svg" } diff --git a/package.json b/package.json index 3b8aa610..2f97b1c5 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "md-editor-v3": "^2.8.1", "numeral": "^2.0.6", "osmojs": "^14.0.0-rc.0", - "ping-widget": "^0.0.38", + "ping-widget": "^0.0.40", "pinia": "^2.0.28", "postcss": "^8.4.23", "qrcode": "^1.5.3", diff --git a/src/components/Countdown.vue b/src/components/Countdown.vue index 588cb085..dd87f30c 100644 --- a/src/components/Countdown.vue +++ b/src/components/Countdown.vue @@ -11,7 +11,6 @@ const props = defineProps({ :time="time > 0 ? time : 0" v-slot="{ days, hours, minutes, seconds }" > - Time Remaining:{{ days }} days, {{ hours }} hours, {{ minutes }} minutes, - {{ seconds }} seconds. + {{ days }} days {{ hours }} hours {{ minutes }} minutes {{ seconds }} seconds diff --git a/src/components/TxDialog.vue b/src/components/TxDialog.vue index e3e83e01..3617564b 100644 --- a/src/components/TxDialog.vue +++ b/src/components/TxDialog.vue @@ -1,6 +1,7 @@