diff --git a/src/modules/[chain]/tx/[hash].vue b/src/modules/[chain]/tx/[hash].vue index c7cc2c78..2128a8fe 100644 --- a/src/modules/[chain]/tx/[hash].vue +++ b/src/modules/[chain]/tx/[hash].vue @@ -22,6 +22,12 @@ if (props.hash) { const messages = computed(() => { return tx.value?.tx?.body?.messages || []; }); + +const rawLog = computed(() => { + return tx.value?.txResponse?.rawLog + ? JSON.parse(tx.value?.txResponse?.rawLog) + : tx.value?.txResponse?.logs || []; +});