From 7ace728cf01ef9ac58514d89a72bd5928a1f3a59 Mon Sep 17 00:00:00 2001 From: smk762 Date: Wed, 10 Jan 2024 00:29:04 +0800 Subject: [PATCH 1/3] add vrsc instuctions --- README.md | 2 +- doc/changelog.md | 4 ++++ doc/daemon_versions.json | 2 +- doc/update0711.md | 48 ++++++++++++++++++++++++++++++++++++++++ iguana/version | 2 +- 5 files changed, 55 insertions(+), 3 deletions(-) create mode 100644 doc/update0711.md diff --git a/README.md b/README.md index ba2f9b57..88133321 100755 --- a/README.md +++ b/README.md @@ -74,4 +74,4 @@ General [Setup instructions](https://github.com/KomodoPlatform/Documentation/blo | MCL | [marmarachain](https://github.com/marmarachain/marmara) | [4b73b24](https://github.com/marmarachain/marmara/tree/4b73b246552723d1dec60be33636323239ba395d) | [![dPOW Status](https://badges.komodo.earth/svg/MCL_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3p | | MIL | [mil](https://github.com/emc2foundation/mil) | [5df2e4d](https://github.com/emc2foundation/mil/tree/5df2e4d569e546c71e730aa85ad2a0813f3b6369) | [![dPOW Status](https://badges.komodo.earth/svg/MIL_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3P | | TOKEL | [tokel](https://github.com/TokelPlatform/tokel) | [28939c1](https://github.com/TokelPlatform/tokel/tree/28939c11a574c9a98e35240890c64be0688c4f85) | [![dPOW Status](https://badges.komodo.earth/svg/TOKEL_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3P | -| VRSC | [verus](https://github.com/VerusCoin/VerusCoin) | [f9abd80](https://github.com/VerusCoin/VerusCoin/tree/f9abd801e22232d69e1ae4bf486e99264910e639) | [![dPOW Status](https://badges.komodo.earth/svg/VRSC_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3P | +| VRSC | [verus](https://github.com/VerusCoin/VerusCoin) | [8a060c6](https://github.com/VerusCoin/VerusCoin/tree/8a060c63b5b1d8295b754080e0f07966b09776d3) | [![dPOW Status](https://badges.komodo.earth/svg/VRSC_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3P | diff --git a/doc/changelog.md b/doc/changelog.md index 0a0bb67c..e8f22078 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -1,5 +1,9 @@ # Changelog +## 0.7.11 + +- Updates VRSC to [`f9abd80`](https://github.com/VerusCoin/VerusCoin/commit/8a060c63b5b1d8295b754080e0f07966b09776d3) + ## 0.7.10 - Updates VRSC to [`f9abd80`](https://github.com/VerusCoin/VerusCoin/tree/f9abd801e22232d69e1ae4bf486e99264910e639) diff --git a/doc/daemon_versions.json b/doc/daemon_versions.json index 8f562742..f968c454 100644 --- a/doc/daemon_versions.json +++ b/doc/daemon_versions.json @@ -18,5 +18,5 @@ "MCL": "4b73b24", "MIL": "5df2e4d", "TOKEL": "28939c1", - "VRSC": "f9abd80" + "VRSC": "8a060c6" } \ No newline at end of file diff --git a/doc/update0711.md b/doc/update0711.md new file mode 100644 index 00000000..ce78525d --- /dev/null +++ b/doc/update0711.md @@ -0,0 +1,48 @@ +## dPoW 0.7.11 update information + +On your 3P node: + +- update your Verus Coin's codebase to [`8a060c6`](https://github.com/VerusCoin/VerusCoin/tree/8a060c63b5b1d8295b754080e0f07966b09776d3), build it and then restart it. + +### Update VSRC + +#### Using docker setup + +```bash +cd notary_docker_3p +git pull +./update +./start +``` + +#### Using other setup + +- Build Verus Coin + +```bash +vrsc_commit='f9abd80' +cd ~/VerusCoin +git pull +git checkout ${vrsc_commit} +./zcutil/build.sh -j$(expr $(nproc) - 1) +``` + +- Restart it + +```bash +cd ~/VerusCoin/src +./verus stop +source ~/dPoW/iguana/pubkey.txt +./verusd -pubkey=$pubkey & +``` + + +#### Update your dPoW repo + +```bash +cd ~/dPoW +git checkout master +git pull +``` + +Once complete, monitor your node to ensure it is running correctly and notarisations are progressing. diff --git a/iguana/version b/iguana/version index 5b209ea2..b4d6d121 100644 --- a/iguana/version +++ b/iguana/version @@ -1 +1 @@ -0.7.10 +0.7.11 From a1f40939f9448cc61f73a7430a47d80579d0620e Mon Sep 17 00:00:00 2001 From: smk762 Date: Wed, 10 Jan 2024 00:49:39 +0800 Subject: [PATCH 2/3] fix commits --- doc/changelog.md | 2 +- doc/update0711.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/changelog.md b/doc/changelog.md index e8f22078..68623401 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -2,7 +2,7 @@ ## 0.7.11 -- Updates VRSC to [`f9abd80`](https://github.com/VerusCoin/VerusCoin/commit/8a060c63b5b1d8295b754080e0f07966b09776d3) +- Updates VRSC to [`8a060c6`](https://github.com/VerusCoin/VerusCoin/commit/8a060c63b5b1d8295b754080e0f07966b09776d3) ## 0.7.10 diff --git a/doc/update0711.md b/doc/update0711.md index ce78525d..bdc985ca 100644 --- a/doc/update0711.md +++ b/doc/update0711.md @@ -20,7 +20,7 @@ git pull - Build Verus Coin ```bash -vrsc_commit='f9abd80' +vrsc_commit='8a060c6' cd ~/VerusCoin git pull git checkout ${vrsc_commit} From 3e0e0dacd5871423946f7ceda48d660181c59f17 Mon Sep 17 00:00:00 2001 From: smk762 Date: Wed, 10 Jan 2024 01:30:35 +0800 Subject: [PATCH 3/3] include mm2 update --- doc/changelog.md | 1 + doc/update0711.md | 10 ++++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/doc/changelog.md b/doc/changelog.md index 68623401..d659283a 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -3,6 +3,7 @@ ## 0.7.11 - Updates VRSC to [`8a060c6`](https://github.com/VerusCoin/VerusCoin/commit/8a060c63b5b1d8295b754080e0f07966b09776d3) +- Updates mm2 to [`v2.0.0-beta`](https://github.com/KomodoPlatform/komodo-defi-framework/releases/tag/v2.0.0-beta) ## 0.7.10 diff --git a/doc/update0711.md b/doc/update0711.md index bdc985ca..f89cb8fa 100644 --- a/doc/update0711.md +++ b/doc/update0711.md @@ -4,7 +4,7 @@ On your 3P node: - update your Verus Coin's codebase to [`8a060c6`](https://github.com/VerusCoin/VerusCoin/tree/8a060c63b5b1d8295b754080e0f07966b09776d3), build it and then restart it. -### Update VSRC +### Update VSRC and Komodo DeFi Framework #### Using docker setup @@ -36,6 +36,12 @@ source ~/dPoW/iguana/pubkey.txt ./verusd -pubkey=$pubkey & ``` +- Manually update your mm2 to the [latest release](https://github.com/KomodoPlatform/komodo-defi-framework/releases/tag/v2.0.0-beta) +- Edit your MM2.json file to change the netid from `7777` to `8762` +- Open the following ports on your firewall: `42845` (tcp), `42855` (wss) + +### Update + #### Update your dPoW repo @@ -45,4 +51,4 @@ git checkout master git pull ``` -Once complete, monitor your node to ensure it is running correctly and notarisations are progressing. +Once complete, monitor your node to ensure it is running correctly and notarisations are progressing. Make sure any certs for your seednode are up to date and have no permssions issues, and that your wss connection is responding. If you have any issues, please contact us on Discord.