Run MoneroV Client

  1. Run the following command to connect the monerovd daemon to the LMDB database of the MoneroV blockchain. You may have to replace hardfork-lmdb-databases with the path on your machine.
    ./monerovd --data-dir hardfork-lmdb-databases/monerov/ --offline
    
  2. The RPC server is exposed on port 19091. You can check if it is working by running the following command.
    curl http://127.0.0.1:19091/get_height
    
    You should see the following output. It shows that there are 1711291 blocks in the chain.
    {
       "height": 1711291,
       "status": "OK",
       "untrusted": false
    }