diff --git a/src/modules/[chain]/block/index.vue b/src/modules/[chain]/block/index.vue
index 6962685b..0b3b2919 100644
--- a/src/modules/[chain]/block/index.vue
+++ b/src/modules/[chain]/block/index.vue
@@ -23,8 +23,6 @@ const list = computed(() => {
{{ $t('block.future') }}
- {{ $t('account.transactions') }}
@@ -48,46 +46,6 @@ const list = computed(() => {
-
-
-
-
-
- {{ $t('account.height') }} |
- {{ $t('account.hash') }} |
- {{ $t('account.messages') }} |
- {{ $t('block.fees') }} |
-
-
-
-
-
- {{ item.height }}
- |
-
- {{
- item.hash
- }}
- |
- {{ format.messages(item.tx.body.messages) }} |
- {{ format.formatTokens(item.tx.authInfo.fee?.amount) }} |
-
-
-
-
-
-
-
-
-
{{ $t('block.only_tx') }}
-
-
-
-
diff --git a/src/modules/[chain]/tx/[hash].vue b/src/modules/[chain]/tx/[hash].vue
index 82505ee4..d6b60fea 100644
--- a/src/modules/[chain]/tx/[hash].vue
+++ b/src/modules/[chain]/tx/[hash].vue
@@ -34,6 +34,16 @@ const messages = computed(() => {
+
+
{{ $t('tx.title') }}
@@ -41,7 +51,7 @@ const messages = computed(() => {
{{ $t('tx.tx_hash') }} |
- {{ tx.tx_response.txhash }} |
+ {{ tx.tx_response.txhash }} |
{{ $t('account.height') }} |
diff --git a/src/modules/[chain]/tx/index.vue b/src/modules/[chain]/tx/index.vue
new file mode 100644
index 00000000..06c19112
--- /dev/null
+++ b/src/modules/[chain]/tx/index.vue
@@ -0,0 +1,94 @@
+
+
+
+
+
+
+
+
+
+ {{ $t('account.height') }} |
+ {{ $t('account.hash') }} |
+ {{ $t('account.messages') }} |
+ {{ $t('block.fees') }} |
+
+
+
+
+
+ {{ item.height }}
+ |
+
+ {{
+ item.hash
+ }}
+ |
+ {{ format.messages(item.tx.body.messages) }} |
+ {{ format.formatTokens(item.tx.authInfo.fee?.amount) }} |
+
+
+
+
+
+
+
+
+
{{ $t('block.only_tx') }}
+
+
+
+
+
+
+
+
+
+
+ {
+ meta: {
+ i18n: 'tx',
+ order: 5
+ }
+ }
+
diff --git a/src/plugins/i18n/locales/cn.json b/src/plugins/i18n/locales/cn.json
index 54926380..91071eee 100644
--- a/src/plugins/i18n/locales/cn.json
+++ b/src/plugins/i18n/locales/cn.json
@@ -12,6 +12,7 @@
"state-sync": "状态同步",
"cosmwasm": "Cosmwasm",
"widget": "Widgets",
+ "tx": "交易",
"ibc": "IBC",
"ecosystem": "生态系统",
"favorite": "收藏夹",
diff --git a/src/plugins/i18n/locales/en.json b/src/plugins/i18n/locales/en.json
index 58507853..8eb91c7a 100644
--- a/src/plugins/i18n/locales/en.json
+++ b/src/plugins/i18n/locales/en.json
@@ -9,6 +9,7 @@
"state-sync": "State Sync",
"cosmwasm": "Cosmwasm",
"widget": "Widgets",
+ "tx": "Transactions",
"ibc": "IBC",
"nft": "NFT",
"consensus": "Consensus",