From b84272d59245c271f132f69bb927e26cd5b379e7 Mon Sep 17 00:00:00 2001 From: smk762 Date: Mon, 22 Dec 2025 07:02:12 +0800 Subject: [PATCH] updates TKL commit --- README.md | 2 +- doc/changelog.md | 1 + doc/update085.md | 15 +++++++++++++-- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9b445b21..951f28eb 100755 --- a/README.md +++ b/README.md @@ -68,4 +68,4 @@ General [Setup instructions](https://github.com/KomodoPlatform/Documentation/blo | RAPH | [komodo](https://github.com/komodoplatform/komodo) | [e0f463a](https://github.com/GLEECBTC/komodo-daemon/tree/e0f463a5e0fee7e7c8db7f1b46a2b89926abab96) | [![dPOW Status](https://badges.komodo.earth/svg/RAPH_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-mainnet | | THC | [komodo](https://github.com/komodoplatform/komodo) | [e0f463a](https://github.com/GLEECBTC/komodo-daemon/tree/e0f463a5e0fee7e7c8db7f1b46a2b89926abab96) | [![dPOW Status](https://badges.komodo.earth/svg/THC_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-mainnet | | MCL | [marmarachain](https://github.com/marmarachain/marmara) | [7938b2c](https://github.com/marmarachain/marmara/commit/7938b2cb5d791ee30790384903a61a4934b7e8f1) | [![dPOW Status](https://badges.komodo.earth/svg/MCL_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3p | -| TOKEL | [tokel](https://github.com/TokelPlatform/tokel) | [b97260d](https://github.com/TokelPlatform/tokel/commit/b97260d4ac9d91f6bd28b116a1cee794a3a3035e) | [![dPOW Status](https://badges.komodo.earth/svg/TOKEL_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3P | +| TOKEL | [tokel](https://github.com/TokelPlatform/tokel) | [96234b4](https://github.com/TokelPlatform/tokel/commit/96234b46472d51bb0ea3c2ac31a150b7b8ff5f92) | [![dPOW Status](https://badges.komodo.earth/svg/TOKEL_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3P | diff --git a/doc/changelog.md b/doc/changelog.md index 444c0a39..091651a7 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -3,6 +3,7 @@ ## 0.8.5 - Updates `komodod` to [`e0f463a`](https://github.com/GLEECBTC/komodo-daemon/commit/e0f463a5e0fee7e7c8db7f1b46a2b89926abab96) +- Updates `tokeld` to [`96234b4`](https://github.com/TokelPlatform/tokel/commit/96234b46472d51bb0ea3c2ac31a150b7b8ff5f92) ## 0.8.4 diff --git a/doc/update085.md b/doc/update085.md index e7e80aff..bef143cf 100644 --- a/doc/update085.md +++ b/doc/update085.md @@ -5,18 +5,29 @@ Related Komodod pull request: https://github.com/GLEECBTC/komodo-daemon/pull/672 Related Komodod release: https://github.com/GLEECBTC/komodo-daemon/releases/tag/v0.9.2 -### Stop, Update and restart KMD and all assetchains +### Stop, Update and restart KMD, TKL and all assetchains ```bash +# Rebuild KMD komodo-cli stop # repeat for KMD 3P and all assetchains cd ~/komodo git pull git checkout e0f463a ./zcutil/build.sh -j$(expr $(nproc) - 1) source ~/dPoW/pubkey.txt -komodod -pubkey=${pubkey} # repeat for KMD 3P and all assetchains +komodod -pubkey=${pubkey} & # repeat for KMD 3P and all assetchains + +# Rebuild TKL +komodo-cli -ac_name=TOKEL stop +cd ~/tokel +git pull +git checkout 96234b4 +./zcutil/build.sh -j$(expr $(nproc) - 1) +source ~/dPoW/pubkey.txt +tokeld -pubkey=${pubkey} & ``` + #### If using docker: ```bash # Main server