The date of the next, 21st HardFork, has been set, and it is approaching quickly. There's plenty of info around the web on how to build a Steem node from scratch. I also wrote a guide some time ago: [Steem Pressure #3: Steem Node 101](/@gtg/steem-pressure-3-steem-node-101). But the trouble is that such tutorials are getting old and obsolete. My previous one was made for version 19 at its early development stages. Now, we have version 21 released, so it is a good opportunity for an update. <center> https://www.youtube.com/watch?v=7IkI6yVvzHI<sup>Video created for [Steem Pressure](https://steemit.com/created/steem-pressure) series.</sup> </center> # Hardware Nothing fancy. Actually we will use something reasonably modest and cheap. Meet the **`mirabelle`**: **Intel Xeon CPU W3530 @2.80GHz** **16GB DDR3 ECC 1333MHz RAM** **2x 240GB SSD** # Operating system Ubuntu 18.04 LTS Clean, basic server install. No fancy tweaks or customizations. `/home` is **RAID0** because we need speed and space. In the case of a failure, we just use a new one. # Let's Go Few steps needs to be done as `root`: ###### Make sure that your system is up to date: `apt update && apt upgrade` ###### Use `ntp` or `chrony` to keep your system clock in sync: `apt install ntp` ###### Create an account for steem purposes: `useradd -s /bin/bash -m steem` ###### Set appropriate values for open files limits needed by MIRA: ``` cat << 'EOF' >> /etc/security/limits.conf steem soft nofile 65535 steem hard nofile 65535 EOF ```  ###### Install packages needed for building Steem: ``` apt install \ automake \ build-essential \ cmake \ doxygen \ libbz2-dev \ libboost-date-time-dev \ libboost-chrono-dev \ libboost-context-dev \ libboost-coroutine-dev \ libboost-filesystem-dev \ libboost-iostreams-dev \ libboost-locale-dev \ libboost-program-options-dev \ libboost-serialization-dev \ libboost-system-dev \ libboost-test-dev \ libboost-thread-dev \ libreadline-dev \ libsnappy-dev \ libssl-dev \ libtool \ ncurses-dev ``` ###### Now we continue as a user `steem`: `su - steem` ###### Clone the steem repository: `git clone https://github.com/steemit/steem` ###### Checkout the latest release: `cd steem` `git checkout v0.21.0` ###### Create build directory: `mkdir ~/build` ###### Configure steem build: `cd ~/build` ``` cmake -DCMAKE_BUILD_TYPE=Release \ -DLOW_MEMORY_NODE=ON \ -DCLEAR_VOTES=ON \ -DSKIP_BY_TX_ID=OFF \ -DENABLE_MIRA=ON \ -DSTEEM_STATIC_BUILD=ON \ ../steem ```  ##### Build `steemd`: `make -j4 steemd`  ###### Build `cli_wallet`: `make -j4 cli_wallet` ###### Create local bin directory for convenience: `mkdir ~/bin` ###### Copy `steemd` and `cli_wallet` binaries to local bin directory: `cp -v ~/build/programs/steemd/steemd ~/bin` `cp -v ~/build/programs/cli_wallet/cli_wallet ~/bin` ###### Congratulations! `~/bin/steemd --version` Now you have required binaries. Time to configure and run your node. ###### Create proper directory tree: `mkdir -pv ~/.steemd/blockchain` ###### Create minimalistic config file for consensus node: ``` cat << 'EOF' >> ~/.steemd/config.ini plugin = witness plugin = condenser_api network_broadcast_api block_api webserver-http-endpoint = 127.0.0.1:8090 webserver-ws-endpoint = 127.0.0.1:8090 EOF ```  Yes, you really don't need more than that for a very basic node defaults are OK. To speed up reaching the head block: ###### Download blocks from a trusted source: ``` wget https://gtg.steem.house/get/blockchain/block_log \ -O ~/.steemd/blockchain/block_log ```  ###### Now run: `~/bin/steemd --replay` and have fun! This configuration is expected to reach the head block within 72 hours. # Footnotes: - You might want to run above inside `screen`. - Once it replays all the blocks from `block_log`, it will sync with Steem p2p network up to the head block and continue running. - Next time start `steemd` without `--replay`. You need to do that only if your changes will affect the state (such as adding or re-configuring plugins). - You might want to add `account_by_key` (for `cli_wallet`’s `list_my_accounts` feature) and `account_history` (to track your own account history) but in this guide I wanted to focus on a simplest case. - You need to wait for replay to complete before you can use API endpoint. # Previous episodes of Steem Pressure series [Introducing: Steem Pressure #1](/@gtg/introducing-steem-pressure-1) [Steem Pressure #2 - Toys for Boys and Girls](/@gtg/steem-pressure-2-toys-for-boys-and-girls) [Steem Pressure #3 - Steem Node 101](/@gtg/steem-pressure-3-steem-node-101) [Steem Pressure: The Movie ;-)](/@gtg/steem-pressure-the-movie) [Steem Pressure #4 - Need for Speed](/@gtg/steem-pressure-4-need-for-speed) [Steem Pressure #5 - Run, Block, Run!](/@gtg/steem-pressure-5-run-block-run) [Steem Pressure #6 - MIRA: YMMV, RTFM, TLDR: LGTM](/@gtg/steem-pressure-6-mira-ymmv-rtfm-tldr-lgtm) Stay tuned for next episodes of Steem Pressure :-) --- <sup> If you believe I can be of value to Steem, please vote for me ([**gtg**](/@gtg)) as a witness on [Steemit's Witnesses List](https://steemitwallet.com/~witnesses) or set ([**gtg**](/@gtg)) as a proxy that will vote for witnesses for you. ***Your vote does matter!*** You can contact me directly on [steem.chat](https://steem.chat), as [Gandalf](https://steem.chat/direct/gandalf) </sup> <center> https://steemitimages.com/DQmSheuDfCHizk1xvHPcrFjQNKfBzgun9UXDxdEp6JJCum9/steem_wide.png [Steem On](/) </center>
author | gtg |
---|---|
permlink | steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure","steem","dev","witness-category","palnet"],"image":["https://img.youtube.com/vi/7IkI6yVvzHI/0.jpg","https://cdn.steemitimages.com/DQmNdB8P3krYeCKN7nSW5EPTU2JcSRxLbSFRPgYX1qyv8CW/limits-conf.gif","https://cdn.steemitimages.com/DQmer9Kr9r3TgxJZVmoKTx4xPHuf8pZh3iYimrKULfjCGSL/git-checkout-cmake.gif","https://cdn.steemitimages.com/DQmUGjqx58Q68SYQAYi3aGZksXuy3LNbzUmzpUG9TTta238/build-steemd.gif","https://cdn.steemitimages.com/DQmfJxAnAk2jvJMEoo3U3ivLDhie3vPvXxmSU8RfFLMrYcQ/config-ini.gif","https://cdn.steemitimages.com/DQmU7ctGwLErG6D3dTXyFeRgGxes3zXqq9KEXP52bvT1645/block_log.gif","https://steemitimages.com/DQmSheuDfCHizk1xvHPcrFjQNKfBzgun9UXDxdEp6JJCum9/steem_wide.png"],"links":["/@gtg/steem-pressure-3-steem-node-101","https://www.youtube.com/watch?v=7IkI6yVvzHI","https://steemit.com/created/steem-pressure","/@gtg/introducing-steem-pressure-1","/@gtg/steem-pressure-2-toys-for-boys-and-girls","/@gtg/steem-pressure-the-movie","/@gtg/steem-pressure-4-need-for-speed","/@gtg/steem-pressure-5-run-block-run","/@gtg/steem-pressure-6-mira-ymmv-rtfm-tldr-lgtm","/@gtg","https://steemitwallet.com/~witnesses","https://steem.chat","https://steem.chat/direct/gandalf","/"],"app":"steemit/0.1","format":"markdown"} |
created | 2019-08-15 21:36:03 |
last_update | 2019-08-15 21:36:03 |
depth | 0 |
children | 53 |
last_payout | 2019-08-22 21:36:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 63.538 HBD |
curator_payout_value | 19.637 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.220 HBD |
body_length | 6,102 |
author_reputation | 461,802,207,065,183 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,573,984 |
net_rshares | 251,736,241,949,793 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blocktrades | 0 | 121,289,187,432,321 | 100% | ||
pharesim | 0 | 1,007,079,197,140 | 100% | ||
tombstone | 0 | 26,785,079,952 | 0.1% | ||
bue | 0 | 2,260,180,222,578 | 100% | ||
gandalf | 0 | 16,927,233,810 | 100% | ||
fusan | 0 | 39,559,544,350 | 51% | ||
makishart | 0 | 4,720,202,253 | 99% | ||
kevinwong | 0 | 40,528,613,570 | 0.5% | ||
beerbloke | 0 | 3,786,760,180 | 5% | ||
ola-haukland | 0 | 24,381,192,204 | 100% | ||
geoffrey | 0 | 2,634,859,658,163 | 100% | ||
honeythief | 0 | 73,502,242,811 | 100% | ||
mammasitta | 0 | 84,416,775,778 | 20% | ||
gtg | 0 | 14,983,616,842,048 | 100% | ||
roelandp | 0 | 105,251,533,840 | 10% | ||
okkiedot | 0 | 8,730,017,395 | 25% | ||
yury-vas | 0 | 2,746,731,602 | 1% | ||
ausbitbank | 0 | 1,736,917,968,674 | 100% | ||
inertia | 0 | 41,488,341,904 | 100% | ||
arcange | 0 | 20,591,985,165 | 2% | ||
dimon14 | 0 | 26,176,459,467 | 87% | ||
bowess | 0 | 176,312,385,265 | 100% | ||
arconite | 0 | 127,665,381 | 0.25% | ||
raphaelle | 0 | 581,797,069 | 2% | ||
joythewanderer | 0 | 372,086,146,557 | 51% | ||
daynewright | 0 | 17,259,287,078 | 50% | ||
logic | 0 | 43,943,224,647 | 100% | ||
steempress | 0 | 528,777,624,377 | 100% | ||
felixxx | 0 | 516,926,363,271 | 100% | ||
thebluepanda | 0 | 174,349,081,403 | 100% | ||
timcliff | 0 | 829,419,076,966 | 84% | ||
yoshiko | 0 | 1,045,930,483,952 | 100% | ||
jphamer1 | 0 | 4,539,131,346,312 | 100% | ||
hanshotfirst | 0 | 505,689,335,285 | 10% | ||
lemouth | 0 | 515,249,674,526 | 100% | ||
jsantana | 0 | 377,196,469 | 15% | ||
netaterra | 0 | 48,766,564,325 | 41% | ||
steemitpatina | 0 | 21,697,375,069 | 80% | ||
hotgirlktm | 0 | 165,751,947 | 100% | ||
krnel | 0 | 1,882,482,899,229 | 100% | ||
holoz0r | 0 | 285,645,188,286 | 100% | ||
xanoxt | 0 | 10,626,074,032 | 5% | ||
aggroed | 0 | 2,071,980,622,493 | 100% | ||
yuriks2000 | 0 | 5,823,792,796 | 100% | ||
whatsup | 0 | 92,426,547,408 | 25% | ||
justyy | 0 | 106,502,118,161 | 4.06% | ||
natubat | 0 | 10,941,277,038 | 12% | ||
fukako | 0 | 309,790,937 | 10% | ||
schattenjaeger | 0 | -15,329,266,176 | -100% | ||
dylanhobalart | 0 | 48,520,436,512 | 80% | ||
samrg472 | 0 | 10,300,338,879 | 75% | ||
steemtruth | 0 | 6,204,282,903 | 30% | ||
barton26 | 0 | 10,928,384,675 | 100% | ||
jaki01 | 0 | 3,126,566,003,908 | 100% | ||
garethnelsonuk | 0 | 8,259,813,916 | 100% | ||
ebryans | 0 | 1,531,037,475 | 100% | ||
jamzed | 0 | 100,750,309,409 | 100% | ||
ultraseven | 0 | 290,162,261,036 | 100% | ||
felix.herrmann | 0 | 5,265,712,148 | 20% | ||
notdavemate | 0 | 7,883,157,770 | 100% | ||
anzirpasai | 0 | 4,966,587,558 | 100% | ||
enjoykarma | 0 | 12,861,169,819 | 100% | ||
libert | 0 | 5,007,947,097 | 100% | ||
v4vapid | 0 | 14,299,707,546,337 | 100% | ||
anthonyadavisii | 0 | 8,512,603,326 | 5% | ||
chromiumone | 0 | 13,818,936,900 | 100% | ||
afrog | 0 | 242,825,411,367 | 100% | ||
newhope | 0 | 2,490,586,337,756 | 29% | ||
lindal | 0 | 2,193,703,508 | 100% | ||
kobold-djawa | 0 | 221,274,956,625 | 100% | ||
distantsignal | 0 | 151,815,164,439 | 100% | ||
siriusgaia | 0 | 109,974,356 | 10% | ||
borislavzlatanov | 0 | 117,498,650,219 | 100% | ||
decentral | 0 | 39,901,099,600 | 100% | ||
lizanomadsoul | 0 | 77,032,641,768 | 50% | ||
bootyp | 0 | 281,402,698 | 100% | ||
davidorcamuriel | 0 | 740,412,090,173 | 100% | ||
imperfect-one | 0 | 12,894,233,174 | 25% | ||
ma1neevent | 0 | 29,534,962,823 | 31% | ||
bloom | 0 | 453,904,482,473 | 100% | ||
stefanmilde | 0 | 110,187,276 | 11% | ||
mes | 0 | 267,866,366,132 | 50% | ||
morph | 0 | 823,332,844 | 8% | ||
bargolis | 0 | 17,252,882,860 | 100% | ||
forykw | 0 | 34,357,656,471 | 20% | ||
steemchiller | 0 | 350,349,972,391 | 100% | ||
followbtcnews | 0 | 991,749,900,004 | 100% | ||
rt395 | 0 | 617,276,516 | 5% | ||
jkkim | 0 | 26,958,324 | 10% | ||
swelker101 | 0 | 46,368,429,194 | 100% | ||
mys | 0 | 52,005,778,245 | 25% | ||
fredrikaa | 0 | 371,507,958,125 | 100% | ||
jga | 0 | 0 | 100% | ||
khunfarang | 0 | 461,108,315 | 100% | ||
guiltyparties | 0 | 143,062,232,632 | 50% | ||
kinakomochi | 0 | 232,957,500,716 | 100% | ||
isaria | 0 | 83,494,792,983 | 25% | ||
khunpoom | 0 | 255,429,611 | 50% | ||
berlinmoonlight | 0 | 533,738,153 | 100% | ||
wishmaiden | 0 | 37,333,498 | 5% | ||
jeanpi1908 | 0 | 109,644,307,726 | 85% | ||
mahdiyari | 0 | 204,224,046,041 | 100% | ||
crimsonclad | 0 | 467,131,733,667 | 100% | ||
jackmiller | 0 | 80,046,009,983 | 100% | ||
drakos | 0 | 3,481,221,916,521 | 100% | ||
paulag | 0 | 84,298,257,876 | 13.75% | ||
kenanqhd | 0 | 502,068,568,970 | 100% | ||
jayna | 0 | 17,355,289,998 | 20% | ||
vieanna | 0 | 235,672,036,991 | 100% | ||
m31 | 0 | 658,034,749,227 | 100% | ||
erikpro007 | 0 | 354,370,461 | 100% | ||
britcoins | 0 | 1,461,713,429 | 100% | ||
haiyangdeperci | 0 | 7,256,487,896 | 20% | ||
bubke | 0 | 226,762,766,122 | 100% | ||
eturnerx | 0 | 29,434,626,020 | 45% | ||
abdulshakun | 0 | 136,897,398 | 100% | ||
discordiant | 0 | 22,335,261,304 | 100% | ||
nolasco | 0 | 1,408,288,046 | 10% | ||
jacekw | 0 | 26,582,135,717 | 100% | ||
grecki-bazar-ewy | 0 | 23,683,674,584 | 50% | ||
giosou | 0 | 24,923,447,695 | 100% | ||
rafalski | 0 | 4,346,228,929 | 100% | ||
karencarrens | 0 | 13,847,911,272 | 100% | ||
howo | 0 | 70,628,855,480 | 100% | ||
themarkymark | 0 | 6,953,709,946,343 | 100% | ||
flygoing | 0 | 257,841,080 | 100% | ||
marian0 | 0 | 6,957,407,990 | 100% | ||
sippi601 | 0 | 400,180,389 | 100% | ||
everrich | 0 | 1,024,114,125 | 80% | ||
yoogyart | 0 | 12,147,774,505 | 41% | ||
vikisecrets | 0 | 301,460,420,228 | 30% | ||
taintedblood | 0 | 728,894,363 | 50% | ||
onethousandwords | 0 | 1,641,823,388 | 50% | ||
martibis | 0 | 9,002,749,268 | 75% | ||
ayubloaded | 0 | 1,741,592,482 | 100% | ||
crypto-whiz | 0 | 704,628,963 | 100% | ||
alcik | 0 | 19,793,480,847 | 100% | ||
horpey | 0 | 284,743,420,025 | 100% | ||
moromaro | 0 | 123,183,213,291 | 100% | ||
endracsho | 0 | 3,693,235,006 | 100% | ||
zest | 0 | 18,432,011,198 | 100% | ||
shogo | 0 | 118,778,968,976 | 100% | ||
my451r | 0 | 8,115,205,788 | 100% | ||
karja | 0 | 118,306,736,655 | 7% | ||
lokiyngling | 0 | 0 | 5% | ||
apasia.tech | 0 | 1,296,814,466 | 100% | ||
joshman | 0 | 268,375,063,236 | 18.75% | ||
jamesbarraclough | 0 | 660,313,494 | 100% | ||
scorer | 0 | 208,422,179,626 | 100% | ||
nakedtrader | 0 | 195,491,191 | 100% | ||
ace69 | 0 | 2,850,805,245 | 50% | ||
steemitworldmap | 0 | 0 | 0% | ||
xiaoshancun | 0 | 9,972,022,282 | 100% | ||
steembet.asia | 0 | 455,773,342 | 100% | ||
yabapmatt | 0 | 4,819,551,602,196 | 100% | ||
jlsplatts | 0 | 159,187,367,284 | 100% | ||
afukichi | 0 | 13,753,990,093 | 100% | ||
steemflower | 0 | 102,954,798,564 | 50% | ||
mamqmuqit | 0 | 762,802,125 | 100% | ||
morahn | 0 | 3,117,841,016 | 50% | ||
artem.timofeev | 0 | 369,403,828 | 100% | ||
wilkynson | 0 | 341,195,101 | 25% | ||
fedesox | 0 | 477,591,771,977 | 30% | ||
phoenixwren | 0 | 27,966,886,488 | 52% | ||
kimchi-king | 0 | 1,253,091,496 | 50% | ||
unterwegs | 0 | 7,287,084,269 | 100% | ||
mslily | 0 | 399,513,441 | 100% | ||
morwhalebox | 0 | 66,853,786 | 100% | ||
morwhalebonus | 0 | 784,738,181 | 100% | ||
morwhalered | 0 | 143,680,311 | 100% | ||
kinakomochi2017 | 0 | 243,106,442 | 50% | ||
axeman | 0 | 3,474,916,921 | 10% | ||
steef-05 | 0 | 13,085,115,301 | 50% | ||
hachmanisabir | 0 | 521,672,071 | 100% | ||
omstavan | 0 | 2,772,365,801 | 100% | ||
emrebeyler | 0 | 653,371,788,010 | 100% | ||
seanlloyd | 0 | 184,322,483 | 1% | ||
sho-t | 0 | 4,135,277,828 | 10% | ||
bocik | 0 | 20,838,009,438 | 100% | ||
craigahamilton | 0 | 1,383,415,485 | 25% | ||
etherpunk | 0 | 52,271,130,147 | 25.5% | ||
bestgift | 0 | 4,078,696,815 | 100% | ||
mfxae86 | 0 | 36,848,587,373 | 100% | ||
mytechtrail | 0 | 3,414,328,066 | 25% | ||
wallacecarranza | 0 | 429,233,842 | 100% | ||
open-asset | 0 | 203,856,051 | 50% | ||
ocupation | 0 | 61,603,732,983 | 100% | ||
astromaniak | 0 | 9,844,853,012 | 20% | ||
ecoman1 | 0 | 526,640,218 | 100% | ||
lpv | 0 | 16,131,578,750 | 45% | ||
lyon89 | 0 | 12,420,579,427 | 50% | ||
nikosnitza | 0 | 7,874,413,400 | 100% | ||
aitommylr | 0 | 6,114,725,625 | 25% | ||
tomatom | 0 | 1,819,876,629 | 50% | ||
peter.goki | 0 | 0 | 100% | ||
steemit-jp | 0 | 414,792,609,875 | 100% | ||
r00sj3 | 0 | 3,488,928,742 | 10% | ||
neexal | 0 | 175,901,613 | 50% | ||
build3-casole | 0 | 289,814,008 | 100% | ||
chriddi | 0 | 268,333,779,951 | 44% | ||
alebeta | 0 | 2,231,361,823 | 100% | ||
payger | 0 | 4,186,930,183 | 50% | ||
highonthehog | 0 | 31,977,088,779 | 100% | ||
ddrfr33k | 0 | 30,142,155,048 | 100% | ||
hijosdelhombre | 0 | 40,703,706,981 | 50% | ||
boggan | 0 | 99,404,519 | 38% | ||
remizer | 0 | 337,817,791 | 50% | ||
howweroll | 0 | 4,543,373,875 | 100% | ||
fracasgrimm | 0 | 3,595,563,117 | 100% | ||
manncpt | 0 | 7,029,468,749 | 25% | ||
hania67 | 0 | 456,108,081 | 100% | ||
marc-allaria | 0 | 1,718,840,332 | 5% | ||
sweetjoy | 0 | 186,706,285 | 100% | ||
jnmarteau | 0 | 4,422,337,162 | 50% | ||
gandalfthewhite | 0 | 787,178,785 | 100% | ||
kubak | 0 | 65,594,634,928 | 80% | ||
sargoon | 0 | 5,794,279,033 | 50% | ||
shaidon | 0 | 35,427,882,757 | 100% | ||
steem-hikers | 0 | 1,005,740,538 | 25% | ||
haydae | 0 | 9,575,973,957 | 50% | ||
icuz | 0 | 1,972,351,503 | 100% | ||
srikandi | 0 | 750,797,576 | 100% | ||
holger80 | 0 | 1,531,390,628,861 | 73.34% | ||
htann | 0 | 522,782,497 | 100% | ||
svemirac | 0 | 264,944,503,299 | 100% | ||
marcon | 0 | 89,663,216,989 | 100% | ||
nameless-berk | 0 | 212,671,644 | 25% | ||
wwwfernand | 0 | 218,714,410 | 100% | ||
mgzayyar | 0 | 29,505,639,449 | 100% | ||
pkocjan | 0 | 15,546,771,877 | 100% | ||
kroby31 | 0 | 4,889,085,172 | 100% | ||
mindscapephotos | 0 | 410,079,264 | 35% | ||
lintang | 0 | 1,003,088,586 | 100% | ||
tuts | 0 | 541,584,364 | 100% | ||
barge | 0 | 96,629,827,427 | 100% | ||
asgarth | 0 | 976,944,327,649 | 100% | ||
jagoe | 0 | 8,966,262,336 | 12% | ||
steemitbae | 0 | 29,777,673,422 | 100% | ||
tonytrillions | 0 | 38,966,097,712 | 100% | ||
cryptofuwealth | 0 | 79,320,214 | 11% | ||
backinblackdevil | 0 | 49,116,219,700 | 10% | ||
clm | 0 | 13,861,533,382 | 100% | ||
sarmaticus | 0 | 13,588,105,448 | 45% | ||
properfraction | 0 | 3,413,471,297 | 100% | ||
lifetoday | 0 | 148,938,820 | 100% | ||
jvpengine | 0 | 247,486,507 | 50% | ||
rocki | 0 | 456,589,173 | 100% | ||
steem-hikers-pl | 0 | 239,801,659 | 25% | ||
tolgahanuzun | 0 | 20,610,160,688 | 100% | ||
wilfredn | 0 | 793,548,727 | 100% | ||
beleg | 0 | 9,742,102,562 | 25% | ||
schlafhacking | 0 | 236,733,151,016 | 100% | ||
siddharthrout | 0 | 467,366,656 | 100% | ||
ivansnz | 0 | 20,093,388,699 | 8% | ||
herbacianymag | 0 | 18,524,772,692 | 100% | ||
faltermann | 0 | 50,027,102,763 | 40% | ||
mac128k | 0 | 151,803,526 | 100% | ||
sallyfun | 0 | 29,955,317,922 | 100% | ||
gadrian | 0 | 117,122,551,944 | 100% | ||
sensorycznyswiat | 0 | 164,452,280 | 27% | ||
bukfast | 0 | 956,159,546 | 100% | ||
practicalthought | 0 | 25,391,778,770 | 100% | ||
hnnlkse | 0 | 121,382,831 | 100% | ||
ldh1109 | 0 | 320,509,978 | 100% | ||
tarachan99 | 0 | 548,828,265 | 100% | ||
andreasgrubhofer | 0 | 114,653,296,682 | 93% | ||
kacperski | 0 | 158,331,031 | 25% | ||
solominer | 0 | 157,160,709,206 | 100% | ||
ideamachine | 0 | 155,221,709 | 50% | ||
opt2o | 0 | 650,299,992 | 25% | ||
rozku | 0 | 45,602,665,081 | 100% | ||
archetypal | 0 | 181,059,116 | 25% | ||
ellaaa | 0 | 548,505,683 | 100% | ||
atanas007 | 0 | 6,045,443,892 | 100% | ||
jasuly | 0 | 1,290,820,809 | 100% | ||
blockchainstudio | 0 | 176,429,420,416 | 100% | ||
variola | 0 | 246,392,728,152 | 100% | ||
maxwellnewlife7 | 0 | 1,369,529,046 | 100% | ||
onethousandpics | 0 | 1,367,093,605 | 50% | ||
gracelbm | 0 | 10,784,058,143 | 100% | ||
barbaross | 0 | 535,012,467 | 100% | ||
sameeryousaf | 0 | 536,018,015 | 100% | ||
juliame | 0 | 544,449,605 | 100% | ||
umitay | 0 | 408,712,809 | 100% | ||
tiblog | 0 | 265,022,800,030 | 100% | ||
jekon80 | 0 | 445,809,874 | 100% | ||
rsmartt777 | 0 | 90,743,176 | 90% | ||
sumomo | 0 | 1,866,932,077 | 50% | ||
akmalz | 0 | 102,357,789 | 10% | ||
moneybaby | 0 | 1,208,545,876 | 5% | ||
apshamilton | 0 | 166,123,254,803 | 85% | ||
kafupraise | 0 | 125,226,203 | 36% | ||
drsensor | 0 | 13,115,283,624 | 80% | ||
uhamm | 0 | 263,267,524 | 100% | ||
gustavomonraz | 0 | 2,264,176,892 | 1% | ||
sportbot | 0 | 154,577,991 | 25% | ||
chronik-n-coffee | 0 | 204,163,794 | 50% | ||
donald.porter | 0 | 15,479,618,921 | 50% | ||
pizzajohn | 0 | 94,294,268 | 25% | ||
don-thomas | 0 | 12,901,884,714 | 25% | ||
yomismosoy | 0 | 316,330,811 | 24% | ||
jonathanjoestar | 0 | 72,752,413 | 25% | ||
boukdir | 0 | 132,745,668 | 16% | ||
ayyasofia | 0 | 545,982,803 | 100% | ||
vezo | 0 | 1,091,512,660 | 100% | ||
mrandreas | 0 | 200,175,163 | 50% | ||
verifyme | 0 | 675,141,801 | 10% | ||
hamismsf | 0 | 132,489,820,992 | 25% | ||
poppypyro | 0 | 70,230,426 | 100% | ||
blogelse | 0 | 545,896,774 | 100% | ||
dianation | 0 | 391,741,272 | 100% | ||
cryptouno | 0 | 257,078,206 | 5% | ||
witnesspage | 0 | 8,128,619,672 | 27% | ||
takezou | 0 | 6,665,111,046 | 100% | ||
oonaugh | 0 | 2,477,914,205 | 100% | ||
intro.bot | 0 | 59,515,348,133 | 100% | ||
wasuk | 0 | 2,843,102,582 | 100% | ||
samaz0r | 0 | 245,638,117 | 50% | ||
asforex | 0 | 363,396,248 | 100% | ||
laissez-faire | 0 | 73,095,238 | 100% | ||
alucian | 0 | 49,848,519,158 | 100% | ||
jacekw.dev | 0 | 3,444,075,445 | 100% | ||
ticket4fun | 0 | 1,884,273,581 | 100% | ||
kanhiyachauhan | 0 | 345,820,521 | 10% | ||
gingeralen | 0 | 389,143,914 | 100% | ||
dancingguy | 0 | 532,465,652 | 100% | ||
sbi8 | 0 | 45,535,616,501 | 29.04% | ||
boykeren | 0 | 58,214,150 | 100% | ||
perfspots | 0 | 217,868,368 | 8% | ||
ahmedjony | 0 | 62,800,990 | 5% | ||
fujisan | 0 | 18,705,533,187 | 100% | ||
mmunited | 0 | 18,193,417,695 | 30% | ||
brianoflondon | 0 | 40,951,201,351 | 25% | ||
voltmanager | 0 | 515,557,526 | 100% | ||
eu-id | 0 | 167,453,078 | 10% | ||
eu-africa | 0 | 2,605,727,966 | 100% | ||
yusaku | 0 | 21,548,435,156 | 100% | ||
theycallmedan | 0 | 39,248,786,546,987 | 100% | ||
tamito0201 | 0 | 49,519,911,222 | 100% | ||
jpbliberty | 0 | 49,226,466,512 | 25% | ||
yuriy4 | 0 | 435,568,590 | 12% | ||
greenphotoman | 0 | 1,091,292,685 | 100% | ||
bluerobo | 0 | 13,128,378,682 | 100% | ||
jp-tiger | 0 | 61,166,905,768 | 100% | ||
j-p-bs | 0 | 1,905,530,591 | 85% | ||
thehealthylife | 0 | 1,374,656,902 | 50% | ||
dexos2 | 0 | 17,522,194,276 | 100% | ||
anmitsu | 0 | 427,864,412,538 | 100% | ||
yumleadership | 0 | 810,718,798 | 12.5% | ||
enthef | 0 | 5,856,239,191 | 50% | ||
pamahdoo | 0 | 0 | 6% | ||
mara116 | 0 | 6,838,964,651 | 100% | ||
vaultec | 0 | 19,622,081,982 | 100% | ||
dr-mandell | 0 | 392,786,844 | 100% | ||
misykah.com | 0 | 390,828,826 | 100% | ||
moneybabe | 0 | 69,027,039 | 50% | ||
lucianolaravegas | 0 | 126,294,596 | 100% | ||
topoisomerase | 0 | 2,825,178,086 | 100% | ||
alexusbrave | 0 | 547,996,024 | 100% | ||
hell1997 | 0 | 201,474,195 | 100% | ||
dinamo | 0 | 469,204,456,991 | 100% | ||
hankreirden | 0 | 767,241,263 | 25% | ||
myslnarodowa | 0 | 4,201,281,112 | 100% | ||
steemwiki | 0 | 219,237,228,603 | 100% | ||
constant-flux | 0 | 762,642,988 | 100% | ||
osavi | 0 | 2,470,937,859 | 100% | ||
giftgiver | 0 | 14,677,119,082 | 100% | ||
louis.random | 0 | 0 | 100% | ||
shogo.life | 0 | 194,043,434 | 100% | ||
lucely1 | 0 | 350,248,518 | 100% | ||
steem-queen | 0 | 599,395,662 | 100% | ||
narodowcy.net | 0 | 8,549,911,300 | 100% | ||
yuri18 | 0 | 177,962,077 | 50% | ||
russia-btc | 0 | 11,580,684,707 | 100% | ||
annitakoxx | 0 | 163,445,303 | 50% | ||
unbrindis | 0 | 247,899,694 | 50% | ||
knifer | 0 | 470,777,373 | 100% | ||
superbouncer | 0 | 266,784,438 | 100% | ||
bookkeeping | 0 | 4,804,288,591 | 73.26% | ||
bazookaguy | 0 | 204,186,041 | 100% | ||
maccallister | 0 | 469,302,019 | 100% | ||
javiersebastian | 0 | 38,609,923,207 | 100% | ||
raspibot | 0 | 278,058,238 | 100% | ||
greenhousegamers | 0 | 249,595,703 | 50% | ||
franguevara1987 | 0 | 352,998,983 | 100% | ||
pandaparker | 0 | 1,236,900,957 | 100% | ||
never-giveup | 0 | 89,964,233 | 25% | ||
game.player | 0 | 144,684,113 | 100% | ||
robibasa | 0 | 405,678,894 | 5% | ||
gangstalking | 0 | -18,201,195,787 | -100% | ||
kicchudop1434 | 0 | 48,494,521 | 50% | ||
aoecoin | 0 | 14,263,065,781 | 100% | ||
wanker | 0 | 13,295,633,705 | 100% | ||
abojasim880 | 0 | 37,926,566 | 100% | ||
al-dulaim | 0 | 345,653,809 | 100% | ||
macswiss | 0 | 141,429,114 | 100% | ||
delegate4upvotes | 0 | 69,235,132 | 50% | ||
destructive | 0 | 373,733,311 | 100% | ||
bitting | 0 | 492,522,937 | 100% | ||
sarmagames | 0 | 939,405,870 | 45% | ||
myotherstuff | 0 | 4,086,080,158 | 13.75% | ||
yarak | 0 | 446,751,960 | 100% | ||
volingy8 | 0 | 294,796,983 | 100% | ||
volingy9 | 0 | 212,662,931 | 100% | ||
marwathenazis | 0 | 347,534,557 | 100% | ||
arose1 | 0 | 364,046,673 | 100% | ||
samir1 | 0 | 339,639,312 | 100% | ||
zimnaherbata | 0 | 910,709,533 | 100% | ||
voclab | 0 | 0 | 100% | ||
golden.future | 0 | 10,911,137,895 | 7.5% | ||
nutus | 0 | 740,911,406 | 100% | ||
mintoraur | 0 | 408,219,386 | 100% | ||
spawedar | 0 | 428,144,316 | 100% | ||
xavezar | 0 | 408,263,885 | 100% | ||
danotanot | 0 | 407,065,737 | 100% | ||
zaxxaz | 0 | 401,284,153 | 100% | ||
fortivitia | 0 | 426,928,683 | 100% | ||
terrara | 0 | 426,912,073 | 100% | ||
bombuli | 0 | 428,148,944 | 100% | ||
bizogen | 0 | 426,908,612 | 100% | ||
apalent | 0 | 428,143,811 | 100% | ||
lorexpler | 0 | 428,143,805 | 100% | ||
tosalgam | 0 | 428,143,803 | 100% | ||
dadawada | 0 | 427,306,930 | 100% | ||
iniedowa | 0 | 428,143,769 | 100% | ||
boombim | 0 | 428,148,586 | 100% | ||
blaaharaa | 0 | 428,143,636 | 100% | ||
dodumodon | 0 | 426,928,342 | 100% | ||
raambo | 0 | 426,928,340 | 100% | ||
jongreat | 0 | 10,361,130,878 | 100% | ||
hezjod | 0 | 123,908,801 | 45% | ||
empis | 0 | 123,908,731 | 45% | ||
hultaj | 0 | 123,908,727 | 45% | ||
lrekt01 | 0 | 4,326,073,745 | 100% | ||
amal.gka | 0 | 373,583,567 | 100% | ||
bilpcoin | 0 | 76,449,637 | 1% | ||
venturecapitalvc | 0 | 501,008,910 | 100% | ||
conceptmachine | 0 | 4,426,369,555 | 100% | ||
jdkennedy | 0 | 6,868,571,421 | 51% | ||
wizardofaus | 0 | 3,621,046,643 | 100% | ||
lenaspiritual | 0 | 200,184,263 | 19% | ||
chrono.pal | 0 | 1,857,564,248 | 100% | ||
bluemist.pal | 0 | 122,574,760 | 100% | ||
preludiocosmico | 0 | 1,345,022,760 | 100% | ||
luisrg87 | 0 | 490,970,732 | 100% | ||
moodballs | 0 | 1,283,047,361 | 100% | ||
m0nst3r | 0 | 527,044,334 | 100% | ||
nicohd105 | 0 | 1,864,773,955 | 100% | ||
wrestlingdesires | 0 | 360,921,343 | 100% | ||
wongbraling | 0 | 843,329,498 | 55% | ||
bilalshouket92 | 0 | 488,227,792 | 100% | ||
adrianj14 | 0 | 388,739,971 | 100% | ||
istelabaro | 0 | 256,464,078 | 100% | ||
yohelrodriguez | 0 | 0 | 100% | ||
pu5fon1 | 0 | 0 | 5% | ||
sbi-tokens | 0 | 0 | 0.83% | ||
anaelp | 0 | 488,942,835 | 100% | ||
ugeri | 0 | 479,393,522 | 100% | ||
wenjiewu | 0 | 219,225,809 | 100% | ||
arean | 0 | 342,927,817 | 100% | ||
fidelmak | 0 | 280,856,446 | 100% | ||
amitporwal | 0 | 104,925,778 | 100% | ||
liomaix | 0 | 437,145,962 | 100% | ||
kamikazeblue | 0 | 523,198,713 | 100% | ||
mistermy | 0 | 268,309,641 | 100% | ||
meleyca16 | 0 | 208,908,742 | 100% | ||
danielsilva | 0 | 356,036,110 | 100% | ||
meryem-byl | 0 | 0 | 100% | ||
daree23 | 0 | 0 | 100% | ||
saifalizaif | 0 | 0 | 100% |
Everybody is looking forward to the date and the kickstart of the 21 hardfork and I must say, majority people can't wait
author | adedapo-glory | ||||||
---|---|---|---|---|---|---|---|
permlink | re-gtg-pwbker | ||||||
category | steem-pressure | ||||||
json_metadata | {"tags":["steem-pressure"],"app":"steempeak/1.14.15"} | ||||||
created | 2019-08-16 07:49:39 | ||||||
last_update | 2019-08-16 07:49:39 | ||||||
depth | 1 | ||||||
children | 2 | ||||||
last_payout | 2019-08-23 07:49:39 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.012 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 120 | ||||||
author_reputation | 7,560,346,790,935 | ||||||
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 89,588,345 | ||||||
net_rshares | 147,778,054,855 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 147,778,054,855 | 1% |
True effects of HF21 will not be instant. It might take a month or two before people will adjust their habits.
author | gtg |
---|---|
permlink | pwbqn3 |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-16 10:04:15 |
last_update | 2019-08-16 10:04:15 |
depth | 2 |
children | 0 |
last_payout | 2019-08-23 10:04:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 461,802,207,065,183 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,591,333 |
net_rshares | 0 |
This post earned a total payout of 0.041$ and 0.031$ worth of author reward which was liquified using @likwid. [To learn more.](https://steemit.com/steem/@likwid/announcing-likwid-the-reward-liquifier)
author | likwid | ||||||
---|---|---|---|---|---|---|---|
permlink | likwid-comment-re-gtg-pwbker | ||||||
category | steem-pressure | ||||||
json_metadata | {"app":"likwid"} | ||||||
created | 2019-08-23 07:50:57 | ||||||
last_update | 2019-08-23 07:50:57 | ||||||
depth | 2 | ||||||
children | 0 | ||||||
last_payout | 2019-08-30 07:50:57 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 203 | ||||||
author_reputation | 36,087,507,440,149 | ||||||
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 89,853,032 | ||||||
net_rshares | 0 |
Can I start one with dule core 8 gb ram and 500gb hard drive Posted using [Partiko Android](https://partiko.app/referral/ajks)
author | ajks |
---|---|
permlink | ajks-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190816t141948380z |
category | steem-pressure |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-08-16 14:19:48 |
last_update | 2019-08-16 14:19:48 |
depth | 1 |
children | 5 |
last_payout | 2019-08-23 14:19:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 127 |
author_reputation | 80,793,116,826,740 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,598,644 |
net_rshares | 0 |
All depends on details. 8GB RAM itself wouldn't be that bad but you will experience much higher replay times, especially when your drive is a platter drive, i.e. not SSD.
author | gtg |
---|---|
permlink | pwc5cm |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-16 15:22:00 |
last_update | 2019-08-16 15:22:00 |
depth | 2 |
children | 4 |
last_payout | 2019-08-23 15:22:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 170 |
author_reputation | 461,802,207,065,183 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,600,482 |
net_rshares | 0 |
Why do you think 8GB RAM would limit replay speed? When I was replaying my MIRA node, the RAM usage stayed below 3GB the entire time. I used a platter HDD as well and my replay time was roughly 5 days.
author | netuoso |
---|---|
permlink | pwcm0o |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-16 21:22:00 |
last_update | 2019-08-16 21:22:00 |
depth | 3 |
children | 3 |
last_payout | 2019-08-23 21:22:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.075 HBD |
curator_payout_value | 0.025 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 202 |
author_reputation | 151,901,967,807,285 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,611,067 |
net_rshares | 299,965,368,276 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 299,965,368,276 | 2% |
If I set up a node in this fashion, would I be able to execute RPC calls against it using Beem? I specifically believe I need the reward API from previous discussions. I would guess I would not be needing condenser in that case. My intent is to test the SFR bot at some point and explore a mechanism so reward flags different coming from downvote mana. Any thoughts / guidance would be appreciated. Posted using [Partiko Android](https://partiko.app/referral/anthonyadavisii)
author | anthonyadavisii |
---|---|
permlink | anthonyadavisii-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190816t190137243z |
category | steem-pressure |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-08-16 19:01:36 |
last_update | 2019-08-16 19:01:36 |
depth | 1 |
children | 3 |
last_payout | 2019-08-23 19:01:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 479 |
author_reputation | 212,565,147,344,592 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,607,500 |
net_rshares | 38,104,444,595 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 146,753,899,402 | 1% | ||
me-we | 0 | -29,407,140,282 | -100% | ||
guiltyparties | 0 | 11,704,916,962 | 4.16% | ||
ismailkah | 0 | 5,369,944,211 | 25% | ||
firealiean | 0 | -96,317,175,698 | -100% |
While you can use it to perform some calls, LOW_MEMORY_NODE might not be enough for you. Please note that `rewards_api` is for testing purpose only, and explicitly said that it's not meant for use in production.
author | gtg |
---|---|
permlink | pwcisp |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-16 20:12:27 |
last_update | 2019-08-16 20:12:27 |
depth | 2 |
children | 2 |
last_payout | 2019-08-23 20:12:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 211 |
author_reputation | 461,802,207,065,183 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,609,446 |
net_rshares | 0 |
I may be getting the API needed confused in that case. Our bot does approximate flag rshares to SBD conversions using methods of the Beem Steem class for it's voting. Looks like the method uses get_sbd_per_rshares which calls get_reward_fund. That uses the database API if I am understanding correctly. That should be fine, right? Posted using [Partiko Android](https://partiko.app/referral/anthonyadavisii)
author | anthonyadavisii |
---|---|
permlink | anthonyadavisii-re-gtg-pwcisp-20190816t204547531z |
category | steem-pressure |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-08-16 20:45:48 |
last_update | 2019-08-16 20:45:48 |
depth | 3 |
children | 1 |
last_payout | 2019-08-23 20:45:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 411 |
author_reputation | 212,565,147,344,592 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,610,246 |
net_rshares | 5,343,532,197 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ismailkah | 0 | 5,343,532,197 | 25% |
Thanks. I’ve been looking for an updated Steem Node setup guide. If I have a much more powerful machine with 128Gb RAM what can I add to make it a full node? Posted using [Partiko iOS](https://partiko.app/referral/apshamilton)
author | apshamilton |
---|---|
permlink | apshamilton-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190816t032240338z |
category | steem-pressure |
json_metadata | {"app":"partiko","client":"ios"} |
created | 2019-08-16 03:22:42 |
last_update | 2019-08-16 03:22:42 |
depth | 1 |
children | 1 |
last_payout | 2019-08-23 03:22:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.130 HBD |
curator_payout_value | 0.041 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 228 |
author_reputation | 212,404,184,641,750 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,581,978 |
net_rshares | 519,360,245,686 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
elviento | 0 | 502,245,400 | 0.4% | ||
mys | 0 | 2,026,983,856 | 1% | ||
hamismsf | 0 | 416,120,962,579 | 80% | ||
b33r | 0 | 296,573,833 | 100% | ||
mixr | 0 | 3,170,245,791 | 15% | ||
jpbliberty | 0 | 97,243,234,227 | 50% |
I wouldn't recommend using "full node" anymore, i.e. monolithic instance. I would rather use fat node and low mem node of AH - your machine might be good for one of those. Adding Hivemind and Jussi there, will make it pretty nice set to satisfy full API needs.
author | gtg |
---|---|
permlink | pwbsvs |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-16 10:52:42 |
last_update | 2019-08-16 10:52:42 |
depth | 2 |
children | 0 |
last_payout | 2019-08-23 10:52:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 260 |
author_reputation | 461,802,207,065,183 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,592,502 |
net_rshares | 0 |
Congratulations @gtg! Your post was mentioned in the [Steem Hit Parade](/hit-parade/@arcange/daily-hit-parade-20190815) in the following category: * Pending payout - Ranked 3 with $ 80,84
author | arcange |
---|---|
permlink | re-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190815t180430000z |
category | steem-pressure |
json_metadata | "" |
created | 2019-08-16 16:05:36 |
last_update | 2019-08-16 16:05:36 |
depth | 1 |
children | 0 |
last_payout | 2019-08-23 16:05:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 189 |
author_reputation | 1,146,611,356,767,317 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,601,914 |
net_rshares | 0 |
<div class='pull-right'>https://cdn.steemitimages.com/DQmYkG41gp3ErZYnX8pnHdDg1tMHmN73dsxDdxxQiijWZo6/beer%20into%20glass%20small.gif<p><sup>To view or trade <code>BEER</code> go to <a href='https://steem-engine.com/?p=market&t=BEER'>steem-engine.com</a>.</sup></p></div><center> <img src='https://cdn.steemitimages.com/DQmY5cLULnVCSrQ5f8x6FaK5RL4CsGqtuCbGG1WZrW2fY9J/beertoken%20by%20beerlover.png' /> <p> Hey @gtg, here is your <code>BEER</code> token. Enjoy it!</p> Do you already know our [BEER Crowdfunding](https://steemit.com/cryptocurrency/@beerlover/let-s-grow-and-update-the-beer-token-huge-crowndfunding-as-crowdsale) </center>
author | beerlover |
---|---|
permlink | re-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190816t064307z |
category | steem-pressure |
json_metadata | "{"app": "beem/0.20.23"}" |
created | 2019-08-16 06:43:09 |
last_update | 2019-08-16 06:43:09 |
depth | 1 |
children | 0 |
last_payout | 2019-08-23 06:43:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 643 |
author_reputation | 25,781,827,182,727 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,586,800 |
net_rshares | -6,861,388,806 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
netuoso | 0 | -6,861,388,806 | -25% |
> Go fork yourself lol
author | blockchainstudio |
---|---|
permlink | re-gtg-pwath3 |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steempeak/1.14.15"} |
created | 2019-08-15 22:07:54 |
last_update | 2019-08-15 22:08:12 |
depth | 1 |
children | 0 |
last_payout | 2019-08-22 22:07:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 178,988,499,015,921 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,574,788 |
net_rshares | 0 |
So if a full-fledged system is to be made from the instructions you have given here, how much time would it take for it to be made available to the public and what about the security of the chain?
author | cryptogecko |
---|---|
permlink | pwbm7d |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-16 08:28:24 |
last_update | 2019-08-16 08:28:24 |
depth | 1 |
children | 3 |
last_payout | 2019-08-23 08:28:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.180 HBD |
curator_payout_value | 0.060 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 196 |
author_reputation | 11,027,655,257,721 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,589,218 |
net_rshares | 714,113,193,194 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptogecko | 0 | 743,142,687 | 100% | ||
sbi3 | 0 | 713,370,050,507 | 92.39% |
its not a standard thing...everyone will have its "crazy" things... I for example, would be more enterprise model... if I had the money to support it. Not that I could not do it with what I have (which I have done in the past)... Everything depends... ask something more specific, and I might be able to shed some more light. If that's where you want to go.
author | forykw | ||||||
---|---|---|---|---|---|---|---|
permlink | re-cryptogecko-2019818t11929235z | ||||||
category | steem-pressure | ||||||
json_metadata | {"tags":["steem-pressure"],"app":"esteem/2.2.0-surfer","format":"markdown+html","community":"esteem.app"} | ||||||
created | 2019-08-17 13:19:30 | ||||||
last_update | 2019-08-17 13:19:30 | ||||||
depth | 2 | ||||||
children | 0 | ||||||
last_payout | 2019-08-24 13:19:30 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 358 | ||||||
author_reputation | 93,000,233,999,224 | ||||||
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 89,631,598 | ||||||
net_rshares | 0 |
In this configuration node will not be available to the public in other means than just being a part of Steem p2p network. It's a consensus node. In this configuration it can serve you as a simple API node (with subset of supported API calls), you can use it for example to broadcast transactions to the network. To turn it into a public seed node, you need to add: `p2p-endpoint = 0.0.0.0:2001` which will make it to listen on all interfaces on port 2001 (default p2p port for Steem) and then let people know on a steem.chat's [#seed-nodes](https://steem.chat/channel/seed-nodes) channel that a new seed-node is in town ;-) Static IP is required and some reliable hostname is obviously good to have. It will take about 72 hours using that example hardware/software configuration to reach the head block. When it finish replaying, its API endpoint will be available. You can use some proxy with SSL termination to make it available to the public too, but keep in mind that API is limited. Such node might improve distribution of the system but it doesn't play the same role as in PoW networks.
author | gtg |
---|---|
permlink | pwbs7w |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"links":["https://steem.chat/channel/seed-nodes"],"app":"steemit/0.1"} |
created | 2019-08-16 10:38:21 |
last_update | 2019-08-16 10:42:57 |
depth | 2 |
children | 1 |
last_payout | 2019-08-23 10:38:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,097 |
author_reputation | 461,802,207,065,183 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,592,187 |
net_rshares | 0 |
Hoping this to change a bit on the next SMT model...
author | forykw | ||||||
---|---|---|---|---|---|---|---|
permlink | re-gtg-2019818t12023867z | ||||||
category | steem-pressure | ||||||
json_metadata | {"tags":["steem-pressure"],"app":"esteem/2.2.0-surfer","format":"markdown+html","community":"esteem.app"} | ||||||
created | 2019-08-17 13:20:24 | ||||||
last_update | 2019-08-17 13:20:39 | ||||||
depth | 3 | ||||||
children | 0 | ||||||
last_payout | 2019-08-24 13:20:24 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 52 | ||||||
author_reputation | 93,000,233,999,224 | ||||||
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 89,631,627 | ||||||
net_rshares | 0 |
Thank you for this! I swear I’m gonna do this someday! Posted using [Partiko iOS](https://partiko.app/referral/distantsignal)
author | distantsignal |
---|---|
permlink | distantsignal-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190816t003224380z |
category | steem-pressure |
json_metadata | {"app":"partiko","client":"ios"} |
created | 2019-08-16 00:32:24 |
last_update | 2019-08-16 00:32:24 |
depth | 1 |
children | 0 |
last_payout | 2019-08-23 00:32:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.037 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | 32,496,313,953,302 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,578,297 |
net_rshares | 148,114,808,351 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 148,114,808,351 | 1% |
Perfect timing 👨🏾🚀👍🏽 can get @reggaesteem node up asap 🍻!BEER Posted using [Partiko iOS](https://partiko.app/referral/donald.porter)
author | donald.porter |
---|---|
permlink | donald-porter-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190816t064256073z |
category | steem-pressure |
json_metadata | {"app":"partiko","client":"ios"} |
created | 2019-08-16 06:42:57 |
last_update | 2019-08-16 06:42:57 |
depth | 1 |
children | 1 |
last_payout | 2019-08-23 06:42:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.037 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 137 |
author_reputation | 49,170,706,460,625 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,586,797 |
net_rshares | 148,137,157,402 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 148,137,157,402 | 1% |
It's good to start with a public seed node and try to keep it up and running. To make your seed node available to general public you will need to add: `p2p-endpoint = 0.0.0.0:2001` and let people know on a steem.chat's [#seed-nodes](https://steem.chat/channel/seed-nodes) channel that a new seed-node is in town ;-) Static IP is required and some reliable hostname is preferred. (above is true for public **seed node**)
author | gtg |
---|---|
permlink | pwbrkz |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"links":["https://steem.chat/channel/seed-nodes"],"app":"steemit/0.1"} |
created | 2019-08-16 10:24:36 |
last_update | 2019-08-16 10:24:36 |
depth | 2 |
children | 0 |
last_payout | 2019-08-23 10:24:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 420 |
author_reputation | 461,802,207,065,183 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,591,800 |
net_rshares | 0 |
author | drakos |
---|---|
permlink | pwatha |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-15 22:08:00 |
last_update | 2019-08-15 22:08:00 |
depth | 1 |
children | 2 |
last_payout | 2019-08-22 22:08:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.037 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 112,280,226,665,329 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,574,791 |
net_rshares | 150,577,240,453 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 148,025,554,297 | 1% | ||
mys | 0 | 2,026,626,892 | 1% | ||
pricasso | 0 | 525,059,264 | 100% |
> something reasonably modest and cheap :-)
author | gtg |
---|---|
permlink | pwbrnt |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-16 10:26:18 |
last_update | 2019-08-16 10:26:18 |
depth | 2 |
children | 1 |
last_payout | 2019-08-23 10:26:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 461,802,207,065,183 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,591,849 |
net_rshares | 0 |
very! indeed.... I could get tons of it... but I would not have power enough to support it.
author | forykw | ||||||
---|---|---|---|---|---|---|---|
permlink | re-gtg-2019818t12138278z | ||||||
category | steem-pressure | ||||||
json_metadata | {"tags":["steem-pressure"],"app":"esteem/2.2.0-surfer","format":"markdown+html","community":"esteem.app"} | ||||||
created | 2019-08-17 13:21:39 | ||||||
last_update | 2019-08-17 13:21:39 | ||||||
depth | 3 | ||||||
children | 0 | ||||||
last_payout | 2019-08-24 13:21:39 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 91 | ||||||
author_reputation | 93,000,233,999,224 | ||||||
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 89,631,656 | ||||||
net_rshares | 0 |
..sounds like being possible also for me (one day..)..thx..up..follow you..
author | enjoykarma |
---|---|
permlink | pwaxug |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-15 23:42:18 |
last_update | 2019-08-15 23:42:18 |
depth | 1 |
children | 0 |
last_payout | 2019-08-22 23:42:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.037 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 75 |
author_reputation | 7,215,770,466,128 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,577,138 |
net_rshares | 148,090,476,590 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 148,090,476,590 | 1% |
I would use a hybrid RAID0 NVMe with RAID5/6 disks... but not recommended on Ubuntu... CentOS or RedHAT 100% ok! =) Tested. With snapshots backups daily and MANY recovery tests ...
author | forykw | ||||||
---|---|---|---|---|---|---|---|
permlink | re-gtg-2019818t11244581z | ||||||
category | steem-pressure | ||||||
json_metadata | {"tags":["steem-pressure","steem","dev","witness-category","palnet"],"app":"esteem/2.2.0-surfer","format":"markdown+html","community":"esteem.app"} | ||||||
created | 2019-08-17 13:12:45 | ||||||
last_update | 2019-08-17 13:14:18 | ||||||
depth | 1 | ||||||
children | 2 | ||||||
last_payout | 2019-08-24 13:12:45 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.032 HBD | ||||||
curator_payout_value | 0.011 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 180 | ||||||
author_reputation | 93,000,233,999,224 | ||||||
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 89,631,452 | ||||||
net_rshares | 141,595,412,515 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 141,595,412,515 | 1% |
Doesn't make much sense when it comes to simple consensus node. That one is just cheap and simple. What exactly is not recommended on Ubuntu, and why?
author | gtg |
---|---|
permlink | pwdykf |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-17 14:50:39 |
last_update | 2019-08-17 14:50:39 |
depth | 2 |
children | 1 |
last_payout | 2019-08-24 14:50:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 150 |
author_reputation | 461,802,207,065,183 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,634,205 |
net_rshares | 0 |
cached LVM filesystems... to be specific! Lots of bugs! Especially on converts and recovery situations... and if you don't use extX filesystems even worse...
author | forykw | ||||||
---|---|---|---|---|---|---|---|
permlink | re-gtg-2019818t25453740z | ||||||
category | steem-pressure | ||||||
json_metadata | {"tags":["steem-pressure"],"app":"esteem/2.2.0-surfer","format":"markdown+html","community":"esteem.app"} | ||||||
created | 2019-08-17 14:54:54 | ||||||
last_update | 2019-08-17 14:57:48 | ||||||
depth | 3 | ||||||
children | 0 | ||||||
last_payout | 2019-08-24 14:54:54 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 157 | ||||||
author_reputation | 93,000,233,999,224 | ||||||
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 89,634,330 | ||||||
net_rshares | 0 |
I would be interested to see benchmarks on the new AMD Epyc chips...
author | furion |
---|---|
permlink | pwgnpk |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-19 01:48:57 |
last_update | 2019-08-19 01:48:57 |
depth | 1 |
children | 4 |
last_payout | 2019-08-26 01:48:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.722 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 116,503,940,714,958 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,684,712 |
net_rshares | 2,826,792,477,309 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
furion | 0 | 2,826,792,477,309 | 100% |
Unfortunately I don't have such hardware available. Ideally it will be same disks, similar RAM setup, and just a difference with CPU/MB vs some high performance Intel setup. PS Please take a look at your node, it's missing blocks and it will continue as there's no longer witness shutdown vop in place due to 51% escalation issue, so the only way currently to disable it, is operator nullifying signing key.
author | gtg |
---|---|
permlink | pwgzym |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-19 06:13:33 |
last_update | 2019-08-19 06:13:33 |
depth | 2 |
children | 3 |
last_payout | 2019-08-26 06:13:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 408 |
author_reputation | 461,802,207,065,183 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,690,715 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
furion | 0 | 0 | 100% |
Oh, I didn't know that. I'll shut it down.
author | furion |
---|---|
permlink | pwweju |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-27 13:52:42 |
last_update | 2019-08-27 13:52:42 |
depth | 3 |
children | 2 |
last_payout | 2019-09-03 13:52:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.350 HBD |
curator_payout_value | 0.003 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 116,503,940,714,958 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,010,062 |
net_rshares | 2,828,098,382,931 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
furion | 0 | 2,828,098,382,931 | 100% |
For the record: Replayed `35538728` blocks in `75h:51m:36s` Then it had to catch up `98913` blocks that were generated in the meantime. That took another `31m:45s` So in total it took `76h:23m:21s` Also: `steem@mirabelle:~/.steemd/blockchain$ du -csh *` ``` 215G block_log 273M block_log.index 269M rocksdb_account_authority_object 14M rocksdb_account_history_object 14M rocksdb_account_metadata_object 406M rocksdb_account_object 32M rocksdb_account_recovery_request_object 27M rocksdb_block_summary_object 25M rocksdb_change_recovery_account_request_object 14M rocksdb_comment_content_object 20G rocksdb_comment_object 263M rocksdb_comment_vote_object 53M rocksdb_convert_request_object 18M rocksdb_decline_voting_rights_request_object 31M rocksdb_dynamic_global_property_object 21M rocksdb_escrow_object 24M rocksdb_feed_history_object 13M rocksdb_hardfork_property_object 75M rocksdb_limit_order_object 19M rocksdb_liquidity_reward_balance_object 17M rocksdb_operation_object 39M rocksdb_owner_authority_history_object 14M rocksdb_pending_optional_action_object 14M rocksdb_pending_required_action_object 27M rocksdb_proposal_object 17M rocksdb_proposal_vote_object 84M rocksdb_rc_account_object 14M rocksdb_rc_pool_object 11M rocksdb_rc_resource_param_object 24M rocksdb_reward_fund_object 70M rocksdb_savings_withdraw_object 24M rocksdb_transaction_object 47M rocksdb_vesting_delegation_expiration_object 85M rocksdb_vesting_delegation_object 35M rocksdb_withdraw_vesting_route_object 14M rocksdb_witness_custom_op_object 6.9G rocksdb_witness_object 24M rocksdb_witness_schedule_object 83M rocksdb_witness_vote_object 244G total ```
author | gtg |
---|---|
permlink | pwei1t |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-17 21:51:30 |
last_update | 2019-08-18 20:29:18 |
depth | 1 |
children | 0 |
last_payout | 2019-08-24 21:51:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.930 HBD |
curator_payout_value | 0.161 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,793 |
author_reputation | 461,802,207,065,183 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,645,227 |
net_rshares | 3,654,855,998,305 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 872,663,609,362 | 6% | ||
furion | 0 | 2,770,314,520,314 | 100% | ||
andablackwidow | 0 | 11,615,842,548 | 100% | ||
mistermy | 0 | 262,026,081 | 100% |
I've been re-forking myself for over a week now, hoping to finish it up one century soon.
author | guiltyparties |
---|---|
permlink | pwd2r1 |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-17 03:21:42 |
last_update | 2019-08-17 03:21:42 |
depth | 1 |
children | 0 |
last_payout | 2019-08-24 03:21:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 261,203,126,670,124 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,618,381 |
net_rshares | -259,482,882,398 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gridcoinman | 0 | -401,098,289,506 | -44% | ||
gtg | 0 | 141,615,407,108 | 1% |
Max open files on my node is 5mil. Still the mira replay crashes at 5%. Too many open files. 0.21.9 did run smoothly though:(
author | isnochys |
---|---|
permlink | px3d6f |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-31 08:06:18 |
last_update | 2019-08-31 08:06:18 |
depth | 1 |
children | 2 |
last_payout | 2019-09-07 08:06:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 126 |
author_reputation | 48,458,921,588,264 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,132,896 |
net_rshares | 0 |
Could you please show some logs / configs? Either here or on Steem.Chat (and please be patient)
author | gtg |
---|---|
permlink | px3jwm |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-31 10:31:36 |
last_update | 2019-08-31 10:31:36 |
depth | 2 |
children | 1 |
last_payout | 2019-09-07 10:31:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 95 |
author_reputation | 461,802,207,065,183 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,135,905 |
net_rshares | 0 |
Did upgrade ulimit - n 65536 And doing currently a block log download and replay. 8 hours to go. We will see.. I am now 4 days in, without a working witness node, I think I am patient. :)
author | isnochys |
---|---|
permlink | px3kfi |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-31 10:42:57 |
last_update | 2019-08-31 10:42:57 |
depth | 3 |
children | 0 |
last_payout | 2019-09-07 10:42:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 191 |
author_reputation | 48,458,921,588,264 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 90,136,123 |
net_rshares | 0 |
Thanks. I would love to set a node someday. Maybe today? ;)
author | javiersebastian |
---|---|
permlink | re-gtg-pwasfn |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steempeak/1.14.15"} |
created | 2019-08-15 21:45:24 |
last_update | 2019-08-15 21:45:24 |
depth | 1 |
children | 0 |
last_payout | 2019-08-22 21:45:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.037 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 16,944,522,773,682 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,574,212 |
net_rshares | 148,043,719,865 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 148,043,719,865 | 1% |
What the heck is the purpose for a witness proxy? Off-topic yes, but maybe an idea for you to do a witness episode? Anyways, this was an awesome and super easy step-by step! Thanks!
author | kharma.scribbles |
---|---|
permlink | re-gtg-pwb5l1 |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steempeak/1.14.15"} |
created | 2019-08-16 02:29:30 |
last_update | 2019-08-16 02:29:30 |
depth | 1 |
children | 2 |
last_payout | 2019-08-23 02:29:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.037 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 183 |
author_reputation | 4,988,835,934,532 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,580,946 |
net_rshares | 148,035,958,720 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 148,035,958,720 | 1% |
Witness proxy is an account that you chose to vote for witnesses on your behalf. It's meant for people that don't pay that much of attention to what's going on with witnesses and are comfortable trusting their witness proxy to make those choices for them. So if you set someone to be your witness proxy, whenever they decide to approve or unapprove some witness, your votes will be exactly the same.
author | gtg |
---|---|
permlink | pwbraj |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-16 10:18:21 |
last_update | 2019-08-16 10:18:21 |
depth | 2 |
children | 1 |
last_payout | 2019-08-23 10:18:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 400 |
author_reputation | 461,802,207,065,183 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,591,670 |
net_rshares | 614,713,341 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kharma.scribbles | 0 | 614,713,341 | 50% |
Great explanation! I love that you included a use case, thank you!
author | kharma.scribbles |
---|---|
permlink | re-gtg-pwbt5q |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steempeak/1.14.15"} |
created | 2019-08-16 10:58:42 |
last_update | 2019-08-16 10:58:42 |
depth | 3 |
children | 0 |
last_payout | 2019-08-23 10:58:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 4,988,835,934,532 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,592,611 |
net_rshares | 0 |
Nice to see a new steem pressure post. I wonder how many new witnesses there will be and how many will stop over the next year. Posted using [Partiko Android](https://partiko.app/referral/paulag)
author | paulag |
---|---|
permlink | paulag-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190816t180755899z |
category | steem-pressure |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-08-16 18:07:57 |
last_update | 2019-08-16 18:07:57 |
depth | 1 |
children | 0 |
last_payout | 2019-08-23 18:07:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 196 |
author_reputation | 274,264,287,951,003 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,606,003 |
net_rshares | 141,452,111,927 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 141,452,111,927 | 1% |
Amazing howto, amazing title. Forking myself in the next days. ☕️😃 Posted using [Partiko iOS](https://partiko.app/referral/schlafhacking)
author | schlafhacking |
---|---|
permlink | schlafhacking-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190815t230856168z |
category | steem-pressure |
json_metadata | {"app":"partiko","client":"ios"} |
created | 2019-08-15 23:08:57 |
last_update | 2019-08-15 23:08:57 |
depth | 1 |
children | 0 |
last_payout | 2019-08-22 23:08:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.037 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 138 |
author_reputation | 15,067,517,752,330 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,576,312 |
net_rshares | 148,065,013,286 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 148,065,013,286 | 1% |
@gtg great to see guides coming out to set up MIRA. Loving the console animations. Posted using [Partiko Android](https://partiko.app/referral/solominer)
author | solominer |
---|---|
permlink | solominer-re-gtg-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190820t093632694z |
category | steem-pressure |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-08-20 09:36:33 |
last_update | 2019-08-20 09:36:33 |
depth | 1 |
children | 0 |
last_payout | 2019-08-27 09:36:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.054 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 154 |
author_reputation | 1,824,789,967,019,646 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,735,873 |
net_rshares | 215,109,565,678 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 144,694,947,872 | 1% | ||
makingblocks | 0 | 70,414,617,806 | 100% |
Looking forward for an updated Steem Node setup guide !!!!!!
author | steem2100 |
---|---|
permlink | pwbv81 |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-16 11:43:18 |
last_update | 2019-08-16 11:43:18 |
depth | 1 |
children | 1 |
last_payout | 2019-08-23 11:43:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 60 |
author_reputation | 86,129,611,382 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,593,868 |
net_rshares | -13,230,023,465 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nihar1969 | 0 | 3,366,229,441 | 100% | ||
spamhotbot | 0 | -16,596,252,906 | -100% |
Maybe you should look backward then? ;-) That's the guide you are looking for.
author | gtg |
---|---|
permlink | pwbwfx |
category | steem-pressure |
json_metadata | {"tags":["steem-pressure"],"app":"steemit/0.1"} |
created | 2019-08-16 12:09:33 |
last_update | 2019-08-16 12:09:33 |
depth | 2 |
children | 0 |
last_payout | 2019-08-23 12:09:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 461,802,207,065,183 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,594,583 |
net_rshares | 0 |
@gtg You have received a 100% upvote from @intro.bot because this post did not use any bidbots and you have not used bidbots in the last 30 days! Upvoting this comment will help keep this service running.
author | verifyme |
---|---|
permlink | re-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-gtg-verifyme-randomvote |
category | steem-pressure |
json_metadata | {"tags":["verifyme","random-upvote"],"users":["gtg","intro.bot"],"app":"null/null","format":"markdown"} |
created | 2019-08-17 12:29:09 |
last_update | 2019-08-17 12:29:09 |
depth | 1 |
children | 0 |
last_payout | 2019-08-24 12:29:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 207 |
author_reputation | -705,247,747,464 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,630,335 |
net_rshares | 0 |
This post has been resteemed by @witnessnews. **Follow @witnessnews** to keep up with active witness updates.
author | witnessnews |
---|---|
permlink | re-steem-pressure-7-go-fork-yourself-step-by-step-guide-to-building-and-setting-up-a-mira-powered-hf21-ready-steem-consensus-node-20190815t213620z |
category | steem-pressure |
json_metadata | "{"app": "beem/0.20.22"}" |
created | 2019-08-15 21:36:21 |
last_update | 2019-08-15 21:36:21 |
depth | 1 |
children | 0 |
last_payout | 2019-08-22 21:36:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | -327,653,346,252 |
root_title | "Steem Pressure #7: Go Fork Yourself. Step by step guide to building and setting up a MIRA powered HF21-ready Steem consensus node." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,573,998 |
net_rshares | 0 |