Built-in transaction viewer: every ledger row verifiable at /tx/<hash>, explorer link when configured

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
martbost
2026-09-06 05:37:29 -05:00
parent 1c31679b6c
commit 718d7f2d0e
12 changed files with 124 additions and 26 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
(async function () {
await IAP.renderNav('ledger');
const c = await IAP.getConfig();
IAP.$('contractLink').href = c.explorer + '/address/' + c.contract;
IAP.$('contractLink').href = c.explorer ? c.explorer + '/address/' + c.contract : '/contract';
const feed = IAP.$('feed');
const { events } = await (await fetch('/api/feed?n=150')).json();