Hive consensus node - simple way # Requirements: Hardware: x86-64, 32GB RAM, 1TB fast storage (SSD / NVMe) Software: Ubuntu 22.04 LTS # Assumptions: We act as user `hive` with uid `1000` and `HOME=/home/hive` We use `screen` for convenience. We use `/home/hive/datadir` as a data dir for our node. # Use cases: Simple, yet versatile configuration that can be used to spawn a node that serves as a: ## seed Take part in a P2P network. By default listen at publicly available TCP port 2001. ## witness Witnesses, a.k.a. block producers play an essential role on Hive. In this case, you don’t want to open webserver ports to the public or enable non-essential plugins such as account_history. Make sure that you set values for `witness` and `private-key`. ## exchange Exchanges need to track account history entries for a list of accounts they use for deposits and withdrawals. For that reason such accounts have to be specified in config files (see example entries). Each time you add a new account to be tracked, you have to perform a replay. ## personal wallet You might want to have a node for personal needs to handle your accounts. Configure it just like the exchange, except you will track your own account(s). ## basic API A consensus node has a basic, yet powerful API. It can return useful information about the current state of the blockchain, track the head block, return blocks with get_block API, and broadcast transactions, which might be just good enough to handle some bots or apps. # Prepare directory tree ```bash mkdir -pv ~/datadir/{blockchain,snapshot} ~/bin ``` # Use example config file ```bash wget https://gtg.openhive.network/get/snapshot/exchange/example-exchange-config.ini -O ~/datadir/config.ini ``` # Get `hived` and `cli_wallet` binaries ```bash wget https://gtg.openhive.network/get/bin/hived-1.27.6 -nc -P ~/bin wget https://gtg.openhive.network/get/bin/cli_wallet-1.27.6 -nc -P ~/bin chmod u+x ~/bin/{hived,cli_wallet}-1.27.6 ``` # Run `hived` Of course you need to make sure it won’t be killed when you disconnect (use screen, or configure it as a service), make sure that the configuration fits your needs (tracking accounts, bind ports to public interfaces or to localhost, etc.) ```bash ~/bin/hived-1.27.6 -d /home/hive/datadir ``` That’s it. It will start sync process during which `/home/hive/datadir/blockchain/block_log` and `/home/hive/datadir/blockchain/block_log.artifacts` will be created and updated as it will sync and process blocks coming from the Hive p2p network. As the blocks are processed the current state is being saved in the `/home/hive/datadir/blockchain/shared_memory.bin` file. If you track account history then there’s also `/home/hive/datadir/blockchain/account-history-rocksdb-storage` which is RocksDB storage with account history data. # Optional steps and improvements ## Use tmpfs for shared_memory.bin file It’s worth mentioning that `/home/hive/datadir/blockchain/shared_memory.bin` will be heavily accessed for read/write. Placing this file on tmpfs will speed up resync and replay, and will reduce I/O on the storage. The disadvantage is that it will not survive the reboot. You also need to have enough RAM / swap. To use tmpfs, uncomment this line in `config.ini` file: ``` # shared-file-dir = "/run/hive" ``` And prepare that location for storing `shared_memory.bin` file: ```bash sudo mkdir /run/hive sudo chown -Rc hive:hive /run/hive sudo mount -o remount,size=30G /run ``` ## Use existing block_log If you already have a block_log file you can use it to speed up the process. In such a case place it in `~/datadir/blockchain` and use `--replay`. You can use a block_log from another instance you run or download from public sources (see: https://gtg.openhive.network/get/blockchain ) You can safely reuse block_log from older versions. ```bash wget https://gtg.openhive.network/get/blockchain/block_log -nc -P ~/datadir/blockchain wget https://gtg.openhive.network/get/blockchain/block_log.artifacts -nc -P ~/datadir/blockchain ``` Please note that the block_log is roughly 500GB, downloading it could take a significant amount of time (6-12 hours even with a decent network connection) ## Use a snapshot Snapshot can apply the state of the blockchain that was generated on a different machine. It’s tightly bound to the version that was used to generate it and the exact configuration (used plugins, etc.). Make sure that you have `lbzip2` installed (`sudo apt install lbzip2`). Regular bzip2 will also work, but lbzip2 makes use of all available CPU threads. To use snapshot you also need a block_log that is at least as fresh at snapshot itself. ```bash wget https://gtg.openhive.network/get/snapshot/exchange/latest.tar.bz2 -O - | lbzip2 -dc | tar xvC /home/hive/datadir/snapshot ``` When using snapshot use `--load-snapshot=latest` (where the ‘latest’ is the name of the snapshot) <center>https://www.youtube.com/watch?v=vlW9lDE3DuI</center> # TL;DR: Complete optimized recipe ```bash screen -q # start the screen manager mkdir -pv ~/datadir/{blockchain,snapshot} ~/bin sudo mkdir /run/hive sudo chown -Rc hive:hive /run/hive sudo mount -o remount,size=30G /run wget https://gtg.openhive.network/get/blockchain/block_log -nc -P ~/datadir/blockchain wget https://gtg.openhive.network/get/blockchain/block_log.artifacts -nc -P ~/datadir/blockchain wget https://gtg.openhive.network/get/snapshot/exchange/latest.tar.bz2 -O - | lbzip2 -dc | tar xvC /home/hive/datadir/snapshot wget https://gtg.openhive.network/get/bin/hived-1.27.6 -nc -P ~/bin wget https://gtg.openhive.network/get/bin/cli_wallet-1.27.6 -nc -P ~/bin wget https://gtg.openhive.network/get/snapshot/exchange/example-exchange-config.ini -O ~/datadir/config.ini sed -i '/^# shared-file-dir/s/^# //' ~/datadir/config.ini # enable tmpfs location chmod u+x ~/bin/{hived,cli_wallet}-1.27.6 ~/bin/hived-1.27.6 -d /home/hive/datadir --load-snapshot=latest ``` # Upgrading from previous version If your instance is already configured this way, then upgrade is very easy: ```bash rm -rf /home/hived/datadir/snapshot/latest wget https://gtg.openhive.network/get/bin/hived-1.27.6 -nc -P ~/bin wget https://gtg.openhive.network/get/bin/cli_wallet-1.27.6 -nc -P ~/bin chmod u+x ~/bin/{hived,cli_wallet}-1.27.6 wget https://gtg.openhive.network/get/snapshot/exchange/latest.tar.bz2 -O - | lbzip2 -dc | tar xvC /home/hive/datadir/snapshot ``` Stop current instance and start with new binary: ```bash ~/bin/hived-1.27.6 -d /home/hive/datadir --load-snapshot=latest ``` # Estimated times: Sync (from scratch) - 36h Replay (if you already have a block_log) - 18h Load from snapshot (if you already have a block_log) - 1h # Congratulations, you have your Hive node running!
author | gtg |
---|---|
permlink | hive-node-setup-for-the-smart-the-dumb-and-the-lazy |
category | hive-160391 |
json_metadata | {"app":"hiveblog/0.1","author":"","format":"markdown","image":["https://img.youtube.com/vi/vlW9lDE3DuI/0.jpg"],"summary":"","tags":["hivepressure","dev","witness-category","hive"],"links":["https://gtg.openhive.network/get/blockchain"]} |
created | 2024-07-17 20:11:51 |
last_update | 2024-07-17 21:00:06 |
depth | 0 |
children | 32 |
last_payout | 2024-07-24 20:11:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 87.256 HBD |
curator_payout_value | 87.182 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,727 |
author_reputation | 461,858,845,292,188 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,336,174 |
net_rshares | 528,415,553,035,082 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smooth | 0 | 142,266,548,782,068 | 100% | ||
abit | 0 | 0 | 100% | ||
adm | 0 | 17,209,002,185,299 | 100% | ||
gandalf | 0 | 23,679,115,174 | 100% | ||
boatymcboatface | 0 | 1,211,833,053,478 | 60% | ||
kingscrown | 0 | 9,354,949,861 | 60% | ||
flemingfarm | 0 | 104,752,536,004 | 20% | ||
leprechaun | 0 | 5,233,146,331 | 25% | ||
theshell | 0 | 324,409,119,950 | 60% | ||
gtg | 0 | 48,536,543,306,639 | 100% | ||
good-karma | 0 | 10,780,570,455 | 1% | ||
ausbitbank | 0 | 4,657,025,162,499 | 100% | ||
dwinblood | 0 | 3,972,849,182 | 40% | ||
meesterboom | 0 | 3,975,805,539,310 | 100% | ||
kendewitt | 0 | 298,703,241,696 | 100% | ||
ubg | 0 | 36,174,778,173 | 100% | ||
deanliu | 0 | 5,386,381,895,040 | 100% | ||
bowess | 0 | 1,782,108,828,426 | 100% | ||
quigua | 0 | 9,550,339,009 | 100% | ||
brianphobos | 0 | 0 | 100% | ||
logic | 0 | 165,319,808,919 | 100% | ||
sazbird | 0 | 17,234,469,082 | 100% | ||
lukmarcus | 0 | 6,064,454,221 | 100% | ||
alexpmorris | 0 | 354,573,915,706 | 100% | ||
kaykunoichi | 0 | 1,085,488,544 | 50% | ||
akipponn | 0 | 65,406,954,659 | 100% | ||
magicmonk | 0 | 8,844,609,919,638 | 100% | ||
timcliff | 0 | 158,676,636,636 | 100% | ||
josepimpo | 0 | 72,138,884,828 | 100% | ||
oflyhigh | 0 | 3,705,505,465,709 | 100% | ||
future24 | 0 | 2,130,484,427 | 100% | ||
hanshotfirst | 0 | 154,777,319,950 | 100% | ||
borran | 0 | 1,120,190,718,649 | 100% | ||
cabelindsay | 0 | 161,886,792,819 | 50% | ||
lemouth | 0 | 2,837,522,816,260 | 100% | ||
wisbeech | 0 | 11,249,824,060 | 100% | ||
someguy123 | 0 | 487,231,008,822 | 100% | ||
mattclarke | 0 | 497,757,795,177 | 52% | ||
novacadian | 0 | 32,613,101,312 | 100% | ||
penguinpablo | 0 | 225,617,175,003 | 14% | ||
richardcrill | 0 | 29,953,791,737 | 50% | ||
dadview | 0 | 10,008,768,553 | 18% | ||
leoplaw | 0 | 4,947,460,689 | 50% | ||
titusfrost | 0 | 42,119,116,021 | 100% | ||
petrvl | 0 | 228,371,723,039 | 20% | ||
seckorama | 0 | 31,390,446,333 | 10% | ||
funnyman | 0 | 1,410,400,396 | 5.6% | ||
steemcleaners | 0 | 2,282,075,002,131 | 80% | ||
jang | 0 | 117,366,260,749 | 100% | ||
lloyddavis | 0 | 20,742,277,622 | 75% | ||
lydon.sipe | 0 | 6,218,044,146 | 100% | ||
techslut | 0 | 672,628,120,766 | 100% | ||
freiheit50 | 0 | 701,324,274 | 100% | ||
triviummethod | 0 | 5,776,683,579 | 100% | ||
jaybird | 0 | 4,237,749,104 | 100% | ||
jaki01 | 0 | 1,155,815,001,584 | 100% | ||
barcisz | 0 | 84,134,932,040 | 100% | ||
nonameslefttouse | 0 | 904,285,581,814 | 33% | ||
olga.maslievich | 0 | 0 | 100% | ||
adventureevryday | 0 | 35,975,275,375 | 60% | ||
edb | 0 | 45,695,141,789 | 50% | ||
esteemapp | 0 | 2,525,230,129 | 1% | ||
justinw | 0 | 170,180,631,385 | 33% | ||
walterjay | 0 | 1,124,706,223,181 | 100% | ||
v4vapid | 0 | 6,941,643,237,119 | 45% | ||
darth-azrael | 0 | 146,393,453,091 | 50% | ||
lindal | 0 | 2,104,134,804 | 100% | ||
kobold-djawa | 0 | 56,623,034,452 | 100% | ||
michellectv | 0 | 237,076,717,522 | 100% | ||
bxt | 0 | 591,838,931,870 | 100% | ||
darth-cryptic | 0 | 27,642,856,860 | 50% | ||
tarazkp | 0 | 6,584,489,917,706 | 100% | ||
privex | 0 | 70,559,000,902 | 100% | ||
sudutpandang | 0 | 91,116,933 | 100% | ||
buzzbeergeek | 0 | 587,874,804 | 60% | ||
thereikiforest | 0 | 1,052,494,534 | 10% | ||
alexis555 | 0 | 5,587,232,254,171 | 46% | ||
danielsaori | 0 | 574,193,504,873 | 100% | ||
trafalgar | 0 | 51,757,724,699,565 | 100% | ||
itinerantph | 0 | 1,886,307,599 | 50% | ||
preparedwombat | 0 | 1,692,508,442,878 | 100% | ||
singa | 0 | 4,598,507,838 | 100% | ||
detlev | 0 | 168,422,811,442 | 10% | ||
lizanomadsoul | 0 | 166,203,540,070 | 100% | ||
raindrop | 0 | 801,092,182,436 | 100% | ||
passion-fruit | 0 | 9,980,837,265 | 92% | ||
fortune-master | 0 | 8,790,144,834 | 92% | ||
dune69 | 0 | 11,203,633,090 | 100% | ||
tamaralovelace | 0 | 84,625,855,676 | 100% | ||
mes | 0 | 1,546,570,681,857 | 100% | ||
dreamon | 0 | 489,833,577 | 11.1% | ||
kingkinslow | 0 | 710,104,903 | 100% | ||
elizahfhaye | 0 | 764,205,325 | 100% | ||
broncnutz | 0 | 6,048,962,606,523 | 100% | ||
cryptocurator | 0 | 15,555,389,348 | 75% | ||
trayan | 0 | 16,112,252,263 | 100% | ||
domo | 0 | 437,584,449 | 100% | ||
bargolis | 0 | 3,388,248,906 | 100% | ||
xplosive | 0 | 19,595,805,941 | 100% | ||
crisgojar | 0 | 22,509,921,525 | 100% | ||
jagged | 0 | 4,104,491,967 | 50% | ||
fatimajunio | 0 | 1,508,371,102 | 100% | ||
ampm | 0 | 8,443,953,016 | 100% | ||
nrg | 0 | 440,702,271,725 | 100% | ||
newsflash | 0 | 4,063,332,854 | 11.25% | ||
mdosev | 0 | 43,432,147,844 | 30% | ||
bitcoinflood | 0 | 1,045,413,529,198 | 32% | ||
belahejna | 0 | 39,667,443,224 | 20% | ||
anacristinasilva | 0 | 4,386,217,412 | 50% | ||
alphacore | 0 | 7,068,819,730 | 7.12% | ||
mahdiyari | 0 | 1,209,777,732,589 | 100% | ||
ewkaw | 0 | 1,033,270,383,043 | 35% | ||
chinito | 0 | 16,566,608,532 | 100% | ||
roxane | 0 | 919,087,740 | 50% | ||
joeyarnoldvn | 0 | 8,401,670,190 | 24.21% | ||
darsico | 0 | 1,347,977,589,099 | 100% | ||
grocko | 0 | 37,950,037,940 | 50% | ||
mynewlife | 0 | 774,408,166,092 | 100% | ||
papilloncharity | 0 | 2,263,652,924,645 | 75.5% | ||
britcoins | 0 | 539,934,926 | 80% | ||
bluemist | 0 | 49,020,583,334 | 20% | ||
godfish | 0 | 493,225,955,471 | 40% | ||
polaleye50 | 0 | 1,419,946,912 | 100% | ||
grecki-bazar-ewy | 0 | 398,506,949,068 | 100% | ||
rafalski | 0 | 1,533,454,229 | 100% | ||
appreciator | 0 | 75,516,416,286,346 | 20% | ||
nikdo | 0 | 8,640,467,886 | 40% | ||
stayoutoftherz | 0 | 2,594,321,272,680 | 25% | ||
yanes94 | 0 | 722,213,814,203 | 100% | ||
bambukah | 0 | 39,846,614,649 | 50% | ||
odsam2 | 0 | 17,962,388,396 | 100% | ||
sciencevienna | 0 | 106,870,239,625 | 100% | ||
fatherfaith | 0 | 1,588,720,219 | 100% | ||
pocketrocket | 0 | 12,926,621,601 | 100% | ||
kharrazi | 0 | 4,222,317,605 | 100% | ||
mochita | 0 | 42,615,774,224 | 100% | ||
vimukthi | 0 | 260,710,535 | 10% | ||
shanibeer | 0 | 527,717,897,770 | 35% | ||
endracsho | 0 | 3,068,668,239 | 100% | ||
zest | 0 | 2,996,276,819 | 100% | ||
harveyword | 0 | 77,701,567,344 | 30% | ||
shogo | 0 | 5,093,527,706 | 100% | ||
santigs | 0 | 876,873,958,426 | 100% | ||
karja | 0 | 18,093,024,978 | 5% | ||
zirochka | 0 | 873,860,615,109 | 100% | ||
joalvarez | 0 | 195,844,053,150 | 53% | ||
cconn | 0 | 3,136,587,002 | 25% | ||
eastmael | 0 | 28,076,654,156 | 100% | ||
tomiscurious | 0 | 21,293,443,260 | 3.8% | ||
tomwafula | 0 | 780,230,901 | 25% | ||
openaccount | 0 | 627,978,530 | 25% | ||
fatman | 0 | 9,072,875,032 | 2% | ||
votehero | 0 | 21,661,279,002 | 4.6% | ||
deathwing | 0 | 3,709,770,584,012 | 100% | ||
revisesociology | 0 | 1,691,826,217,127 | 70% | ||
espoem | 0 | 12,652,139,017 | 4% | ||
steembet.asia | 0 | 523,037,266 | 80% | ||
msp-makeaminnow | 0 | 21,452,051,233 | 24.6% | ||
africka | 0 | 1,069,029,186 | 100% | ||
smokinglems | 0 | 33,549,102,640 | 100% | ||
angelowkhelow | 0 | 148,098,726,550 | 100% | ||
esteem.app | 0 | 300,855,272 | 1% | ||
bartosz546 | 0 | 0 | 100% | ||
florian-glechner | 0 | 1,382,232,983,995 | 100% | ||
petrolinivideo | 0 | 4,039,613,960 | 50% | ||
kimchi-king | 0 | 1,479,787,930 | 40% | ||
dandays | 0 | 142,457,413,583 | 9.8% | ||
lays | 0 | 4,354,333,723 | 100% | ||
familyprotection | 0 | 558,424,436,001 | 37% | ||
sunsea | 0 | 26,767,095,835 | 10% | ||
steemflow | 0 | 143,709,629,054 | 51% | ||
emrebeyler | 0 | 8,257,192,635,890 | 90% | ||
sho-t | 0 | 4,163,101,712 | 10% | ||
norat23 | 0 | 726,532,744 | 100% | ||
travoved | 0 | 47,395,070,095 | 100% | ||
citizensmith | 0 | 21,748,726,453 | 100% | ||
mytechtrail | 0 | 18,391,802,322 | 15% | ||
hayomi | 0 | 1,330,637,816 | 100% | ||
traf | 0 | 4,348,344,701,384 | 100% | ||
hanzappedfirst | 0 | 6,192,751,882 | 100% | ||
tazi | 0 | 10,111,602,485 | 39% | ||
b00m | 0 | 45,748,265,806 | 100% | ||
nathen007 | 0 | 146,427,782,500 | 100% | ||
cervisia | 0 | 108,868,065,053 | 59.1% | ||
geekpowered | 0 | 8,795,846,896 | 100% | ||
breelikeatree | 0 | 228,172,537,523 | 100% | ||
wiseagent | 0 | 21,877,608,793 | 25% | ||
cryptonized | 0 | 236,810,745 | 14% | ||
fourfourfun | 0 | 597,323,504 | 1.9% | ||
mineopoly | 0 | 72,649,486,118 | 50% | ||
phortun | 0 | 18,145,529,257 | 100% | ||
deepresearch | 0 | 1,408,468,198,866 | 100% | ||
kaerpediem | 0 | 651,479,600,127 | 100% | ||
gabrielatravels | 0 | 143,480,800,395 | 100% | ||
alebeta | 0 | 2,247,492,133 | 100% | ||
payger | 0 | 6,578,471,186 | 50% | ||
highonthehog | 0 | 33,374,584,414 | 100% | ||
hijosdelhombre | 0 | 64,420,281,977 | 50% | ||
barineka | 0 | 543,567,384 | 100% | ||
criptomaster | 0 | 4,766,035,257 | 100% | ||
leslierevales | 0 | 5,146,497,682 | 37.75% | ||
mciszczon | 0 | 0 | 100% | ||
patricklancaster | 0 | 5,468,571,736 | 30% | ||
manncpt | 0 | 177,325,191,189 | 100% | ||
seikatsumkt | 0 | 5,188,544,685 | 75% | ||
minigunner | 0 | 2,524,309,915 | 100% | ||
dynamicrypto | 0 | 463,759,605 | 1% | ||
auracraft | 0 | 595,803,339 | 20% | ||
jarvie | 0 | 1,622,360,606,634 | 100% | ||
jnmarteau | 0 | 40,469,144,170 | 100% | ||
a-quarius | 0 | 185,684,218,070 | 100% | ||
kubak | 0 | 536,751,423,436 | 100% | ||
atongis | 0 | 28,170,449,170 | 10% | ||
artjohn | 0 | 717,943,968 | 50% | ||
fieryfootprints | 0 | 51,760,182,850 | 20% | ||
icuz | 0 | 15,333,630,561 | 100% | ||
srikandi | 0 | 2,239,883,022 | 100% | ||
jazzhero | 0 | 31,677,257,176 | 37.5% | ||
kkarenmp | 0 | 10,364,870,321 | 10% | ||
marcon | 0 | 650,571,383 | 100% | ||
minerspost | 0 | 535,768,016 | 12.5% | ||
fireguardian | 0 | 635,935,347 | 20% | ||
themonkeyzuelans | 0 | 3,567,182,593 | 100% | ||
pkocjan | 0 | 872,235,417 | 100% | ||
marekwojciakcom | 0 | 69,946,697,519 | 100% | ||
rubelynmacion | 0 | 45,722,061,816 | 100% | ||
darkpylon | 0 | 920,377,773 | 25% | ||
onlavu | 0 | 146,202,455,687 | 100% | ||
asgarth | 0 | 1,096,839,057,229 | 50% | ||
opeyemioguns | 0 | 1,619,137,302 | 100% | ||
bertrayo | 0 | 15,566,476,041 | 10% | ||
cst90 | 0 | 327,502,472,765 | 100% | ||
lisfabian | 0 | 9,656,742,473 | 50% | ||
lesiopm | 0 | 1,070,718,852,318 | 100% | ||
jasonwaterfalls | 0 | 732,949,284 | 100% | ||
dumnebari | 0 | 997,135,206 | 50% | ||
backinblackdevil | 0 | 42,432,195,398 | 100% | ||
properfraction | 0 | 59,961,665,934 | 100% | ||
miosha | 0 | 603,537,505,240 | 100% | ||
chanych85 | 0 | 23,137,986,324 | 100% | ||
wilfredn | 0 | 63,297,811,290 | 100% | ||
silverd510 | 0 | 19,235,911,947 | 72% | ||
andablackwidow | 0 | 60,596,035,747 | 100% | ||
bil.prag | 0 | 234,338,382,285 | 24% | ||
dotwin1981 | 0 | 160,223,726,472 | 30% | ||
ravenmus1c | 0 | 21,155,770,489 | 1% | ||
adamada | 0 | 63,566,730,502 | 50% | ||
louis88 | 0 | 452,039,131,196 | 20% | ||
tibfox | 0 | 149,487,847,349 | 100% | ||
racibo | 0 | 31,599,616,204 | 35% | ||
yameen | 0 | 165,952,775,955 | 50% | ||
gadrian | 0 | 604,865,576,844 | 50% | ||
inciter | 0 | 14,145,662,219 | 20% | ||
memepress | 0 | 3,389,000,819 | 100% | ||
gifty-e | 0 | 704,052,964 | 100% | ||
kgakakillerg | 0 | 4,042,177,737 | 2% | ||
leancenter | 0 | 28,078,872,694 | 75% | ||
steemexperience | 0 | 73,159,859,119 | 50% | ||
el-dee-are-es | 0 | 4,664,777,990 | 10% | ||
kendallron | 0 | 1,005,103,005 | 50% | ||
petertag | 0 | 6,065,505,032 | 100% | ||
meanbees | 0 | 114,051,055,684 | 100% | ||
globalschool | 0 | 8,459,458,451 | 50% | ||
glodniwiedzy | 0 | 37,450,514,549 | 100% | ||
opt2o | 0 | 9,299,766,347 | 100% | ||
rozku | 0 | 242,450,531,402 | 100% | ||
fw206 | 0 | 2,317,445,297,694 | 31% | ||
slobberchops | 0 | 6,358,149,790,016 | 100% | ||
jasuly | 0 | 211,049,005 | 100% | ||
crypticat | 0 | 129,393,029,055 | 40% | ||
angatt | 0 | 3,593,593,663 | 50% | ||
alfrednoyed | 0 | 8,843,186,092 | 100% | ||
pinas | 0 | 465,185,167 | 50% | ||
kstop1 | 0 | 14,717,140,573 | 100% | ||
solarwarrior | 0 | 79,633,735,416 | 100% | ||
sgbonus | 0 | 10,720,047,920 | 15% | ||
topbooster | 0 | 928,655,825 | 50% | ||
digital.mine | 0 | 104,318,545,854 | 100% | ||
sbi5 | 0 | 96,405,262,511 | 6.89% | ||
chibuzorwisdom | 0 | 180,544,959 | 100% | ||
we-are-lucky | 0 | 42,244,506,007 | 100% | ||
wittywheat | 0 | 0 | 100% | ||
apshamilton | 0 | 1,891,538,426,670 | 100% | ||
drsensor | 0 | 2,275,715,000 | 80% | ||
gibic | 0 | 5,456,946,512 | 50% | ||
pignys | 0 | 44,061,840,491 | 100% | ||
thedailysneak | 0 | 532,846,000 | 0.6% | ||
sadbear | 0 | 600,477,775 | 10% | ||
bestofph | 0 | 4,372,144,023 | 50% | ||
hamismsf | 0 | 691,876,032,394 | 100% | ||
luciannagy | 0 | 520,687,462 | 50% | ||
jk6276 | 0 | 45,474,967,650 | 40% | ||
yaelg | 0 | 69,560,706,479 | 90% | ||
engrave | 0 | 6,864,945,743,447 | 100% | ||
bagpuss | 0 | 13,309,746,055 | 100% | ||
gubbatv | 0 | 37,377,018,566 | 100% | ||
voter002 | 0 | 21,534,672,775 | 55.2% | ||
unbiasedwriter | 0 | 679,583,963,013 | 100% | ||
thevil | 0 | 1,089,447,594,505 | 100% | ||
czekolada | 0 | 2,272,187,385 | 50% | ||
ratelmiodozer | 0 | 138,787,662 | 100% | ||
merlin7 | 0 | 72,568,782,305 | 36% | ||
kind.network | 0 | 1,091,162,695 | 30% | ||
thrasher666 | 0 | 2,421,286,233 | 60% | ||
vasigo | 0 | 17,787,684,644 | 100% | ||
priyanarc | 0 | 41,543,418,181 | 80% | ||
nonsowrites | 0 | 15,315,278,485 | 25% | ||
jonela | 0 | 838,489,390 | 50% | ||
forecasteem | 0 | 11,540,123,449 | 100% | ||
inpursuit | 0 | 1,164,993,991 | 7.73% | ||
cars-art | 0 | 34,703,212,777 | 100% | ||
miha-sweet | 0 | 469,583,829 | 100% | ||
maajaanaa | 0 | 1,125,050,490 | 20% | ||
tamito0201 | 0 | 1,692,390,361 | 100% | ||
nutfund | 0 | 4,092,335,900 | 100% | ||
starrouge | 0 | 1,048,492,524 | 50% | ||
jpbliberty | 0 | 624,354,644,640 | 100% | ||
retrodroid | 0 | 16,655,910,984 | 50% | ||
wherein | 0 | 26,592,785,328 | 100% | ||
zerofive | 0 | 872,902,987 | 50% | ||
thehealthylife | 0 | 12,880,514,026 | 100% | ||
anmitsu | 0 | 3,309,445,029 | 100% | ||
coffeebuds | 0 | 16,224,994,747 | 50% | ||
jacuzzi | 0 | 657,293,375 | 1.4% | ||
kaldewei | 0 | 790,592,356 | 30% | ||
riyuuhi | 0 | 484,522,836 | 50% | ||
cryptoninja.guru | 0 | 959,418,114 | 100% | ||
primeradue | 0 | 741,805,530 | 45% | ||
sm-jewel | 0 | 1,545,161,261 | 100% | ||
escuadron201 | 0 | 83,970,645,315 | 100% | ||
smoner | 0 | 1,620,307,842 | 100% | ||
cnstm | 0 | 127,900,639,448 | 100% | ||
likuang007 | 0 | 665,860,519 | 100% | ||
marianomariano | 0 | 3,315,937,112 | 100% | ||
dlstudios | 0 | 6,808,849,613 | 100% | ||
eldaniel0131 | 0 | 1,423,651,585 | 100% | ||
lianjingmedia | 0 | 999,372,276 | 100% | ||
photoparadise | 0 | 5,061,063,382 | 20% | ||
goodcontentbot | 0 | 807,910,132 | 15% | ||
peter-bot | 0 | 705,832,611 | 100% | ||
hungrybear | 0 | 623,525,581 | 14% | ||
pursuant | 0 | 1,148,964,888 | 7.62% | ||
osavi | 0 | 15,211,936,652 | 100% | ||
thelogicaldude | 0 | 19,618,388,840 | 60% | ||
smonbear | 0 | 1,076,003,858 | 100% | ||
denizcakmak | 0 | 827,813,692 | 50% | ||
wolffeys | 0 | 12,131,238,953 | 100% | ||
narodowcy.net | 0 | 11,294,554,990 | 100% | ||
cryptofiloz | 0 | 80,467,787,269 | 50% | ||
projectdignity | 0 | 2,368,890,397 | 100% | ||
squidben1 | 0 | 2,559,123,073 | 100% | ||
alenox | 0 | 1,198,545,839 | 10% | ||
punia | 0 | 896,156,136 | 100% | ||
photographercr | 0 | 528,143,669 | 20% | ||
ftouch | 0 | 1,289,004,296 | 100% | ||
bigmoneyman | 0 | 905,316,203 | 50% | ||
radaquest | 0 | 305,177,074,296 | 40% | ||
libertycrypto27 | 0 | 663,253,786,920 | 100% | ||
nooblogger | 0 | 4,689,222,165 | 50% | ||
beerlover | 0 | 11,809,348,231 | 10% | ||
tinyhousecryptos | 0 | 471,781,906 | 5% | ||
leighscotford | 0 | 722,715,029 | 1% | ||
iamjohn | 0 | 792,651,771 | 10% | ||
cheer-up | 0 | 22,284,984,087 | 100% | ||
davidtron | 0 | 1,621,505,614 | 26% | ||
imbartley | 0 | 792,527,752 | 25% | ||
misschance | 0 | 16,076,029,195 | 100% | ||
farm1 | 0 | 903,630,849,502 | 100% | ||
freddio.sport | 0 | 3,623,617,286 | 100% | ||
babytarazkp | 0 | 2,580,163,106 | 50% | ||
valerianis | 0 | 626,851,204 | 10% | ||
wrestlingdesires | 0 | 107,989,725,001 | 100% | ||
sbi-tokens | 0 | 1,936,823,314 | 1.2% | ||
urun | 0 | 27,956,550,797 | 100% | ||
wanderingmoon | 0 | 5,099,538,228 | 50% | ||
bilpcoinbot | 0 | 2,134,306,448 | 50% | ||
pana1 | 0 | 1,346,873,891 | 100% | ||
dpoll.witness | 0 | 4,888,016,521 | 90% | ||
gigel2 | 0 | 1,074,283,086,313 | 100% | ||
ibelin | 0 | 22,669,092,011 | 70% | ||
anytime-soon | 0 | 7,309,914,224 | 100% | ||
bilpcoin.pay | 0 | 542,484,095 | 10% | ||
tobago | 0 | 522,207,012 | 35% | ||
apineda | 0 | 10,983,001,879 | 100% | ||
lnakuma | 0 | 53,796,046,307 | 100% | ||
asia-pl | 0 | 267,828,531,594 | 100% | ||
bpcvoter | 0 | 923,761,543 | 100% | ||
bpcvoter3 | 0 | 595,606,046 | 35% | ||
zirky | 0 | 48,303,135,569 | 70% | ||
gloriaolar | 0 | 8,294,271,291 | 30% | ||
kgsupport | 0 | 471,044,669 | 10% | ||
dec.entralized | 0 | 20,735,540,350 | 100% | ||
bilpcoinbpc | 0 | 1,121,838,314 | 5% | ||
vault.tokens | 0 | 806,001,176 | 50% | ||
julesquirin | 0 | 11,289,957,905 | 20% | ||
ugochill | 0 | 20,865,047,093 | 50% | ||
nerdvana | 0 | 955,851,937 | 10% | ||
mehmetfix | 0 | 4,143,889,390 | 100% | ||
gleam-of-light | 0 | 111,357,625,317 | 100% | ||
hivefest | 0 | 91,343,569,300 | 100% | ||
peakd | 0 | 4,372,887,227,034 | 100% | ||
hivebuzz | 0 | 5,763,531,259 | 1% | ||
hivewatchers | 0 | 1,934,976,904 | 55% | ||
tht | 0 | 157,254,341,807 | 100% | ||
hivetrending | 0 | 202,650,987,304 | 100% | ||
pxlmitsu | 0 | 4,577,420,617 | 100% | ||
softworld | 0 | 634,442,908,432 | 100% | ||
mcsagel | 0 | 1,080,657,980 | 50% | ||
richgaynor | 0 | 79,490,526,043 | 100% | ||
hivelist | 0 | 167,481,235,111 | 30% | ||
tht1 | 0 | 58,700,491,640 | 100% | ||
ninnu | 0 | 2,197,965,685 | 35% | ||
ecency | 0 | 397,365,728,974 | 1% | ||
quantumg | 0 | 215,941,431,457 | 100% | ||
kingneptune | 0 | 466,574,603 | 50% | ||
woelfchen | 0 | 301,792,222,833 | 100% | ||
actioncats | 0 | 6,948,946,501 | 16% | ||
discoveringarni | 0 | 16,582,547,926 | 15% | ||
noelyss | 0 | 4,485,150,643 | 10% | ||
lesiopm2 | 0 | 16,758,995,393 | 100% | ||
lucianav | 0 | 5,488,296,106 | 10% | ||
patronpass | 0 | 2,485,388,559 | 25% | ||
hiro-hive | 0 | 562,833,545,594 | 100% | ||
jelly13 | 0 | 8,050,202,601 | 85% | ||
plusvault | 0 | 511,996,923 | 25% | ||
gabilan55 | 0 | 1,391,238,169 | 10% | ||
olaunlimited | 0 | 613,548,727 | 45% | ||
mipiano | 0 | 1,160,329,258,685 | 100% | ||
ecency.stats | 0 | 338,419,354 | 1% | ||
akhyar23 | 0 | 493,001,054 | 61% | ||
hive-108278 | 0 | 792,018,623 | 45% | ||
sunitahive | 0 | 35,431,715,078 | 100% | ||
vokus | 0 | 4,370,972,567 | 50% | ||
jelly-cz | 0 | 1,924,475,128 | 100% | ||
liz.writes | 0 | 1,060,059,566 | 50% | ||
enilemor | 0 | 11,145,966,492 | 100% | ||
goliathus | 0 | 2,068,150,884 | 25% | ||
r-nyn | 0 | 146,791,369,120 | 100% | ||
usainvote | 0 | 13,256,648,773,280 | 50% | ||
noalys | 0 | 5,102,681,471 | 10% | ||
museodelcaos | 0 | 5,541,509,914 | 100% | ||
fotobrina | 0 | 2,829,668,558 | 50% | ||
rima11 | 0 | 107,522,912,559 | 4% | ||
bluepluto | 0 | 526,151,829 | 50% | ||
mrtats | 0 | 125,604,515 | 100% | ||
simplymeekarts | 0 | 18,167,418,012 | 100% | ||
willmington-w | 0 | 3,737,116,403 | 95% | ||
mismo | 0 | 46,770,263,061 | 100% | ||
ismaelrd04 | 0 | 10,665,216,710 | 100% | ||
alex-rourke | 0 | 2,395,042,645,314 | 100% | ||
dalz.shorts | 0 | 1,178,752,229 | 50% | ||
birdbeaksd | 0 | 623,049,214 | 100% | ||
bulkathos | 0 | 55,203,177,376 | 100% | ||
feanorgu | 0 | 38,432,417,367 | 80% | ||
dadspardan | 0 | 11,700,862,319 | 50% | ||
hykss.leo | 0 | 206,878,080,994 | 20% | ||
eldritchspig | 0 | 862,271,570 | 50% | ||
unclefunker | 0 | 1,596,802,856 | 100% | ||
trostparadox | 0 | 4,610,048,931,813 | 100% | ||
sparker005 | 0 | 901,620,714 | 100% | ||
eturnerx-dbuzz | 0 | 21,311,225,416 | 65.8% | ||
altor | 0 | 28,756,449,369 | 100% | ||
joven777 | 0 | 209,553,116,144 | 100% | ||
cookaiss | 0 | 6,521,095,180 | 35% | ||
xrayman | 0 | 91,159,869,199 | 100% | ||
ausbit.dev | 0 | 23,444,521,155 | 100% | ||
huzzah | 0 | 35,649,615,972 | 100% | ||
elgatoshawua | 0 | 3,225,271,040 | 10% | ||
xyba | 0 | 49,952,461,563 | 100% | ||
cooperclub | 0 | 3,351,408,755 | 50% | ||
vaipraonde | 0 | 5,912,116,007 | 100% | ||
cowboyphylosophy | 0 | 28,611,084,576 | 75% | ||
proofofbrainio | 0 | 39,490,322,518 | 50% | ||
wend1go | 0 | 26,139,917,251 | 100% | ||
creodas | 0 | 2,630,747,318 | 75% | ||
drricksanchez | 0 | 55,554,590,780 | 10% | ||
hexagono6 | 0 | 1,342,171,215 | 10% | ||
hive.pizza | 0 | 2,506,956,556,258 | 100% | ||
jane1289 | 0 | 6,947,536,254 | 4% | ||
princess001 | 0 | 938,946,893 | 100% | ||
power-kappe | 0 | 1,429,737,480 | 20% | ||
pizzabot | 0 | 5,984,784,598 | 100% | ||
dajokawild | 0 | 74,022,431,573 | 50% | ||
reidenling90 | 0 | 3,217,294,426 | 100% | ||
hjrrodriguez | 0 | 71,557,327,810 | 100% | ||
farpetrad | 0 | 73,686,522,687 | 80% | ||
rqr4 | 0 | 10,778,497,012 | 56% | ||
shanhenry | 0 | 1,511,360,971 | 37.5% | ||
fotomaglys | 0 | 8,258,994,519 | 10% | ||
seryi13 | 0 | 2,135,594,838 | 14% | ||
emmy3 | 0 | 979,345,303 | 100% | ||
davidbright | 0 | 18,101,982,394 | 50% | ||
godslove123 | 0 | 1,016,532,357 | 10% | ||
flamistan | 0 | 1,286,413,410 | 50% | ||
aprasad2325 | 0 | 3,801,380,520 | 10% | ||
yoieuqudniram | 0 | 2,660,047,150 | 10% | ||
john9inch | 0 | 1,754,043,566 | 50% | ||
celeste413 | 0 | 1,280,145,094 | 100% | ||
szmobacsi | 0 | 1,385,694,740 | 90% | ||
servant7 | 0 | 3,985,986,254 | 100% | ||
onthemountain | 0 | 1,002,061,552 | 50% | ||
trillemille | 0 | 1,143,511,638 | 100% | ||
trentonlundy1 | 0 | 4,182,299,219 | 50% | ||
funshee | 0 | 4,844,210,546 | 25% | ||
andriko | 0 | 647,050,253 | 100% | ||
avidez | 0 | 817,961,982 | 50% | ||
mozzie5 | 0 | 8,594,696,891 | 50% | ||
onewolfe | 0 | 549,039,058 | 50% | ||
banzafahra | 0 | 7,717,851,741 | 50% | ||
acantoni | 0 | 13,777,135,900 | 50% | ||
mcgilli | 0 | 737,563,007 | 100% | ||
astrocat-3663 | 0 | 685,491,438 | 50% | ||
marsupia | 0 | 1,317,466,978 | 35% | ||
spartano | 0 | 17,138,400,612 | 100% | ||
cogie88 | 0 | 2,545,413,260 | 50% | ||
techguard | 0 | 3,459,034,316 | 50% | ||
charlotte01 | 0 | 2,328,214,706 | 100% | ||
thercek | 0 | 800,744,501 | 50% | ||
sephiwolf | 0 | 632,109,063 | 10% | ||
isdarmady | 0 | 7,598,250,410 | 70% | ||
marilour | 0 | 19,694,102,851 | 100% | ||
maroone | 0 | 18,523,157,350 | 100% | ||
h3m4n7 | 0 | 18,959,696,435 | 90% | ||
rickyuribe | 0 | 7,447,964,324 | 100% | ||
mengao | 0 | 502,358,957,136 | 100% | ||
thedoc07 | 0 | 5,536,652,057 | 50% | ||
tillmea | 0 | 466,932,332 | 100% | ||
gaposchkin | 0 | 10,795,363,901 | 100% | ||
krakatice | 0 | 4,994,176,773 | 100% | ||
gezellig | 0 | 2,563,154,104 | 50% | ||
almajandra | 0 | 11,469,181,761 | 100% | ||
mcookies | 0 | 1,378,267,169 | 10% | ||
shalom0809 | 0 | 1,655,701,407 | 100% | ||
godhatesusall | 0 | 0 | 100% | ||
ssebasv | 0 | 6,650,534,240 | 100% | ||
paula1411 | 0 | 612,601,570 | 100% | ||
blackdovy | 0 | 1,608,442,961 | 50% | ||
trostparadox.vyb | 0 | 1,269,877,069 | 50% | ||
vyb.pob | 0 | 2,593,828,464 | 50% | ||
crypt0gnome | 0 | 65,865,742,478 | 50% | ||
lothbrox | 0 | 1,855,476,463 | 100% | ||
owl001 | 0 | 51,282,774,827 | 100% | ||
jomancub | 0 | 985,168,846 | 30% | ||
saboin.pob | 0 | 293,264,760 | 50% | ||
albiro2050 | 0 | 12,301,564,846 | 100% | ||
highfist | 0 | 4,470,946,706 | 50% | ||
hoffmeister84 | 0 | 14,469,836,433 | 100% | ||
vyb.curation | 0 | 1,492,388,815 | 50% | ||
manuelernestogr | 0 | 464,897,935 | 30% | ||
blocktunes | 0 | 1,817,444,721 | 10% | ||
ducecrypto | 0 | 24,492,315,794 | 100% | ||
zihadlo | 0 | 641,273,238 | 40% | ||
studio3141 | 0 | 505,260,291 | 50% | ||
davidosunamusic | 0 | 3,244,392,535 | 100% | ||
karelnt | 0 | 947,862,376 | 30% | ||
nicklewis | 0 | 2,127,949,383 | 5% | ||
gledys19 | 0 | 5,001,378,627 | 100% | ||
gone-hive | 0 | 931,764,179 | 80% | ||
padreelferenco | 0 | 0 | 30% | ||
abelfotografia | 0 | 41,023,093,918 | 12% | ||
tgarcialvarez | 0 | 924,275,602 | 30% | ||
pobscholarship | 0 | 570,807,357 | 50% | ||
amakauz | 0 | 11,483,553,482 | 50% | ||
dreloop07 | 0 | 14,077,612,220 | 100% | ||
hivecuba | 0 | 635,093,242,652 | 30% | ||
eyesthewriter | 0 | 0 | 100% | ||
incantia | 0 | 684,574,229 | 70% | ||
vyb.fund | 0 | 1,134,885,363 | 50% | ||
elchaleefatoe15 | 0 | 1,107,559,668 | 4% | ||
prosocialise | 0 | 226,061,674,698 | 50% | ||
nthtv | 0 | 134,492,296,159 | 100% | ||
demoad | 0 | 1,215,563,744 | 15% | ||
plicc8 | 0 | 1,064,971,930 | 100% | ||
serpent7776 | 0 | 364,632,418 | 100% | ||
ricardoeloy | 0 | 531,746,640 | 15% | ||
androliuben | 0 | 2,230,888,954 | 15% | ||
hmvf | 0 | 30,301,110,644 | 5% | ||
abouttodie | 0 | 4,449,783,456 | 100% | ||
sabajfa | 0 | 6,194,622,346 | 50% | ||
caelum1infernum | 0 | 8,551,609,170 | 20% | ||
crazygirl777 | 0 | 6,160,619,073 | 50% | ||
franzpaulie | 0 | 43,984,306,527 | 100% | ||
castri-ja | 0 | 504,674,595 | 5% | ||
criptocuates | 0 | 992,482,635 | 100% | ||
quantumgee | 0 | 7,765,194,905 | 100% | ||
dutchchemist | 0 | 465,169,967 | 100% | ||
llunasoul | 0 | 39,016,785,632 | 96% | ||
lordshah | 0 | 24,290,790,792 | 56% | ||
coldbeetrootsoup | 0 | 999,512,164,455 | 100% | ||
mortsanchezzz | 0 | 3,950,505,083 | 100% | ||
growandbow | 0 | 171,586,818,272 | 96% | ||
tzae | 0 | 1,810,401,612 | 100% | ||
elisilva05 | 0 | 4,620,074,848 | 100% | ||
lyamalfonzo23 | 0 | 2,316,510,254 | 100% | ||
mcgi.cares | 0 | 6,099,912,783,112 | 100% | ||
soy-laloreto | 0 | 12,754,771,249 | 35% | ||
hive-117638 | 0 | 540,724,450 | 16% | ||
revise.spk | 0 | 523,493,077 | 70% | ||
bgmoha | 0 | 3,998,205,160 | 55% | ||
pacobeta365 | 0 | 1,559,032,884 | 6% | ||
thoth442 | 0 | 10,721,075,262 | 50% | ||
pinkchic | 0 | 3,265,321,772 | 5% | ||
queercoin | 0 | 201,242,284,885 | 100% | ||
micheal87 | 0 | 656,299,728 | 20% | ||
jhero22 | 0 | 63,012,784,412 | 100% | ||
hive-132595 | 0 | 1,833,235,893 | 100% | ||
artefactoestudio | 0 | 482,060,853 | 20% | ||
ogfox | 0 | 63,846,709,685 | 100% | ||
mizlhaine | 0 | 3,218,942,261 | 50% | ||
masterfarmer | 0 | 1,436,560,338 | 100% | ||
theoneblog | 0 | 1,090,351,502 | 15% | ||
gornat | 0 | 5,116,959,575 | 30% | ||
bitphoto | 0 | 6,134,119,111 | 100% | ||
marriot5464 | 0 | 0 | 100% | ||
stephenezike | 0 | 1,113,173,237 | 20% | ||
akijirokoma | 0 | 1,703,147,403 | 100% | ||
krios003 | 0 | 7,774,325,636 | 100% | ||
wendy23 | 0 | 8,111,996,072 | 15% | ||
abu78 | 0 | 42,971,202,912 | 99.6% | ||
miztajovial | 0 | 471,191,597 | 10% | ||
davchi2 | 0 | 3,467,833,577 | 100% | ||
ibbtammy | 0 | 129,754,842,013 | 100% | ||
dovycola | 0 | 3,925,996,766 | 100% | ||
chidistickz | 0 | 10,068,625,110 | 50% | ||
dahpilot | 0 | 1,599,442,559 | 10% | ||
buffalo.pob | 0 | 0 | 100% | ||
miladesign | 0 | 40,922,059,736 | 100% | ||
egbre | 0 | 838,997,827 | 20% | ||
fire.phoenix | 0 | 6,126,105,085 | 100% | ||
freiheitsammler | 0 | 180,466,459,519 | 100% | ||
tahastories1 | 0 | 1,222,050,664 | 10% | ||
coinjoe | 0 | 21,866,876,190 | 20% | ||
les90 | 0 | 2,095,058,856 | 10% | ||
aslamrer | 0 | 23,811,547,437 | 100% | ||
kawa-i-kredki | 0 | 3,716,282,241 | 100% | ||
samueluche07 | 0 | 2,379,173,754 | 50% | ||
elrish10 | 0 | 113,930,213,625 | 100% | ||
epiko | 0 | 31,832,669,896 | 73% | ||
joyce152218 | 0 | 4,541,341,220 | 100% | ||
bihutnetwork | 0 | 2,439,083,320 | 50% | ||
mita3 | 0 | 5,987,358,716 | 100% | ||
rubenstorm | 0 | 985,027,009 | 100% | ||
hive-lu | 0 | 86,146,000,657 | 14.45% | ||
boblazar | 0 | 1,403,014,556 | 100% | ||
oladamola | 0 | 39,294,641,241 | 35% | ||
edeyglezsosa | 0 | 1,699,148,310 | 6% | ||
like2cbrs | 0 | 668,346,836 | 100% | ||
mayramalu | 0 | 1,171,770,496 | 15% | ||
reyn-is-chillin | 0 | 733,558,498 | 50% | ||
btcyberpunk | 0 | 498,186,099 | 30% | ||
hivebeecon | 0 | 11,426,554,670 | 100% | ||
hive-180658 | 0 | 759,932,996 | 100% | ||
riseofthepixels | 0 | 12,710,911,666 | 100% | ||
thebeedevs | 0 | 50,227,659,030 | 100% | ||
axobtc | 0 | 3,279,372,857 | 100% | ||
rociopmz | 0 | 2,547,310,984 | 100% | ||
miguelreinierp2 | 0 | 303,496,562 | 31% | ||
cbrsphilanthropy | 0 | 80,702,833,156 | 100% | ||
samstreamer | 0 | 2,490,037,133 | 100% | ||
ene22 | 0 | 3,475,830,733 | 100% | ||
thewobs94 | 0 | 691,724,451 | 100% | ||
salmeron-sw | 0 | 4,819,710,729 | 100% | ||
moireyes | 0 | 1,227,002,195 | 100% | ||
pixels.vault | 0 | 526,643,766,516 | 100% | ||
ibarra95 | 0 | 3,605,794,221 | 100% | ||
lara77 | 0 | 111,315,485 | 100% | ||
contestbox | 0 | 678,061,796 | 10% | ||
actifit-godfish | 0 | 2,814,398,916 | 100% | ||
justinmora | 0 | 90,249,788,163 | 100% | ||
lamaluis79 | 0 | 2,969,644,472 | 100% | ||
pollodlp | 0 | 2,317,730,911 | 100% | ||
setpiece | 0 | 902,572,948 | 100% | ||
frgnholding | 0 | 66,700,768,240 | 100% | ||
lolz.byte | 0 | 0 | 100% | ||
rostik924 | 0 | 27,959,828,900 | 50% | ||
leader7 | 0 | 1,344,456,904 | 100% | ||
profwhitetower | 0 | 378,029,085 | 100% | ||
tecnotronics | 0 | 0 | 100% | ||
tazifit | 0 | 12,733,750,258 | 39% | ||
soyernesto | 0 | 697,387,541 | 15% | ||
kreatura | 0 | 8,352,215,337 | 50% | ||
arieswilly | 0 | 0 | 100% | ||
mayor-001 | 0 | 1,939,410,489 | 100% | ||
ivyamor | 0 | 948,614,258 | 100% | ||
photoaddictive | 0 | 0 | 100% | ||
bineeti123 | 0 | 0 | 100% | ||
jenajean | 0 | 18,531,532 | 10% | ||
cocinator | 0 | 0 | 100% |
I'm glad people be doing all this but me. I do not want to blow my heads up trying to comprehend this post. It really amazing some commenters find it easy and useful. Kudos
author | ajorundon |
---|---|
permlink | sguy5k |
category | hive-160391 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-07-19 06:32:09 |
last_update | 2024-07-19 06:32:09 |
depth | 1 |
children | 0 |
last_payout | 2024-07-26 06:32: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 | 172 |
author_reputation | 16,034,323,828,024 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,384,993 |
net_rshares | 0 |
I'm trying to get a Hive witness node up and running on a local machine (Intel i5 8400 64G RAM 1 Tb NVMe & 500Gb NVMe). I downloaded @gtg's blocklog and ran replay. It created a blocklog index that expanded to 462Gb and ate all the space on the 1Tb NVMe. Is this supposed to happen? Can I move the index to the 2nd 500Gb NVMe which is empty? I'm using @someguy123's Hive in a Box
author | apshamilton |
---|---|
permlink | re-gtg-sm9unl |
category | hive-160391 |
json_metadata | {"tags":"hive-160391"} |
created | 2024-11-01 12:28:36 |
last_update | 2024-11-01 12:29:06 |
depth | 1 |
children | 1 |
last_payout | 2024-11-08 12:28: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 | 381 |
author_reputation | 212,460,980,305,363 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,213,746 |
net_rshares | 0 |
There's no block_log.index file anymore, it was replaced by block_log.artifacts a while ago, and regardless the name, it shouldn't be that big. Once you downloaded block_log from my site you could do the same with artifacts (it would save some time for regeneration if you have fast network, otherwise it might not be worth the hassle). My instruction above is for this kind of deployment, I never used "in a box" stuff, so I don't know it's quirks and specifics.
author | gtg |
---|---|
permlink | sma7i8 |
category | hive-160391 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-11-01 17:06:09 |
last_update | 2024-11-01 17:06:09 |
depth | 2 |
children | 0 |
last_payout | 2024-11-08 17:06: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 | 465 |
author_reputation | 461,858,845,292,188 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,217,648 |
net_rshares | 0 |
Alright this looks rather easy and now I'm going to be honest I'm seriously thinking about launching one and learning from people such as yourself. I used to run a number of nodes years ago for other blockchains. Thanks for the deets!
author | bitcoinflood |
---|---|
permlink | re-gtg-2024717t161851731z |
category | hive-160391 |
json_metadata | {"tags":["hivepressure","dev","witness-category","hive"],"app":"ecency/3.2.0-vision","format":"markdown+html"} |
created | 2024-07-17 20:18:54 |
last_update | 2024-07-17 20:18:54 |
depth | 1 |
children | 0 |
last_payout | 2024-07-24 20:18:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.066 HBD |
curator_payout_value | 0.065 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 234 |
author_reputation | 1,645,032,522,271,404 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,336,512 |
net_rshares | 400,432,037,382 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 380,946,755,028 | 1% | ||
justinw | 0 | 1,521,632,556 | 0.33% | ||
thelogicaldude | 0 | 13,167,426,643 | 40% | ||
vaipraonde | 0 | 4,796,223,155 | 80% |
Thank you so much for this step by step guide. I have longed to get the one that is written like this. This looks easy and smart, I have reblogged it for reference purposes. I will revisit it once I purchase a server for the set-up. Thank you once again.
author | chibuzorwisdom |
---|---|
permlink | sgsdt8 |
category | hive-160391 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-07-17 21:17:33 |
last_update | 2024-07-17 21:17:33 |
depth | 1 |
children | 0 |
last_payout | 2024-07-24 21:17:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.062 HBD |
curator_payout_value | 0.062 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 256 |
author_reputation | 1,432,567,144,238 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,339,418 |
net_rshares | 382,322,638,740 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 380,801,189,727 | 1% | ||
justinw | 0 | 1,521,449,013 | 0.33% |
Congratulations @gtg! Your post has been a top performer on the Hive blockchain and you have been rewarded with this rare badge <table><tr><td><img src="https://images.hive.blog/60x60/https://hivebuzz.me/badges/toppayoutday.png"></td><td>Post with the highest payout of the day.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@gtg) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>
author | hivebuzz |
---|---|
permlink | notify-1721270615 |
category | hive-160391 |
json_metadata | {"image":["https://hivebuzz.me/notify.t6.png"]} |
created | 2024-07-18 02:43:36 |
last_update | 2024-07-18 02:43:36 |
depth | 1 |
children | 0 |
last_payout | 2024-07-25 02:43: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 | 562 |
author_reputation | 370,664,317,680,400 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,349,148 |
net_rshares | 0 |
Congratulations @gtg! Your post has been a top performer on the Hive blockchain and you have been rewarded with this rare badge <table><tr><td><img src="https://images.hive.blog/60x60/https://hivebuzz.me/badges/toppayoutweek.png"></td><td>Post with the highest payout of the week.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@gtg) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>
author | hivebuzz |
---|---|
permlink | notify-1721609035 |
category | hive-160391 |
json_metadata | {"image":["https://hivebuzz.me/notify.t6.png"]} |
created | 2024-07-22 00:43:57 |
last_update | 2024-07-22 00:43:57 |
depth | 1 |
children | 0 |
last_payout | 2024-07-29 00:43: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 | 564 |
author_reputation | 370,664,317,680,400 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,451,575 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
guest4test1 | 0 | 0 | 0% |
author | magicmonk |
---|---|
permlink | re-gtg-sh3ejg |
category | hive-160391 |
json_metadata | {"tags":["hive-160391"],"app":"peakd/2024.7.3"} |
created | 2024-07-23 20:06:51 |
last_update | 2024-07-23 20:06:51 |
depth | 1 |
children | 0 |
last_payout | 2024-07-30 20:06:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.078 HBD |
curator_payout_value | 0.077 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 1,109,574,021,357,074 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,516,330 |
net_rshares | 470,552,224,727 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 468,893,312,344 | 1% | ||
justinw | 0 | 1,658,912,383 | 0.33% |
> sudo mount -o remount,size=30G /run Why 30G though? Isn't it enough to be of the size of `shared_memory.bin`? In that case setting both the size of shm and ram-disk to 22G should still have decent margin (4-5G). > downloading it could take a significant amount of time (6-12 hours even with a decent network connection) 12 hours is only a bit less than syncing from scratch through p2p, so downloading in that case is not a viable solution 😁 > /home/hive/datadir/blockchain/block_log and /home/hive/datadir/blockchain/block_log.artifacts will be created So, I guess the version supporting split block log is the next one, right?
author | miosha |
---|---|
permlink | re-gtg-2024718t01234956z |
category | hive-160391 |
json_metadata | {"tags":["hivepressure","dev","witness-category","hive"],"app":"ecency/3.0.35-surfer","format":"markdown+html"} |
created | 2024-07-17 22:12:33 |
last_update | 2024-07-17 22:12:33 |
depth | 1 |
children | 10 |
last_payout | 2024-07-24 22:12:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.214 HBD |
curator_payout_value | 0.215 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 635 |
author_reputation | 33,410,195,387,210 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,341,722 |
net_rshares | 1,306,267,978,075 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 1,299,423,077,446 | 3% | ||
justinw | 0 | 4,817,970,016 | 0.99% | ||
criptovalor | 0 | 2,026,930,613 | 100% |
> Why 30G though? Isn't it enough to be of the size of shared_memory.bin? In that case setting both the size of shm and ram-disk to 22G should still have decent margin (4-5G). `/run` that I use in my way of setting things up is a system-wide place to store various run-time data, so I can't use all of it. I use higher values because I keep same setup scripts for other nodes, and for my fully featured account history node it's already: `du -csh /run/hive/shared_memory.bin`: ``` 22G /run/hive/shared_memory.bin ``` But that doesn't matter much, the configured size limit doesn't pre-allocate RAM. It simply sets an upper boundary on how much space can be used. > 12 hours is only a bit less than syncing from scratch through p2p, so downloading in that case is not a viable solution 😁 I'm not that sure if it's just a bit less, one of my recent sync tests (6 weeks ago) took me 42 hours. I'm afraid that you might be too optimistic about sync speed in real life conditions. > So, I guess the version supporting split block log is the next one, right? Yes! :-) I can't wait for that. Unfortunately being a most used block_log provider I have to wait for global adoption. Or do I? :-) Once it's officially released I will switch :-D
author | gtg |
---|---|
permlink | sgtfku |
category | hive-160391 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-07-18 10:53:18 |
last_update | 2024-07-18 10:53:18 |
depth | 2 |
children | 9 |
last_payout | 2024-07-25 10:53: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 | 1,239 |
author_reputation | 461,858,845,292,188 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,357,139 |
net_rshares | 0 |
> I'm afraid that you might be too optimistic about sync speed in real life conditions. I just started syncing on latest develop, so I guess we will know soon enough 😄
author | miosha |
---|---|
permlink | re-gtg-2024718t215335371z |
category | hive-160391 |
json_metadata | {"tags":["ecency"],"app":"ecency/3.0.35-surfer","format":"markdown+html"} |
created | 2024-07-18 19:53:36 |
last_update | 2024-07-18 19:53:36 |
depth | 3 |
children | 0 |
last_payout | 2024-07-25 19:53:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.076 HBD |
curator_payout_value | 0.076 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 168 |
author_reputation | 33,410,195,387,210 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,366,215 |
net_rshares | 472,855,741,348 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 471,218,741,269 | 1% | ||
justinw | 0 | 1,637,000,079 | 0.33% |
Damn you 😡 It is still going. You were right and I remembered it wrong. I've dug out a 15 months old results of full sync and it was running over 37 hours up to 72M+. Compared to that current version appears to be slightly faster, but still couple times slower than what I thought it would be. To be honest it smells like a bug (or more optimistically - as an optimization opportunity). There are couple of hiccups when node is not receiving blocks fast enough, but for the most part block processing is reported at close to 100% time. On the other hand computer seems to be sleeping, using around single core only, which is weird, since decomposing signatures, that used to make sync 7 times slower than replay, since HF26 is supposedly done on multiple threads and preemptively, as soon as block arrives, so I'd expect at least some bursts of higher CPU activity. Maybe I should use some config option for that? It would be nice to have a comparison on the same machine: pure replay vs replay with full validation vs sync.
author | miosha |
---|---|
permlink | re-gtg-2024720t2612710z |
category | hive-160391 |
json_metadata | {"tags":["ecency"],"app":"ecency/3.0.35-surfer","format":"markdown+html"} |
created | 2024-07-20 00:06:12 |
last_update | 2024-07-20 00:06:12 |
depth | 3 |
children | 7 |
last_payout | 2024-07-27 00:06:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.214 HBD |
curator_payout_value | 0.215 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,026 |
author_reputation | 33,410,195,387,210 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,399,441 |
net_rshares | 1,319,062,076,077 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 1,314,093,734,749 | 3% | ||
justinw | 0 | 4,968,341,328 | 0.99% |
>Congratulations, you have your Hive node running! Thank you, this was *very easy and quick* - I didn't even wait for 36 hours and this congratulation arrived 😜
author | mipiano |
---|---|
permlink | re-gtg-sgsbjd |
category | hive-160391 |
json_metadata | {"tags":["hive-160391"],"app":"peakd/2024.7.2"} |
created | 2024-07-17 20:28:27 |
last_update | 2024-07-17 20:28:27 |
depth | 1 |
children | 0 |
last_payout | 2024-07-24 20:28:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.062 HBD |
curator_payout_value | 0.062 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 165 |
author_reputation | 1,667,848,361,247,121 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,336,967 |
net_rshares | 382,395,505,880 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 380,873,965,098 | 1% | ||
justinw | 0 | 1,521,540,782 | 0.33% |
I have zero knowledge about this. lol
author | mr-press | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | sgtcev | ||||||||||||
category | hive-160391 | ||||||||||||
json_metadata | {"app":"hiveblog/0.1"} | ||||||||||||
created | 2024-07-18 09:45:42 | ||||||||||||
last_update | 2024-07-18 09:45:42 | ||||||||||||
depth | 1 | ||||||||||||
children | 0 | ||||||||||||
last_payout | 2024-07-25 09:45: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 | 37 | ||||||||||||
author_reputation | 59,757,086,018 | ||||||||||||
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||
percent_hbd | 0 | ||||||||||||
post_id | 135,356,497 | ||||||||||||
net_rshares | 0 |
Thanks. I followed all the steps. Once they finally got the flames under control and I was allowed to gather whatever I could salvage, people wanted answers. So I quickly pulled this post up and started reading it out loud. *Even they understood.*
author | nonameslefttouse |
---|---|
permlink | re-gtg-sguitr |
category | hive-160391 |
json_metadata | {"tags":["hive-160391"],"app":"peakd/2024.7.2"} |
created | 2024-07-19 01:01:03 |
last_update | 2024-07-19 01:01:03 |
depth | 1 |
children | 1 |
last_payout | 2024-07-26 01:01:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.380 HBD |
curator_payout_value | 0.381 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 253 |
author_reputation | 593,361,688,458,528 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,374,276 |
net_rshares | 2,332,741,679,987 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 430,791,495,447 | 1% | ||
meesterboom | 0 | 1,900,367,539,798 | 50% | ||
justinw | 0 | 1,582,644,742 | 0.33% |
Modern day Prometheus! ;-)
author | gtg |
---|---|
permlink | sgv95l |
category | hive-160391 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-07-19 10:29:45 |
last_update | 2024-07-19 10:29:45 |
depth | 2 |
children | 0 |
last_payout | 2024-07-26 10:29:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.048 HBD |
curator_payout_value | 0.048 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 461,858,845,292,188 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,387,495 |
net_rshares | 298,210,485,342 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nonameslefttouse | 0 | 298,210,485,342 | 10% |
This now looks very easy Kudos to you for your hard work!
author | rafzat |
---|---|
permlink | re-gtg-2024718t103332970z |
category | hive-160391 |
json_metadata | {"type":"comment","tags":["hive-160391","hivepressure","dev","witness-category","hive"],"app":"ecency/3.1.0-mobile","format":"markdown+html"} |
created | 2024-07-18 09:33:33 |
last_update | 2024-07-18 09:33:33 |
depth | 1 |
children | 0 |
last_payout | 2024-07-25 09:33: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 | 57 |
author_reputation | 183,560,271,702,716 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,356,377 |
net_rshares | 0 |
Thank you for the instructions
author | sacra97 |
---|---|
permlink | sgufgw |
category | hive-160391 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-07-18 23:48:33 |
last_update | 2024-07-18 23:48:33 |
depth | 1 |
children | 0 |
last_payout | 2024-07-25 23:48: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 | 30 |
author_reputation | 456,239,231,275,654 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,370,635 |
net_rshares | 0 |
Thanks, been looking into running a witness node. Now I just need the machine.
author | thelogicaldude |
---|---|
permlink | re-gtg-sgthpo |
category | hive-160391 |
json_metadata | {"tags":["hive-160391"],"app":"peakd/2024.7.2"} |
created | 2024-07-18 11:39:24 |
last_update | 2024-07-18 11:39:24 |
depth | 1 |
children | 0 |
last_payout | 2024-07-25 11:39: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 | 79 |
author_reputation | 363,164,425,406,271 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,357,820 |
net_rshares | 0 |
I recommend using a named session with screen as well as logging the session. ``` screen -S witness -L -Logfile witness.log ``` You can then use my monitorwitness script to know if it falls behind, https://github.com/officiallymarky/monitorwitness
author | themarkymark |
---|---|
permlink | re-gtg-sgsv1d |
category | hive-160391 |
json_metadata | {"tags":"hive-160391"} |
created | 2024-07-18 03:29:36 |
last_update | 2024-07-18 03:30:42 |
depth | 1 |
children | 1 |
last_payout | 2024-07-25 03:29:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.144 HBD |
curator_payout_value | 0.144 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 250 |
author_reputation | 1,780,044,639,383,645 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,351,178 |
net_rshares | 873,887,790,578 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 865,820,629,885 | 2% | ||
justinw | 0 | 3,194,957,650 | 0.66% | ||
vaipraonde | 0 | 4,872,203,043 | 80% |
LOL It seems like THEMARKYMARK is dealing with some personal drama and mental issues, which might be causing them to spam us and others with baby pics, GIFs, and questionable content he's been doing the same for years. The fun doesn't stop there, as this seems to be a recurring theme with multiple online personas. The real question is, do we want to trust these drama-magnets with our hard-earned funds or any significant influence on Hive? <a href="https://imgflip.com/i/8x4wwr"><img src="https://i.imgflip.com/8x4wwr.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> [On Hive a significant issue exists with automatic upvotes consistently rewarding the same individuals day in and day out](https://www.bilpcoin.com/undefined/@bpcvoter1/on-hive-a-significant-issue-exists-with-automatic-upvotes-consistently-rewarding-the-same-individuals-day-in-and-day-out) [We want to address the issue of downvoting. It has caused pain to many people, and we want to make sure it doesn't happen again reply to @jacobtothe](https://www.bilpcoin.com/undefined/@bpcvoter1/we-want-to-address-the-issue-of-downvoting-it-has-caused-pain-to-many-people-and-we-want-to-make-sure-it-doesn-t-happen-again) [On Hive a significant issue exists with automatic upvotes consistently rewarding the same individuals day in and day out](https://www.bilpcoin.com/undefined/@bpcvoter1/on-hive-a-significant-issue-exists-with-automatic-upvotes-consistently-rewarding-the-same-individuals-day-in-and-day-out) [We hope that those who genuinely care about Hive will reconsider their actions, as continuing down this path could inadvertently harm innocent users who are unaware of these issues](https://www.bilpcoin.com/undefined/@bpcvoter1/we-hope-that-those-who-genuinely-care-about-hive-will-reconsider-their-actions-as-continuing-down-this-path-could-inadvertently) [lol the Marky mark keeps dreaming](https://www.bilpcoin.com/undefined/@bpcvoter1/lol-the-marky-mark-keeps-dreaming) [Marks dream](https://www.bilpcoin.com/undefined/@bilpcoinbpc/marks-dream) https://www.publish0x.com/the-dark-side-of-hive/the-marky-mark-marcus-its-clear-youre-deeply-engaged-in-farm-xmjodol >WE PRAY FOR YOU Posted using [Bilpcoin](https://www.bilpcoin.com/@bpcvoter1/themarkymark-is-dealing-with-some-personal-drama-and-mental-issues-which-might-be-causing-them-to-spam-us-and-others-with-baby) <a href="https://imgflip.com/i/8xbm2o"><img src="https://i.imgflip.com/8xbm2o.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/8xbmd0"><img src="https://i.imgflip.com/8xbmd0.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/8xbmm1"><img src="https://i.imgflip.com/8xbmm1.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/8xbmxq"><img src="https://i.imgflip.com/8xbmxq.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/8xbnas"><img src="https://i.imgflip.com/8xbnas.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> <a href="https://imgflip.com/i/8xbo1d"><img src="https://i.imgflip.com/8xbo1d.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://www.bilpcoin.com/undefined/@bpcvoter1/lol-the-marky-mark-keeps-dreaming >lol the Marky mark keeps dreaming themarkymark (80)in FreeCompliments • 2 days ago No. I downvote spammers, you are a spammer, you get no monies. It’s very simple. In the meantime go get some help. You obviously have some issues going on. 2 days ago in FreeCompliments by themarkymark (80)$0.00 Reply 4 Sort: Trending [-]bpcvoter1 (-4)(1) yesterday · Will be hidden due to low rating GET HELP $0.00Reply Edit [-]themarkymark (80) 4 hours ago I have a personal chef, maid, and a captain for my yacht. What other help do I need? $0.00Reply https://hive.blog/hive-140084/@themarkymark/re-bpcvoter1-sg5l3x @gogreenbuddy THIS MAN IS A TOP HIVE FARMER AND SCAMMER SOME OF HIS OTHER ACCOUNTS @THEMARKYMARK @BUILDAWHALE @IPROMOTE AND 100s more
author | bpcvoter1 |
---|---|
permlink | sgtntd |
category | hive-160391 |
json_metadata | {"users":["gogreenbuddy","themarkymark","buildawhale","ipromote"],"image":["https://i.imgflip.com/8x4wwr.jpg","https://i.imgflip.com/8xbm2o.jpg","https://i.imgflip.com/8xbmd0.jpg","https://i.imgflip.com/8xbmm1.jpg","https://i.imgflip.com/8xbmxq.jpg","https://i.imgflip.com/8xbnas.jpg","https://i.imgflip.com/8xbo1d.jpg"],"links":["https://imgflip.com/i/8x4wwr"],"app":"hiveblog/0.1"} |
created | 2024-07-18 13:51:15 |
last_update | 2024-07-18 13:51:15 |
depth | 2 |
children | 0 |
last_payout | 2024-07-25 13:51: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 | 4,498 |
author_reputation | -19,634,357,944,155 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,359,818 |
net_rshares | 0 |
Thank you for the instructions :) Very useful indeed if I ever want to setup a Hive node :)
author | unbiasedwriter |
---|---|
permlink | re-gtg-sgtny5 |
category | hive-160391 |
json_metadata | {"tags":["hive-160391"],"app":"peakd/2024.7.2"} |
created | 2024-07-18 13:54:06 |
last_update | 2024-07-18 13:54:06 |
depth | 1 |
children | 0 |
last_payout | 2024-07-25 13:54:06 |
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 | 330,086,311,029,017 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,359,870 |
net_rshares | 0 |
This is very helpful and hopefully will help more people to become witness's/node operators. !LUV
author | wanderingmoon |
---|---|
permlink | re-gtg-sgw7if |
category | hive-160391 |
json_metadata | {"tags":["hive-160391"],"app":"peakd/2024.7.2"} |
created | 2024-07-19 22:51:57 |
last_update | 2024-07-19 22:51:57 |
depth | 1 |
children | 0 |
last_payout | 2024-07-26 22:51:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.070 HBD |
curator_payout_value | 0.071 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 97 |
author_reputation | 20,955,529,739,902 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,398,704 |
net_rshares | 439,877,592,149 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 438,254,896,724 | 1% | ||
justinw | 0 | 1,622,695,425 | 0.33% |
> Please note that the block_log is roughly 500GB, downloading it could take a significant amount of time (6-12 hours even with a decent network connection) Seeing this, maybe it is better to have more than 1 TB storage. People often store and run multiple things on their servers.
author | xplosive |
---|---|
permlink | re-gtg-2024720t14543399z |
category | hive-160391 |
json_metadata | {"type":"comment","content_type":"general","tags":["hive-160391","hivepressure","dev","witness-category","hive"],"app":"ecency/3.1.4-mobile","format":"markdown+html"} |
created | 2024-07-20 13:05:45 |
last_update | 2024-07-20 13:05:45 |
depth | 1 |
children | 1 |
last_payout | 2024-07-27 13:05:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.074 HBD |
curator_payout_value | 0.073 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 282 |
author_reputation | 210,209,110,016,089 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,407,698 |
net_rshares | 461,395,863,777 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 458,654,160,539 | 1% | ||
justinw | 0 | 1,619,600,682 | 0.33% | ||
bilpcoinbpc | 0 | 1,122,102,556 | 5% |
Sure, but that depends on use case. People who run hived node should know what they are doing. For example running a witness node assumes that nothig else runs on the same machine.
author | gtg |
---|---|
permlink | re-xplosive-1721493299895 |
category | hive-160391 |
json_metadata | {"format":"markdown+html","app":"@hiveio/wax/0.3.8-stable.240604171105"} |
created | 2024-07-20 16:35:03 |
last_update | 2024-07-20 16:35:03 |
depth | 2 |
children | 0 |
last_payout | 2024-07-27 16:35:03 |
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 | 180 |
author_reputation | 461,858,845,292,188 |
root_title | "Hive Node Setup for the Smart, the Dumb, and the Lazy." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 135,411,329 |
net_rshares | 0 |