Skip to content

Commit

Permalink
feat: add Hedera mirror node Docs (#1143)
Browse files Browse the repository at this point in the history
Co-authored-by: kowshikdiamond <kowshik.vajrala5@gmail.com>
  • Loading branch information
aditya-manit and kowshikdiamond authored Sep 6, 2024
1 parent e6b931d commit dcd1f26
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/layouts/navigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,7 @@ export const getNavigation = (section) => {
{ title: "Filecoin", href: "/validator/external-chains/filecoin/" },
{ title: "Flow", href: "/validator/external-chains/flow/" },
{ title: "Fraxtal", href: "/validator/external-chains/fraxtal/" },
{ title: "Hedera", href: "/validator/external-chains/hedera/" },
{
title: "Immutable zkEVM",
href: "/validator/external-chains/immutable/",
Expand Down
72 changes: 72 additions & 0 deletions src/pages/validator/external-chains/hedera.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# Hedera

import { Callout } from "/src/components/callout";

Instructions to set up your Hedera mirror node.

### Requirements

- [Setup your Axelar validator](/validator/setup/overview/)
- Minimum hardware requirements: CPUs: 4 cores RAM: 16 GB Storage (SSD): 500 GB
- Ubuntu 20.04 LTS or later
- [Official Documentation](https://docs.hedera.com/hedera/core-concepts/mirror-nodes/run-your-own-beta-mirror-node)

### Prerequisites

- An Amazon Web Services account/Google Cloud Platform account.
- [Docker](https://docs.docker.com/engine/install/) (>= v20.10.x) installed on your machine.

### Clone Hedera Mirror Node Repository

Open your terminal and run the following commands

```bash
git clone https://github.com/hashgraph/hedera-mirror-node
cd hedera-mirror-node
```

### Configure Mirror Node

The `application.yml` file is the main configuration file for the Hedera Mirror Node. We'll update that file with GCP/AWS Secret and Access keys and the type of Hedera Network we want to mirror.

```application.toml
hedera:
mirror:
importer:
downloader:
accessKey: Enter access key from your GCP/AWS account
cloudProvider: "GCP/s3" #Choose GCP for google or s3 for AWS
secretKey: Enter secret key from your GCP/AWS account
gcpProjectId: ENTER GCP PROJECT ID HERE / N/A for AWS
network: PREVIEWNET/TESTNET/MAINNET #Pick one network
```

### Run Your Mirror Node

```bash
docker compose up
```

### Check Logs

Logs should appear like this

```bash
importer-1 | 2024-09-05T14:10:43.832Z INFO pool-8-thread-2 c.h.m.i.p.b.BatchInserter Copied 1 rows to transaction table in 388.7 μs
importer-1 | 2024-09-05T14:10:43.833Z INFO pool-8-thread-2 c.h.m.i.p.r.e.s.SqlEntityListener Completed batch inserts in 11.59 ms
importer-1 | 2024-09-05T14:10:43.833Z INFO pool-8-thread-2 c.h.m.i.p.r.RecordFileParser Successfully processed 1 items from 2019-10-11T16_39_21.323930Z.rcd in 11.69 ms
importer-1 | 2024-09-05T14:10:43.948Z INFO pool-8-thread-2 c.h.m.i.p.b.BatchInserter Copied 7 rows to crypto_transfer table in 664.4 μs
importer-1 | 2024-09-05T14:10:43.957Z INFO pool-8-thread-2 c.h.m.i.p.b.BatchInserter Copied 3 rows to entity_temp table in 8.886 ms
importer-1 | 2024-09-05T14:10:43.958Z INFO pool-8-thread-2 c.h.m.i.p.b.BatchInserter Copied 1 rows to record_file table in 483.7 μs
importer-1 | 2024-09-05T14:10:43.958Z INFO pool-8-thread-2 c.h.m.i.p.b.TransactionHashBatchInserter Copied 1 rows from 1 shards to transaction_hash table in 653.0 μs
importer-1 | 2024-09-05T14:10:43.959Z INFO pool-8-thread-2 c.h.m.i.p.b.BatchInserter Copied 1 rows to transaction table in 486.9 μs
importer-1 | 2024-09-05T14:10:43.959Z INFO pool-8-thread-2 c.h.m.i.p.r.e.s.SqlEntityListener Completed batch inserts in 11.39 ms
importer-1 | 2024-09-05T14:10:43.959Z INFO pool-8-thread-2 c.h.m.i.p.r.RecordFileParser Successfully processed 1 items from 2019-10-11T16_39_31.290027001Z.rcd in 11.50 ms
importer-1 | 2024-09-05T14:10:44.539Z INFO scheduling-4 c.h.m.i.d.r.RecordFileDownloader No new signature files to download after file: 2019-10-11T16_39_31.290027001Z.rcd. Retrying in 0.5 s
```

### Verify RPC

```bash
curl http://localhost:5551/api/v1/transactions?limit=1
```

0 comments on commit dcd1f26

Please sign in to comment.