create account

How to update your witness to hardfork 26 release canidate 4 (Updated) by themarkymark

View this thread on: hive.blogpeakd.comecency.com
· @themarkymark · (edited)
$177.80
How to update your witness to hardfork 26 release canidate 4 (Updated)
![image.png](https://files.peakd.com/file/peakd-hive/themarkymark/23uQp8Fg9jkJ2ASGE4ka7X5h1gh3RGZMxEVPa7TimKw4R7UmYbZ1JB38WEZzg9dnuLDF1.png)

**Update: Release canidate 4 has been released to fix an issue with rc delegations.  Post has been updated to reflect this.**


Hardfork 26 is right around the corner and offers a lot of improvements.  Many of which dramatically improve scalability and performance.  

Some of the improvements include:

* One Block Irreversibility 
* Increasing HBD haircut ratio
* Allow more than one vote per block
* Remove vote change penalty
* Support for block log compression
* Peer to peer performance improvements
* Resource credit overhaul
* Resource credit delegation
* General improvements to improve operation handling

As of right now, the hardfork is schedule for October 11th.  This may change if anything comes up, as of right now we are on target.

It is officially considered safe to run hardfork 26 release candidate 4 on your backup and producing nodes.  Due to the time it takes to replay aa node, you may want to consider getting at least one of your witness nodes on rc4.  I'm going to walk you through how to do this.  

---

## <center>Installing hived release candidate 4</center>

---

#### Install Operating System

Previous versions of hived generally recommended using Ubuntu 18.04, although it was possible to get newer version of Ubuntu working.  With hardfork 26, it is recommend you run Ubuntu 22.04.

I generally never would recommend raid 0 for anything, but in this case it is safe to use raid 0 if you need the disk space as everything is replacable.  

**If this is your only witness node, I wouldn't recommend raid 0 as it will introduce a small amount of downtime risk.**

You will need around 400G of space to maintain a hf26 witness.  Although you will need almost 1TB more if you need to compress an existing block log or you need to download one.  I would recommend a minimum of 1TB, ideally more if you want to back up your block_log and move in new ones.

---
#### Install Packages

```
apt-get install -y \
autoconf \
automake \
autotools-dev \
build-essential \
cmake \
doxygen \
git \
libboost-all-dev \
libyajl-dev \
libreadline-dev \
libssl-dev \
libtool \
liblz4-tool \
ncurses-dev \
python3 \
python3-dev \
python3-jinja2 \
python3-pip \
libgflags-dev \
libsnappy-dev \
zlib1g-dev \
libbz2-dev \
liblz4-dev \
libzstd-dev \
ninja-build \
```

I would also recommend installing chrony, an improved ntp client.

```
apt install chrony
```

---
#### Clone Repo

You will need to clone the git repo for hived.  

```
git clone https://github.com/openhive-network/hive
```

---
#### Check out release canidate 4

```
ver='v1.26.0rc4'
cd hive && git fetch && git checkout $ver
```

---
#### Grab submodules

```
git submodule update --init --recursive
```

---
#### Make build directory

```
mkdir -p ~/build-$ver && cd ~/build-$ver
```

---
#### Run make

```
cmake -DCMAKE_BUILD_TYPE=Release -G Ninja ../hive
```

---
#### Compile

```
ninja
```

This command will try to compile with all cores available on your machine.

---
#### Move executables to bin folder

```
ninja install
```

---
#### Confirm version

```
hived --version
```

You should see the following:

```
"version":{"blockchain_version":"1.26.0","hive_revision":"ade84a4dfa0750235fcbe8ba910a5b45387f0274","fc_revision":"ade84a4dfa0750235fcbe8ba910a5b45387f0274"}
```
---

---
#### Compress Block Log (Optional)

One of the great features of harfork26 is using compressed block log.  This drastically reduces the space needed for hived.  

* hardfork25 block_log: 673G
* hardfork26 block_log: 350G

If you have an uncompressed block log file, you can compress it with the **compress_block_log** utility.  

You will need to create the folder compressed ahead of time.

```
compress_block_log -j16 --benchmark-decompression -i witness_node_data_dir/blockchain -o witness_node_data_dir/blockchain/compressed
```

Notice you only point to the blockchain folder and not the block_log file.

If you do compress your block log, you will need to copy the block_log and block_log.artifacts files from the compressed folder to the blockchain folder overwriting any previous block_log file.  You should delete block_log.index if you have one there.

I have noticed the compression will create two artifact files, one in the input folder of the old block log and one in the new compressed folder.  Delete the following files in the original folder 

* block_log
* block_log.index
* block_log.artifacts

From the new compressed folder, you will copy the block_log and block_log.artifacts to the original witness_node_dir/blockchain.  

Going forward, there will no longer be a block_log.index, it is replaced with the block_log.artifacts.

---
#### Config.ini

If you have an existing config.ini from a previous witness node, just give a once over and make sure everything looks good.  

If this is not your only witness node, be 100% sure you are not using the same signing key on any other witness or you will double sign.  

If you need to create a new key, use the cli-wallet "suggest_brain_key" command.  This will create a unique public & private key you can use for signing your witness.  Keep this safe, you will need the private key in your config.ini file.  You will need the public key when switching active witnesses.

---
#### Start Screen session

You will want to either use **screen** or **tmux** to prevent your node from shutting down when you close SSH.  Tmux is nicer, but screen is has logging built-in without a plug-in.

I recommend starting a named session, as well as enabling logging.

```
screen -S witness -L -Logfile witness.log
```

This will start a new terminal that will remain running when you close SSH.  It will also log all activity to a file so you can easily monitor errors and troubleshoot problems.

You can detach from a screen session using Control-A + D, but I usually just close the SSH session.

You can always reconnect to your screen session to shutdown your node using:

```
screen -r witness
```

---
#### Start Replay

At this point you either have no block_log file and are going to do a full replay from scratch or you compressed an existing block_log and will start your replay with it.

From your screen session, start the replay.

```
./bin/hived
```

You can speed up the replay by providing a checkpoint.  This is a combination of a block number and block id.  You can find this information from hiveblocks.com.  For example, using the current block as our target you would add the following argument.

```
./bin/hived --checkpoint [68492031,04151aff878fe5945aca7f4e9052044ecf743875]
```

This will reduce the amount of work needed to be done as it knows the hash of the checkpoint block.

---
#### Expectations

I've done some testing with replay and compression.  

Replaying without an existing block log took me 24.3 hours to complete on a Ryzen 3600 with Raid 0 2xNVME drives.

Compressing an existing block log file on Raid 0 2xNVME drives with an Intel i7 8700 took around 3.4 hours.

A compressed block log is currently 363G with a 1.6G artifact file.  If you compress an existing block_log I have noticed it to be around 10% smaller than creating it through a full sync.

I haven't tested a replay using a compressed block log, but from what I gather it should take around 8-10 hours, plus the time to download and compress the block log. 

---

<center>https://images.hive.blog/0x0/https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png </center>

[![](https://steemitimages.com/DQmPkQhAQceC7aHr4Gy5GKv7LMoiy47P7PyaNCeZBHMpFke/white-bg-with-drop-shadow.gif)](https://hivesigner.com/sign/account-witness-vote?witness=themarkymark&approve=1)   

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@themarkymark/how-to-update-your-witness-to-hardfork-26-release-canidate-3)
๐Ÿ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 900 others
๐Ÿ‘Ž  , , , , , , , , , , , ,
properties (23)
authorthemarkymark
permlinkhow-to-update-your-witness-to-hardfork-26-release-canidate-3
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["witness","hardfork26","technology","hive-engine","vyb","proofofbrain","cent","neoxian","leofinance"],"canonical_url":"https://leofinance.io/@themarkymark/how-to-update-your-witness-to-hardfork-26-release-canidate-3","links":["https://hivesigner.com/sign/account-witness-vote?witness=themarkymark&approve=1","https://leofinance.io/@themarkymark/how-to-update-your-witness-to-hardfork-26-release-canidate-3"],"image":["https://files.peakd.com/file/peakd-hive/themarkymark/23uQp8Fg9jkJ2ASGE4ka7X5h1gh3RGZMxEVPa7TimKw4R7UmYbZ1JB38WEZzg9dnuLDF1.png","https://images.hive.blog/0x0/https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png","https://steemitimages.com/DQmPkQhAQceC7aHr4Gy5GKv7LMoiy47P7PyaNCeZBHMpFke/white-bg-with-drop-shadow.gif"]}
created2022-10-05 06:37:42
last_update2022-10-06 23:42:15
depth0
children24
last_payout2022-10-12 06:37:42
cashout_time1969-12-31 23:59:59
total_payout_value89.021 HBD
curator_payout_value88.774 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,919
author_reputation1,772,860,275,441,169
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,200,266
net_rshares264,908,555,957,572
author_curate_reward""
vote details (977)
@abiatharetiko ·
This is huge! 
Thank you for sharing โค๏ธ
๐Ÿ‘  , , ,
properties (23)
authorabiatharetiko
permlinkre-themarkymark-rjbcxr
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.07.1"}
created2022-10-06 04:10:48
last_update2022-10-06 04:10:48
depth1
children1
last_payout2022-10-13 04:10:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation697,607,826,374
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,226,818
net_rshares1,635,538,408
author_curate_reward""
vote details (4)
@bcarolan639 ·
RE: RE: How to update your witness to hardfork 26 release canidate 4 (Updated)
soon are group will be upping are power a lot and nuking everyone that ever downvoted forever and start a downvote trail for the downvoters don't think it will take much persuasion to join it you guys fucked a lot of ppl out of money on a decentralized platform prob should stop.  Your going to piss enough ppl wit enough capital behind them where you wont make any money and neither will any person who is associated with you if basically everyone with some significant capital gets annoyed enough for being downvoted when there trying to self vote to raise money for good things like a fund that will have a token airdropped to everyone that is on hive and everyone will benefit from it bc it will have actual assets not be a baseless token.  Looks like i may need to access that capital i have plus friends and maybe get a club im involved in that invests in alternative investments and there collective investing power is in the billions so if i talk to them and they like my investment ideas and in order to do them and make more money we destroy this ring they will but the capital up to do it and execute it fast. or just put enough so no matter how many down votes we can always just comment put a dot and reverse it and make more.  Also just changing my accounts and have a way to just never let my shit hit your radar now that i get how it works so you wont be preventing me from making my loot anymore. Sorry.  and go f off who puts to gether shit to screw over other ppl and take money from them only a complete ass.  Let ppl do there thing im supprised  ppl have not already made it so unprofitable for you here that you and your ring leave.  Like do you make money downvoting or something if so ill just down vote you all the time and make double lol

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@bcarolan639/re-abiatharetiko-mdnlu)
properties (22)
authorbcarolan639
permlinkre-abiatharetiko-mdnlu
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["leofinance"],"canonical_url":"https://leofinance.io/@bcarolan639/re-abiatharetiko-mdnlu"}
created2023-01-27 07:17:03
last_update2023-01-27 07:17:03
depth2
children0
last_payout2023-02-03 07:17:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,866
author_reputation-2,807,258,579,589
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id120,232,888
net_rshares0
@alejandrop ·
Nice information, that's great now we can delegate some RC instead HP. Good. Thank you.
properties (22)
authoralejandrop
permlinkre-themarkymark-2022107t1572822z
categoryhive-167922
json_metadata{"tags":["witness","hardfork26","technology","hive-engine","vyb","proofofbrain","cent","neoxian","leofinance"],"app":"ecency/3.0.28-vision","format":"markdown+html"}
created2022-10-07 05:57:03
last_update2022-10-07 05:57:03
depth1
children0
last_payout2022-10-14 05:57:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation145,226,434,990,371
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,256,597
net_rshares0
@antisocialist ·
$0.03
Who needs to vote more than once per block?
๐Ÿ‘  , , , , , , ,
properties (23)
authorantisocialist
permlinkre-themarkymark-rjawcu
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.07.1"}
created2022-10-05 22:12:33
last_update2022-10-05 22:12:33
depth1
children7
last_payout2022-10-12 22:12:33
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation272,417,636,731,711
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,220,480
net_rshares46,141,451,245
author_curate_reward""
vote details (8)
@themarkymark ·
There are a lot of use cases for it. Not common for average Joe but there are use cases in trails and other automated bots. 
๐Ÿ‘  , , , ,
๐Ÿ‘Ž  , , , , , , ,
properties (23)
authorthemarkymark
permlinkre-antisocialist-rjaxml
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.07.1"}
created2022-10-05 22:39:57
last_update2022-10-05 22:39:57
depth2
children6
last_payout2022-10-12 22:40:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation1,772,860,275,441,169
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,221,009
net_rshares-614,160,249,258
author_curate_reward""
vote details (13)
@antisocialist ·
$0.02
Lovely.
Did they set a new limit?
๐Ÿ‘  , , , , ,
properties (23)
authorantisocialist
permlinkre-themarkymark-rjaxs8
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.07.1"}
created2022-10-05 22:43:21
last_update2022-10-05 22:43:21
depth3
children4
last_payout2022-10-12 22:43:21
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation272,417,636,731,711
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,221,062
net_rshares37,197,252,394
author_curate_reward""
vote details (6)
@networkallstar ·
WOW!!!! 

150 bucks on such a high effort post! I recommend newsflash, xeldal and enki kick your ass and nuke this ๐Ÿ’ฉ. Exactly the same way you did it to hundreds of bloggers (including me) here on Hive!
Karma is such a beauty you degenerate downvoting POS....

UPDATE! 181 bucks!!!!! You must be excited to be getting paid out.... Oooooohhhh wait...!!! They gonna nuke you just before payout.... And you were soooooo excited DH...... xD I'm so sorry.... NOT!

I hope and wish your posts and comments never ever again see the light of day... You say, you don't give a ๐Ÿ’ฉ, but we both know better... Don't we..? ;D

Have yourself a crappy day DF!  ( ๏ธถ๏ธฟ๏ธถ)_โ•ญโˆฉโ•ฎ

https://img.blurt.world/blurtimage/outofthematrix/ea1aa67809d1f9ea1ca4a496c08f6d0548e858da.png
______________________________
PS everybody: DON'T VOTE THIS DOWNVOTING POS AS WITNESS! HE SUCKS.... VOTE EVERYBODY ELSE... JUST NOT HIM!!! ;D 

TAKE A GOOD LOOK AT MY ACCOUNT PEOPLE! IT IS PROOF, THAT DPOS WITH A DOWNVOTE BUTTON DOESN'T WORK BCOZ OF DHs LIKE THEFARTYFART !!!
_______________________________
https://img.blurt.world/blurtimage/outofthematrix/40ab8d07a2c63a498a7ec58d7051edeab5978f5d.jpg
๐Ÿ‘Ž  
properties (23)
authornetworkallstar
permlinkrjlckx
categoryhive-167922
json_metadata{"image":["https://img.blurt.world/blurtimage/outofthematrix/ea1aa67809d1f9ea1ca4a496c08f6d0548e858da.png","https://img.blurt.world/blurtimage/outofthematrix/40ab8d07a2c63a498a7ec58d7051edeab5978f5d.jpg"],"app":"hiveblog/0.1"}
created2022-10-11 13:38:57
last_update2022-10-11 13:38:57
depth3
children0
last_payout2022-10-18 13:38:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,155
author_reputation-6,043,364,106,826
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,382,712
net_rshares-466,515,375,406
author_curate_reward""
vote details (1)
@bcarolan639 ·
RE: How to update your witness to hardfork 26 release canidate 4 (Updated)
Anyone wanting to stop this shit DM me and we will form a group to combine are attacks against posts so our power cant be stopped by the few.  plus ill get my capital upped


Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@bcarolan639/re-themarkymark-5ljity)
properties (22)
authorbcarolan639
permlinkre-themarkymark-5ljity
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["leofinance"],"canonical_url":"https://leofinance.io/@bcarolan639/re-themarkymark-5ljity"}
created2023-01-27 07:18:57
last_update2023-01-27 07:18:57
depth1
children0
last_payout2023-02-03 07:18:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length275
author_reputation-2,807,258,579,589
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id120,232,897
net_rshares0
@gadrian ·
Almost there! Anxious about RC delegation, which will help me better manage my accounts, besides their benefits to the apps!
๐Ÿ‘  , , , ,
properties (23)
authorgadrian
permlinkre-themarkymark-rj9wlc
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.07.1"}
created2022-10-05 09:20:03
last_update2022-10-05 09:20:03
depth1
children0
last_payout2022-10-12 09:20:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length124
author_reputation628,417,529,978,192
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,203,546
net_rshares1,946,189,747
author_curate_reward""
vote details (5)
@heskay ·
This you shared is informative, thanks for sharing this piece 
๐Ÿ‘  , , , , , , , , , , , , ,
properties (23)
authorheskay
permlinkre-themarkymark-2022105t74311508z
categoryhive-167922
json_metadata{"tags":["witness","hardfork26","technology","hive-engine","vyb","proofofbrain","cent","neoxian","leofinance"],"app":"ecency/3.0.28-vision","format":"markdown+html"}
created2022-10-05 06:43:12
last_update2022-10-05 06:43:12
depth1
children0
last_payout2022-10-12 06:43:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation81,253,609,298,220
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,200,376
net_rshares1,934,803,035
author_curate_reward""
vote details (14)
@howzat ·
RE: How to update your witness to hardfork 26 release canidate 3
Good to see you around mate :) 

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@howzat/re-themarkymark-qkxhq)
๐Ÿ‘  , , ,
properties (23)
authorhowzat
permlinkre-themarkymark-qkxhq
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["leofinance"],"canonical_url":"https://leofinance.io/@howzat/re-themarkymark-qkxhq"}
created2022-10-05 18:20:30
last_update2022-10-05 18:20:30
depth1
children0
last_payout2022-10-12 18:20:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation45,591,344,077,992
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,215,262
net_rshares1,620,202,741
author_curate_reward""
vote details (4)
@lallo ·
Thank you very much for this post. So the replay is mandatory due to the new compressed block_log?
properties (22)
authorlallo
permlinkre-themarkymark-rjgoin
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.07.1"}
created2022-10-09 01:08:48
last_update2022-10-09 01:08:48
depth1
children2
last_payout2022-10-16 01:08:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation17,910,471,277,968
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,314,690
net_rshares0
@themarkymark ·
$0.87
properties (23)
authorthemarkymark
permlinkre-lallo-rjgojt
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.07.1"}
created2022-10-09 01:09:36
last_update2022-10-09 01:09:36
depth2
children1
last_payout2022-10-16 01:09:36
cashout_time1969-12-31 23:59:59
total_payout_value0.436 HBD
curator_payout_value0.434 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation1,772,860,275,441,169
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,314,708
net_rshares1,385,753,897,297
author_curate_reward""
vote details (10)
@lallo ·
Ok understood! Thank for the replay.
Crypto On!! 
properties (22)
authorlallo
permlinkre-themarkymark-rjhi36
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.07.1"}
created2022-10-09 11:47:39
last_update2022-10-09 11:47:39
depth3
children0
last_payout2022-10-16 11:47:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation17,910,471,277,968
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,324,631
net_rshares0
@mcsamm ·
We cant wait for the amazing improvement this comes with.
๐Ÿ‘  , , ,
properties (23)
authormcsamm
permlinkre-themarkymark-rjak68
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.07.1"}
created2022-10-05 17:49:42
last_update2022-10-05 17:49:42
depth1
children0
last_payout2022-10-12 17:49:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation1,528,172,890,617,538
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,214,559
net_rshares1,622,255,355
author_curate_reward""
vote details (4)
@megalithic ·
So, as much as I enjoy alluding to the whole AI mirror force retribution thing, I do think it's worth setting that aside for long enough to mention that I sincerely appreciate the effort involved in being a competent and legitimate hive witness, even if you *technically* have some vested interest in doing so, and I also appreciate your relatively bulletproof demeanor in combination with that position, so thanks. 
๐Ÿ‘  
properties (23)
authormegalithic
permlinkre-themarkymark-rlw956
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.11.1"}
created2022-11-25 08:05:36
last_update2022-11-25 08:05:36
depth1
children0
last_payout2022-12-02 08:05:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length416
author_reputation1,103,503,583,720
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,600,176
net_rshares822,202,394
author_curate_reward""
vote details (1)
@networkallstar · (edited)
WOW!!!! 

150 bucks on such a high effort post! I recommend newsflash, xeldal and enki kick your ass and nuke this ๐Ÿ’ฉ. Exactly the same way you did it to hundreds of bloggers (including me) here on Hive!
Karma is such a beauty you degenerate downvoting POS....

UPDATE! 181 bucks!!!!! You must be excited to be getting paid out.... Oooooohhhh wait...!!! They gonna nuke you just before payout.... And you were soooooo excited DH...... xD I'm so sorry.... NOT!

I hope and wish your posts and comments never ever again see the light of day... You say, you don't give a ๐Ÿ’ฉ, but we both know better... Don't we..? ;D

Have yourself a crappy day DF!  ( ๏ธถ๏ธฟ๏ธถ)_โ•ญโˆฉโ•ฎ

https://img.blurt.world/blurtimage/outofthematrix/ea1aa67809d1f9ea1ca4a496c08f6d0548e858da.png
______________________________
PS everybody: DON'T VOTE THIS DOWNVOTING POS AS WITNESS! HE SUCKS.... VOTE EVERYBODY ELSE... JUST NOT HIM!!! ;D 

TAKE A GOOD LOOK AT MY ACCOUNT PEOPLE! IT IS PROOF, THAT DPOS WITH A DOWNVOTE BUTTON DOESN'T WORK BCOZ OF DHs LIKE THEFARTYFART !!!
_______________________________
https://img.blurt.world/blurtimage/outofthematrix/40ab8d07a2c63a498a7ec58d7051edeab5978f5d.jpg
๐Ÿ‘Ž  ,
properties (23)
authornetworkallstar
permlinkrjbxnm
categoryhive-167922
json_metadata{"image":["https://img.blurt.world/blurtimage/outofthematrix/40ab8d07a2c63a498a7ec58d7051edeab5978f5d.jpg","https://img.blurt.world/blurtimage/outofthematrix/ea1aa67809d1f9ea1ca4a496c08f6d0548e858da.png"],"app":"hiveblog/0.1"}
created2022-10-06 11:38:09
last_update2022-10-11 11:34:57
depth1
children0
last_payout2022-10-13 11:38:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,155
author_reputation-6,043,364,106,826
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,234,325
net_rshares-467,016,878,546
author_curate_reward""
vote details (2)
@oflyhigh ·
Thanks for sharing this helpful information๐Ÿ‘
๐Ÿ‘  , , ,
properties (23)
authoroflyhigh
permlinkrja9g9
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-10-05 13:57:48
last_update2022-10-05 13:57:48
depth1
children0
last_payout2022-10-12 13:57:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation6,249,847,369,786,126
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,209,440
net_rshares1,628,386,659
author_curate_reward""
vote details (4)
@poshtoken · (edited)
$0.19
https://twitter.com/Kublai84638557/status/1577557003190296578
https://twitter.com/taskmaster4450/status/1577663625426247681
https://twitter.com/alok9811/status/1577777306818711552
<sub> The rewards earned on this comment will go directly to the people( @yeckingo1, @taskmaster4450le, @alokkumar121 ) sharing the post on Twitter as long as they are registered with @poshtoken. Sign up at https://hiveposh.com.</sub>
๐Ÿ‘  , , ,
properties (23)
authorposhtoken
permlinkre-themarkymark-how-to-update-your-witness-to-hardfork-26-release--5554
categoryhive-167922
json_metadata"{"app":"Poshtoken 0.0.1","payoutToUser":["yeckingo1","taskmaster4450le","alokkumar121"]}"
created2022-10-05 07:15:24
last_update2022-10-05 21:51:09
depth1
children0
last_payout2022-10-12 07:15:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.186 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length415
author_reputation5,138,707,486,311,744
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries
0.
accountreward.app
weight10,000
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id117,201,002
net_rshares558,200,918,897
author_curate_reward""
vote details (4)
@woodathegsd ·
Super awesome knowledge and thank you very much for posting this here and I can't wait to see the new changes our blockchain has and thank you very much.

Easiest way I see for small accounts operating in the future happens to be investing in themselves. Which is very smart idea as well as Resource Credit delegation for newer accounts to have an opportunity to invest in themselves. 

Excellent post and two paws up! 

Definitely dog approved!


![IMG_20221005_101210250.jpg](https://files.peakd.com/file/peakd-hive/woodathegsd/Eqd8WAjQNf85myksyTawwLHKsH99EEEXvHskisAyXzZHmHpN3QThMKkKbt7LeFeyvdw.jpg)
๐Ÿ‘  , , , ,
properties (23)
authorwoodathegsd
permlinkre-themarkymark-rjaj1b
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.07.1"}
created2022-10-05 17:24:48
last_update2022-10-05 17:24:48
depth1
children0
last_payout2022-10-12 17:24:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length603
author_reputation8,410,290,101,774
root_title"How to update your witness to hardfork 26 release canidate 4 (Updated)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id117,214,073
net_rshares1,925,606,037
author_curate_reward""
vote details (5)