diff --git a/src/features/search/placeholderMessages.ts b/src/features/search/placeholderMessages.ts
index 513f70b..a77c6ae 100644
--- a/src/features/search/placeholderMessages.ts
+++ b/src/features/search/placeholderMessages.ts
@@ -19,13 +19,16 @@ export const TX_ZERO: PartialTransactionReceipt = {
blockNumber: 123456789,
};
+const BODY_ZERO =
+ '0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000';
+
export const PLACEHOLDER_MESSAGES: Message[] = [
{
id: '1',
status: MessageStatus.Pending,
sender: constants.AddressZero,
recipient: constants.AddressZero,
- body: constants.AddressZero + constants.AddressZero + constants.AddressZero,
+ body: BODY_ZERO,
originChainId: chain.mainnet.id,
destinationChainId: chain.arbitrum.id,
originTransaction: TX_ZERO,
@@ -38,7 +41,7 @@ export const PLACEHOLDER_MESSAGES: Message[] = [
status: MessageStatus.Pending,
sender: constants.AddressZero,
recipient: constants.AddressZero,
- body: constants.AddressZero + constants.AddressZero + constants.AddressZero,
+ body: BODY_ZERO,
originChainId: chain.polygon.id,
destinationChainId: chain.optimism.id,
originTransaction: TX_ZERO,
@@ -51,7 +54,7 @@ export const PLACEHOLDER_MESSAGES: Message[] = [
status: MessageStatus.Pending,
sender: constants.AddressZero,
recipient: constants.AddressZero,
- body: constants.AddressZero + constants.AddressZero + constants.AddressZero,
+ body: BODY_ZERO,
originChainId: avalancheChain.id,
destinationChainId: celoMainnetChain.id,
originTransaction: TX_ZERO,
@@ -64,7 +67,7 @@ export const PLACEHOLDER_MESSAGES: Message[] = [
status: MessageStatus.Pending,
sender: constants.AddressZero,
recipient: constants.AddressZero,
- body: constants.AddressZero + constants.AddressZero + constants.AddressZero,
+ body: BODY_ZERO,
originChainId: bscChain.id,
destinationChainId: chain.mainnet.id,
originTransaction: TX_ZERO,
@@ -77,7 +80,7 @@ export const PLACEHOLDER_MESSAGES: Message[] = [
status: MessageStatus.Pending,
sender: constants.AddressZero,
recipient: constants.AddressZero,
- body: constants.AddressZero + constants.AddressZero + constants.AddressZero,
+ body: BODY_ZERO,
originChainId: chain.mainnet.id,
destinationChainId: chain.goerli.id,
originTransaction: TX_ZERO,
@@ -90,7 +93,7 @@ export const PLACEHOLDER_MESSAGES: Message[] = [
status: MessageStatus.Pending,
sender: constants.AddressZero,
recipient: constants.AddressZero,
- body: constants.AddressZero + constants.AddressZero + constants.AddressZero,
+ body: BODY_ZERO,
originChainId: chain.mainnet.id,
destinationChainId: celoMainnetChain.id,
originTransaction: TX_ZERO,
@@ -103,7 +106,7 @@ export const PLACEHOLDER_MESSAGES: Message[] = [
status: MessageStatus.Pending,
sender: constants.AddressZero,
recipient: constants.AddressZero,
- body: constants.AddressZero + constants.AddressZero + constants.AddressZero,
+ body: BODY_ZERO,
originChainId: chain.optimism.id,
destinationChainId: avalancheChain.id,
originTransaction: TX_ZERO,
@@ -116,7 +119,7 @@ export const PLACEHOLDER_MESSAGES: Message[] = [
status: MessageStatus.Pending,
sender: constants.AddressZero,
recipient: constants.AddressZero,
- body: constants.AddressZero + constants.AddressZero + constants.AddressZero,
+ body: BODY_ZERO,
originChainId: bscChain.id,
destinationChainId: avalancheChain.id,
originTransaction: TX_ZERO,
diff --git a/src/images/icons/book.svg b/src/images/icons/book.svg
index 3e22e6c..76589a5 100644
--- a/src/images/icons/book.svg
+++ b/src/images/icons/book.svg
@@ -1 +1,3 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/images/icons/briefcase.svg b/src/images/icons/briefcase.svg
index cc81432..bc6150d 100644
--- a/src/images/icons/briefcase.svg
+++ b/src/images/icons/briefcase.svg
@@ -1 +1,4 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/images/icons/info-circle.svg b/src/images/icons/info-circle.svg
index aa986c2..79f08a9 100644
--- a/src/images/icons/info-circle.svg
+++ b/src/images/icons/info-circle.svg
@@ -1 +1,3 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 736b87f..c5c1716 100755
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -1,6 +1,6 @@
import type { NextPage } from 'next';
-import { ContentFrame } from '../components/nav/ContentFrame';
+import { ContentFrame } from '../components/layout/ContentFrame';
import { MessageSearch } from '../features/search/MessageSearch';
const Home: NextPage = () => {
diff --git a/src/pages/message/[messageId].tsx b/src/pages/message/[messageId].tsx
index 8e26361..0998d18 100644
--- a/src/pages/message/[messageId].tsx
+++ b/src/pages/message/[messageId].tsx
@@ -2,7 +2,7 @@ import type { NextPage } from 'next';
import { useRouter } from 'next/router';
import { useEffect } from 'react';
-import { ContentFrame } from '../../components/nav/ContentFrame';
+import { ContentFrame } from '../../components/layout/ContentFrame';
import { MessageDetails } from '../../features/search/MessageDetails';
import { logger } from '../../utils/logger';