Skip to content

Commit e7ae8fa

Browse files
committed
Add total transactions section
1 parent 29af9ca commit e7ae8fa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/app/pages/HomePage/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { FooterBanner } from './FooterBanner'
88
import { HomeSearch } from './HomeSearch'
99
import { Header } from 'app/components/PageLayout/Header'
1010
import { LatestBlocks } from './LatestBlocks'
11+
import { TotalTransactions } from 'app/components/TotalTransactions'
1112

1213
export const HomePage: FC = () => {
1314
const { network } = useSearchQueryNetworkParam()
@@ -21,7 +22,8 @@ export const HomePage: FC = () => {
2122
<HomeSearch />
2223
<div className="flex gap-6 flex-col md:flex-row">
2324
<LatestBlocks />
24-
<div>Placeholder</div>
25+
{/* TODO: Clean up commit when API supports all layers */}
26+
<TotalTransactions chartContainerHeight={280} scope={{ network: 'mainnet', layer: 'sapphire' }} />
2527
</div>
2628
<RoflAppsCard />
2729
<FooterBanner />

0 commit comments

Comments
 (0)