Skip to content

Commit 526a594

Browse files
Update xrpl evm doc (axelarnetwork#1300)
Co-authored-by: Idris Olubisi <[email protected]>
1 parent fa3be0c commit 526a594

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

src/content/docs/validator/external-chains/xrpl-evm.mdx

+11-10
Original file line numberDiff line numberDiff line change
@@ -50,45 +50,46 @@ mkdir -p ~/.exrpd
5050
```
5151
Inside it, you will eventually see two subfolders. The first is `~/.exrpd/config`. The second is `~/.exrpd/data`.
5252

53-
2. Set the chain id
53+
2. Initialize the node
54+
Make sure to replace `<your_moniker>` with a short ASCII-only name for your node (e.g., my-node).
5455
<tabs>
5556
<tab-item title="devnet">
5657
```bash
57-
exrpd config chain-id exrp_1440002-1
58+
exrpd init <your_moniker> --chain-id exrp_1440002-1
5859
```
5960
</tab-item>
6061
<tab-item title="testnet">
6162
```bash
62-
exrpd config chain-id TBD
63+
exrpd init <your_moniker> --chain-id TBD
6364
```
6465
</tab-item>
6566
<tab-item title="mainnet">
6667
```bash
67-
exrpd config chain-id TBD
68+
exrpd init <your_moniker> --chain-id TBD
6869
```
6970
</tab-item>
7071
</tabs>
72+
This step populates the aforementioned `~/.exrpd` directory with the `config` and `data` directories.
73+
74+
## Download genesis file
7175

72-
3. Initialize the node
73-
Make sure to replace `<your_moniker>` with a short ASCII-only name for your node (e.g., my-node).
7476
<tabs>
7577
<tab-item title="devnet">
7678
```bash
77-
exrpd init <your_moniker> --chain-id exrp_1440002-1
79+
wget https://raw.githubusercontent.com/Peersyst/xrp-evm-archive/main/poa-devnet/genesis.json -O ~/.exrpd/config/genesis.json
7880
```
7981
</tab-item>
8082
<tab-item title="testnet">
8183
```bash
82-
exrpd init <your_moniker> --chain-id TBD
84+
TBD
8385
```
8486
</tab-item>
8587
<tab-item title="mainnet">
8688
```bash
87-
exrpd init <your_moniker> --chain-id TBD
89+
TBD
8890
```
8991
</tab-item>
9092
</tabs>
91-
This step populates the aforementioned `~/.exrpd` directory with the `config` and `data` directories.
9293

9394
## Download Snapshot
9495

0 commit comments

Comments
 (0)