@@ -50,45 +50,46 @@ mkdir -p ~/.exrpd
50
50
```
51
51
Inside it, you will eventually see two subfolders. The first is ` ~/.exrpd/config ` . The second is ` ~/.exrpd/data ` .
52
52
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).
54
55
<tabs >
55
56
<tab-item title = " devnet" >
56
57
``` bash
57
- exrpd config chain-id exrp_1440002-1
58
+ exrpd init < your_moniker > -- chain-id exrp_1440002-1
58
59
```
59
60
</tab-item >
60
61
<tab-item title = " testnet" >
61
62
``` bash
62
- exrpd config chain-id TBD
63
+ exrpd init < your_moniker > -- chain-id TBD
63
64
```
64
65
</tab-item >
65
66
<tab-item title = " mainnet" >
66
67
``` bash
67
- exrpd config chain-id TBD
68
+ exrpd init < your_moniker > -- chain-id TBD
68
69
```
69
70
</tab-item >
70
71
</tabs >
72
+ This step populates the aforementioned ` ~/.exrpd ` directory with the ` config ` and ` data ` directories.
73
+
74
+ ## Download genesis file
71
75
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).
74
76
<tabs >
75
77
<tab-item title = " devnet" >
76
78
``` 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
78
80
```
79
81
</tab-item >
80
82
<tab-item title = " testnet" >
81
83
``` bash
82
- exrpd init < your_moniker > --chain-id TBD
84
+ TBD
83
85
```
84
86
</tab-item >
85
87
<tab-item title = " mainnet" >
86
88
``` bash
87
- exrpd init < your_moniker > --chain-id TBD
89
+ TBD
88
90
```
89
91
</tab-item >
90
92
</tabs >
91
- This step populates the aforementioned ` ~/.exrpd ` directory with the ` config ` and ` data ` directories.
92
93
93
94
## Download Snapshot
94
95
0 commit comments