diff --git a/lib/metadata/getPageOgType.ts b/lib/metadata/getPageOgType.ts index 4535257365..e26c186eab 100644 --- a/lib/metadata/getPageOgType.ts +++ b/lib/metadata/getPageOgType.ts @@ -43,6 +43,7 @@ const OG_TYPE_DICT: Record = { '/dispute-games': 'Root page', '/batches': 'Root page', '/batches/[number]': 'Regular page', + '/batches/celestia/[height]/[commitment]': 'Regular page', '/blobs/[hash]': 'Regular page', '/ops': 'Root page', '/op/[hash]': 'Regular page', diff --git a/lib/metadata/templates/description.ts b/lib/metadata/templates/description.ts index a8069e0f28..536778d87e 100644 --- a/lib/metadata/templates/description.ts +++ b/lib/metadata/templates/description.ts @@ -46,6 +46,7 @@ const TEMPLATE_MAP: Record = { '/dispute-games': DEFAULT_TEMPLATE, '/batches': DEFAULT_TEMPLATE, '/batches/[number]': DEFAULT_TEMPLATE, + '/batches/celestia/[height]/[commitment]': DEFAULT_TEMPLATE, '/blobs/[hash]': DEFAULT_TEMPLATE, '/ops': DEFAULT_TEMPLATE, '/op/[hash]': DEFAULT_TEMPLATE, diff --git a/lib/metadata/templates/title.ts b/lib/metadata/templates/title.ts index 46eedf1d30..33a81ff3ce 100644 --- a/lib/metadata/templates/title.ts +++ b/lib/metadata/templates/title.ts @@ -43,6 +43,7 @@ const TEMPLATE_MAP: Record = { '/dispute-games': '%network_name% dispute games', '/batches': '%network_name% txn batches', '/batches/[number]': '%network_name% L2 txn batch %number%', + '/batches/celestia/[height]/[commitment]': '%network_name% L2 txn batch %height% %commitment%', '/blobs/[hash]': '%network_name% blob %hash% details', '/ops': 'User operations on %network_name% - %network_name% explorer', '/op/[hash]': '%network_name% user operation %hash%', diff --git a/lib/mixpanel/getPageType.ts b/lib/mixpanel/getPageType.ts index e361248bbf..db3fc08073 100644 --- a/lib/mixpanel/getPageType.ts +++ b/lib/mixpanel/getPageType.ts @@ -41,6 +41,7 @@ export const PAGE_TYPE_DICT: Record = { '/dispute-games': 'Dispute games', '/batches': 'Txn batches', '/batches/[number]': 'L2 txn batch details', + '/batches/celestia/[height]/[commitment]': 'L2 txn batch details', '/blobs/[hash]': 'Blob details', '/ops': 'User operations', '/op/[hash]': 'User operation details',