QRL Mainnet v3.0 has been released! (Codename: Cesium)
Table of Contents
About the hard fork
We’re pleased to announced that QRL mainnet version 3 (codenamed Cesium) has been released!
This mainnet release is the result of QRL Improvement Proposal #16 (QIP-016) which proposed to reduce QRL emissions in order to improve the network. As part of the QIP process, many of the positive and negative considerations were discussed at length before being put to our first on-chain vote resulting in the QIPs approval. The final determination can be found on the QIP GitHub discussion page.
We would like to thank everyone who participated in the worlds first post-quantum secure on-chain vote, and are happy to be pushing the fruition of that vote in the form of a hard fork.
Specification
The hard fork implements an emission reduction by a multiplication factor of 0.4x of the per block coinbase reward starting at the hard fork block height of 1,938,000, which has an estimated date time of 2022-02-25 12:30 UTC.
Due to average block time variance, while the hard fork block height remains static, it’s possible that the time that the hard fork triggers can be off by roughly 10%. It’s important to keep in mind these are estimates.
|
|
Along with the emission reduction, there are other minor bug fixes to the QRL node cli.
Upgrade instructions
The update involves three general steps.
Stop your QRL node and any related services such as the wallet daemon (
qrl_walletd
).Update your QRL node
|
|
- Start your QRL node, which will begin the state migration for the fork which should complete in less than 10 minutes depending on system resources. If you run additional services like the wallet daemon (
qrl_walletd
), start them once complete.
This update needs to be done before the hard fork block height of 1,938,000 with an estimated date of 2022-02-25 12:30 UTC.
We’ve also broken it out into more detail below.
Step 1: Stop the QRL Node
Before updating, be sure to stop the QRL node. The way you stop it will depend on the way you’re running your QRL node. If you’re confident that you know how to stop your QRL node and you’ve stopped it, proceed to step 4.
Otherwise, for those that are new, follow along.
- Running as a screen session: Based on discussions, this is the most common setup that people have.
- Running as a background service
- Running as a systemd service
If the QRL node is running as a screen session
Most people will be running it under screen in terminal. If that’s the case, screen -r
into the screen session and hit ctrl+x
to terminate the running process.
|
|
To detach out of the screen session, press ctrl+a,d
.
If the QRL node is running as a background service
If you sent QRL to a background service (usually by running nohup start_qrl &
), then you’ll want to terminate the node:
|
|
Keep in mind that if it’s a systemd service that is set to start again, it will.
If the QRL node is running as a systemd service
Though undocumented and the least common, some people will have installed QRL as a systemd service. To stop that, you’ll want to issue the service to stop.
|
|
The service name will depend on what service name you gave it. You can then check the status with system control as well:
|
|
Step 2: If you have the wallet daemon running, stop it
|
|
Step 3: Check if QRL is still running
To check if it’s still running, run pgrep start_qrl
. If it returns a process number, then that means there’s still a qrl node process running.
|
|
If nothing is returned, move to Step 4 to update the node. If there’s still a node running, then there’s a few possibilities.
- You may be running testnet, in which case you’ll want to either find that session and kill it in a similar manner, or if you sent it to the background, run
pkill qrl_node
. - If you’re running QRL as a service, then it may have restarted and you’ll want to stop it using the systemctl command:
sudo systemctl stop qrlnode
.
Step 4: Update the QRL Node
With the node stopped, upgrade the QRL node.
|
|
Step 5: Check to make sure your QRL node is v3.0.1 or higher
|
|
Step 6: Start the QRL node again
If you want it running as a screen session
If you had it running as a screen session, you’ll want to reattach it and start the QRL node.
|
|
If your QRL node is setup as a systemd service
If you had it running as a systemd service, start the service again.
|
|
If you send the QRL node to the background
|
|
Step 7: Start qrl_walletd (if you want it)
It will take some time for the QRL node to upgrade the state (should be less than 10 minutes), after that, you can start the wallet daemon again.
|
|
Questions? Want to learn more?
Give our website theqrl.org a browse or join us for a chat in one of our many communities on Telegram, Discord, Reddit, Facebook, or KakaoTalk.
Want to stay up to date? Follow us on Youtube, Twitter or our Telegram news channel.
Want to dig into our audited, MIT open-source, enterprise-grade codebase? Check out our github at: https://github.com/theQRL/QRL/