Run Monero v7 Client

  1. Download the Lithium Luna, Point Release 3 version of the Monero client.
  2. Run the following command to connect the monerod daemon to the LMDB database of the Monero v7 blockchain. You may have to replace hardfork-lmdb-databases with the path on your machine.
    ./monerod --data-dir hardfork-lmdb-databases/monerov7/ --offline
    
  3. The RPC server is exposed on port 18081. You can check if it is working by running the following command.
    curl http://127.0.0.1:18081/get_height
    
    You should see the following output. It shows that there are 1685584 blocks in the chain.
    {
         "height": 1685584,
         "status": "OK",
         "untrusted": false
    }