diff --git a/chains/mainnet/cosmos.json b/chains/mainnet/cosmos.json index 338532b7..e92890f2 100644 --- a/chains/mainnet/cosmos.json +++ b/chains/mainnet/cosmos.json @@ -24,6 +24,7 @@ "coin_type": "118", "min_tx_fee": "800", "addr_prefix": "cosmos", + "registry_name": "cosmoshub", "logo": "/logos/cosmos.svg", "assets": [{ "base": "uatom", diff --git a/src/App.vue b/src/App.vue index 3460a20b..36fc09ec 100644 --- a/src/App.vue +++ b/src/App.vue @@ -4,6 +4,7 @@ import { useThemeConfig } from '@/plugins/vuetify/@core/composable/useThemeConfi import { hexToRgb } from '@/plugins/vuetify/@layouts/utils'; import { themeChange } from 'theme-change'; import { onMounted } from 'vue'; +import TxDialog from './components/TxDialog.vue'; const { syncInitialLoaderTheme, syncVuetifyThemeWithTheme: syncConfigThemeWithVuetifyTheme, @@ -30,6 +31,7 @@ onMounted(() => { )}`" > + diff --git a/src/components/TxDialog.vue b/src/components/TxDialog.vue new file mode 100644 index 00000000..e563afef --- /dev/null +++ b/src/components/TxDialog.vue @@ -0,0 +1,12 @@ + + \ No newline at end of file diff --git a/src/modules/[chain]/account/[address].vue b/src/modules/[chain]/account/[address].vue index 07beb5ff..1bd81e36 100644 --- a/src/modules/[chain]/account/[address].vue +++ b/src/modules/[chain]/account/[address].vue @@ -1,5 +1,5 @@