diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml
new file mode 100644
index 00000000..bab28620
--- /dev/null
+++ b/.gitea/workflows/build.yml
@@ -0,0 +1,33 @@
+name: Build
+
+on:
+ push:
+ branches: [master, dev]
+ paths:
+ - 'src/**'
+ pull_request:
+ branches: [master, dev]
+ paths:
+ - 'src/**'
+
+jobs:
+ build:
+ name: Build
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
+
+ - name: Setup Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: '20.x'
+
+ - name: Enable corepack and yarn
+ run: corepack enable
+
+ - name: Install dependencies
+ run: yarn install --frozen-lockfile
+
+ - name: Build project
+ run: yarn build
diff --git a/.github/workflows/docker-image.yml b/.gitea/workflows/docker-image.yml
similarity index 100%
rename from .github/workflows/docker-image.yml
rename to .gitea/workflows/docker-image.yml
diff --git a/package.json b/package.json
index 786f292e..ba8e3b9f 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "ping.pub",
- "version": "3.0.1-zenith-0.1.2",
+ "version": "3.0.1-zenith-0.2.1",
"private": true,
"target": "",
"scripts": {
diff --git a/src/components/dynamic/TxsElement.vue b/src/components/dynamic/TxsElement.vue
index fa38232e..ede1f1aa 100644
--- a/src/components/dynamic/TxsElement.vue
+++ b/src/components/dynamic/TxsElement.vue
@@ -46,7 +46,12 @@ const chain = useBlockchain();
| {{ item.injected }} |
- {{ item.hash }}
+
+ {{ item.hash }}
+
{{
item.hash
}}
diff --git a/src/modules/[chain]/tx/[hash].vue b/src/modules/[chain]/tx/[hash].vue
index 89d89e94..799ce216 100644
--- a/src/modules/[chain]/tx/[hash].vue
+++ b/src/modules/[chain]/tx/[hash].vue
@@ -1,27 +1,78 @@
@@ -44,6 +111,50 @@ const messages = computed(() => {
Transaction
+
+ Bundle Transaction
+
+
+
+
+ | Tx Hash |
+ {{ bundleTx.hash }} |
+
+
+ | Height |
+
+ {{ bundleTx.height }}
+
+ |
+
+
+
+
+
+
+
+ Vote Extension
+
+
+
+
+ | Tx Hash |
+ {{ voteExtension.hash }} |
+
+
+ | Height |
+
+ {{ voteExtension.height }}
+
+ |
+
+
+
+
+
+
{{ $t('tx.title') }}
@@ -116,16 +227,16 @@ const messages = computed(() => {
{{ $t('tx.no_messages') }}
-
|