diff --git a/unfurler/src/routes.ts b/unfurler/src/routes.ts index c266217c8..6c971fe9a 100644 --- a/unfurler/src/routes.ts +++ b/unfurler/src/routes.ts @@ -19,6 +19,13 @@ const routes = { title: "Mempool Accelerator", fallbackImg: '/resources/previews/accelerator.jpg', }, + address: { + render: true, + params: 1, + getTitle(path) { + return `Address: ${path[0]}`; + } + }, block: { render: true, params: 1, @@ -40,26 +47,6 @@ const routes = { } } }, - address: { - render: true, - params: 1, - getTitle(path) { - return `Address: ${path[0]}`; - } - }, - tx: { - render: true, - params: 1, - getTitle(path) { - return `Transaction: ${path[0]}`; - }, - routes: { - push: { - title: "Push Transaction", - fallbackImg: '/resources/previews/tx-push.jpg', - } - } - }, lightning: { title: "Lightning", fallbackImg: '/resources/previews/lightning.jpg', @@ -127,6 +114,19 @@ const routes = { title: "Trademark Policy", fallbackImg: '/resources/previews/trademark-policy.jpg', }, + tx: { + render: true, + params: 1, + getTitle(path) { + return `Transaction: ${path[0]}`; + }, + routes: { + push: { + title: "Push Transaction", + fallbackImg: '/resources/previews/tx-push.jpg', + } + } + } }; const networks = {