https://img.inleo.io/DQmeu5hvUPj5egLNYYMj73DVgoyy9wMyLB1YDnvRjM8Kh4x/image.png Running a Hive witness is typically done on rented hardware due to the demanding space and reliability requirements. Up until now, this required storing the entire block log on disk which currently requires 507GB with an additional 100GB for artifacts and ~24GB for the state. This requires almost 650GB of very fast storage, ideally NVME. This puts it out of reach of most vendors that offer VPS and dedicated server offerings. Starting with 1.27.7, you are able to use what I call a "rolling block log" or specifically the new block-log-split config option. This allows you to only keep X blocks on the file system reducing the space requirements of a node by hundreds of GB. While this is little use for a full node that needs access to all chain data, for a witness this is a huge improvement. I have been testing this feature and have tested it using multiple configurations, to which there are two main options to consider. * Shared Memory on disk * Shared Memory on tmpfs The first option requires very little ram (~4GB) but is slower to to get up and running. The second option requires the entire state file to be in ram but gives you the fastest possible performance. Currently, this requires ~24GB of ram just for the state file and a little more for the OS and processes. You can also use a hybrid option where you get a node to the head block using tmpfs and then take the node down and move the state to the file system, although this only really helps if you want to reboot the node easily, as you can't temporary access additional ram. There is very little you need to do to make this work, for the most part all you need to do is change two lines in your config.ini and sync your node. Using a snapshot, I have been able to get a witness node online from nothing in around 7 minutes. This requires having a *compatible* snapshot available. ### block-log-split option This is the parameter that enables the new rolling block log feature, which officially is known as block log split. This feature splits the block_log into pieces and determines how many pieces you want to save. Each "piece" is 1M blocks, and using a block-log-split = 0 will save no pieces of the block_log to disk. This means the only space requirements is the binaries, configuration file, and the state file as well as a few logs. Using block-log-split = 1 will allow you to have limited access to recent blocks using get_blocks() if you want to interact with the node. You will need to either use a compatible snapshot, or resync your node to use this new feature. Before you do, it is recommended you use at least version 1.27.8 as a few bugs have been fixed. The easiest way to get 1.27.8 is grab the binary from @gtg. `wget https://gtg.openhive.network/get/bin/hived-1.27.8` You can also build the binary yourself using this [guide](https://gitlab.syncad.com/hive/hive/-/blob/master/doc/building.md). There currently are not any compatible snapshots, so I created my own. You can find it [here](https://drive.google.com/file/d/1pjauUlOE6x6Ykw8th0ZnqP58hMT90XYM/view?usp=drive_link). This snapshot is only compatible with the following settings: `plugin = witness condenser_api network_broadcast_api account_by_key database_api state_snapshot` You will need to run the same plugins or you will have problems restarting your node. This is an open issue and should be resolved in the future. `block-log-split = 0` This snapshot only works with block-log-split = 0. If you need to access your node to get blocks and monitor blockchain events from it, you will need at least block_log_split = 1 and will require you do a full sync. For the most part, all you need to do for most people is make sure you are running the same snapshots as I do, and adding the block-log-split parameter. You can then just load the snapshot above using the following to launch your node. `./bin/hived-1.27.8 -d /home/hived/hived --load-snapshot=witness' You will need to create a snapshot directory under your hived folder and unpack the witness.tgz (4.2GB) file there for it to load the snapshot. You can remove the witness.tgz once you have unpacked it. Before doing this, you will need to decide if you want to run the shared memory on disk or tmpfs (ram). Here is what the requirements look like in the two configurations. ### Disk * ~4GB-8GB ram * ~30GB disk space ### Tmpfs * ~28GB ram * ~1GB disk space Keep in mind, you need some breathing room for both configurations to download snapshot, and any additional copies of anything you are working with. ### Example config.ini ``` log-appender = {"appender":"stderr","stream":"std_error"} log-appender = {"appender":"p2p","file":"logs/p2p/p2p.log"} log-logger = {"name":"default","level":"info","appender":"stderr"} log-logger = {"name":"p2p","level":"warn","appender":"p2p"} backtrace = yes plugin = witness condenser_api network_broadcast_api account_by_key database_api state_snapshot #shared-file-dir = "/run/hive" shared-file-size = 24G shared-file-full-threshold = 9500 shared-file-scale-rate = 1000 enable-stale-production = false required-participation = 33 p2p-seed-node = hive-seed.arcange.eu:2001 # @arcange (BE, Wavre) (ASN: Proximus NV) p2p-seed-node = anyx.io:2001 # @anyx (CA) (ASN: OVH SAS) p2p-seed-node = seed.thecryptodrive.com:2001 # @thecryptodrive (DE, Esslingen) (ASN: Hetzner Online GmbH) p2p-seed-node = seed.buildteam.io:2001 # @buildteam (DE) (ASN: Hetzner Online GmbH) p2p-seed-node = seed.hivekings.com:2001 # @drakos (DE, Nuremberg) (ASN: Contabo GmbH) p2p-seed-node = gtg.steem.house:2001 # @gtg (PL) (ASN: OVH SAS) p2p-seed-node = seed.openhive.network:2001 # @gtg (PL) (ASN: OVH SAS) p2p-seed-node = hive-seed.roelandp.nl:2001 # @roelandp (FI, Helsinki) (ASN: Hetzner Online GmbH) p2p-seed-node = node.mahdiyari.info:2001 # @mahdiyari (FI, Helsinki) (ASN: Hetzner Online GmbH) p2p-seed-node = hived.hive-engine.com:2001 # @aggroed (FI) (ASN: Hetzner Online GmbH) p2p-seed-node = hived.splinterlands.com:2001 # @aggroed (FI) (ASN: Hetzner Online GmbH) p2p-seed-node = rpc.ausbit.dev:2001 # @ausbitbank (FI, Tuusula) (ASN: Hetzner Online GmbH) p2p-seed-node = seed.chitty.me:2001 # @chitty (FI) (ASN: Hetzner Online GmbH) p2p-seed-node = hiveseed-fin.privex.io:2001 # @privex (FI, Helsinki) (ASN: Hetzner Online GmbH) p2p-seed-node = seed.liondani.com:2016 # @liondani (GB, Maidstone) (ASN: HostDime.com, Inc.) p2p-seed-node = hiveseed-se.privex.io:2001 # @privex (SE, Stockholm) (ASN: Privex Inc.) webserver-thread-pool-size = 32 p2p-endpoint = 0.0.0.0:35000 block-log-split = 0 ``` You will need to make sure /run is large enough (25GB-30GB is good) to store the shared memory file if you choose to use tmpfs. Using my hardware, I was able copy the files over, unpack the snapshot, and get a node to head block in around 7 minutes using tmpfs and under 20 minutes using disk (dual NVME raid 0). You also can opt to resync your node and not use a snapshot which will typically take 24-48 hours. At this point, you can create your own snapshot using `--dump-snapshot=` parameter when starting your node. 1.27.9 should be considered stable soon, and by the time you decide to give this a try, you may want to use 1.27.9 instead. --- <center>https://images.hive.blog/0x0/https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png </center> [](https://hivesigner.com/sign/account-witness-vote?witness=themarkymark&approve=1)
author | themarkymark |
---|---|
permlink | setup-a-hive-witness-using-the-new-rolling-block-log-feature-jte |
category | witness |
json_metadata | {"app":"leothreads/0.3","canonical_url":"https://inleo.io/@themarkymark/setup-a-hive-witness-using-the-new-rolling-block-log-feature-jte","dimensions":{},"format":"markdown","images":["https://img.inleo.io/DQmeu5hvUPj5egLNYYMj73DVgoyy9wMyLB1YDnvRjM8Kh4x/image.png","https://images.hive.blog/0x0/https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png"],"isPoll":false,"links":["https://gtg.openhive.network/get/bin/hived-1.27.8`","https://gitlab.syncad.com/hive/hive/-/blob/master/doc/building.md).","https://drive.google.com/file/d/1pjauUlOE6x6Ykw8th0ZnqP58hMT90XYM/view?usp=drive_link).","https://steemitimages.com/DQmPkQhAQceC7aHr4Gy5GKv7LMoiy47P7PyaNCeZBHMpFke/white-bg-with-drop-shadow.gif)](https://hivesigner.com/sign/account-witness-vote?witness=themarkymark&approve=1)","https://inleo.io/@themarkymark/setup-a-hive-witness-using-the-new-rolling-block-log-feature-jte)"],"tags":["witness","hive","inleo","neoxian","pob","vyb","cent","hive-engine"],"users":["gtg.","arcange","anyx","thecryptodrive","buildteam","drakos","gtg","roelandp","mahdiyari","aggroed"],"image":["https://img.inleo.io/DQmeu5hvUPj5egLNYYMj73DVgoyy9wMyLB1YDnvRjM8Kh4x/image.png","https://steemitimages.com/DQmcWxV1dpA1eAtw2ipwZiWZkydyVNU5LaLa2Ak1GUnbGmS/The-Marky-Mark.png","https://steemitimages.com/DQmPkQhAQceC7aHr4Gy5GKv7LMoiy47P7PyaNCeZBHMpFke/white-bg-with-drop-shadow.gif"]} |
created | 2025-02-26 17:34:48 |
last_update | 2025-02-26 17:35:03 |
depth | 0 |
children | 52 |
last_payout | 2025-03-05 17:34:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 27.126 HBD |
curator_payout_value | 27.065 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8,162 |
author_reputation | 1,772,881,265,369,453 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,074,180 |
net_rshares | 153,977,638,907,074 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 10,578,697,363,141 | 100% | ||
gtg | 0 | 13,541,957,112,394 | 25% | ||
ausbitbank | 0 | 2,759,625,223,622 | 100% | ||
drakernoise | 0 | 233,950,607,920 | 100% | ||
jeffjagoe | 0 | 3,850,709,512 | 0.5% | ||
diana.catherine | 0 | 2,956,100,466 | 25% | ||
raymonjohnstone | 0 | 6,763,373,543 | 100% | ||
magicmonk | 0 | 7,066,008,665,677 | 100% | ||
josepimpo | 0 | 87,581,861,509 | 100% | ||
oflyhigh | 0 | 4,679,251,010,937 | 100% | ||
bidnat | 0 | 586,819,526 | 37.5% | ||
borran | 0 | 1,202,489,474,120 | 100% | ||
rmach | 0 | 4,962,142,693 | 25% | ||
themonetaryfew | 0 | 661,591,828,774 | 100% | ||
carrinm | 0 | 216,639,524,607 | 18.5% | ||
jacobtothe | 0 | 1,698,589,503,214 | 100% | ||
eforucom | 0 | 169,151,335,292 | 100% | ||
moretea | 0 | 3,031,210,653 | 10% | ||
lydon.sipe | 0 | 6,087,367,535 | 100% | ||
techslut | 0 | 84,140,245,291 | 12.5% | ||
justinw | 0 | 42,821,509,471 | 8.25% | ||
darth-azrael | 0 | 76,433,299,533 | 24% | ||
darth-cryptic | 0 | 14,525,170,525 | 24% | ||
sudutpandang | 0 | 99,065,648 | 100% | ||
thereikiforest | 0 | 1,385,518,060 | 10% | ||
danielsaori | 0 | 509,409,098,632 | 100% | ||
daniel.dalo | 0 | 1,995,720,214 | 25% | ||
grider123 | 0 | 8,803,809,820 | 24% | ||
iansart | 0 | 1,131,825,994 | 25.5% | ||
eliel | 0 | 3,776,407,327 | 5% | ||
valued-customer | 0 | 51,803,764,972 | 25% | ||
uruiamme | 0 | 6,472,218,466 | 60% | ||
stortebeker | 0 | 127,490,370,400 | 50% | ||
anacristinasilva | 0 | 144,243,576,328 | 51% | ||
mahdiyari | 0 | 537,721,752,968 | 100% | ||
chinito | 0 | 2,298,073,326 | 18% | ||
deanlogic | 0 | 13,551,905,207 | 25% | ||
joeyarnoldvn | 0 | 455,683,164 | 1.47% | ||
tattoodjay | 0 | 521,808,912,605 | 15% | ||
unyimeetuk | 0 | 1,094,058,304 | 50% | ||
rafalski | 0 | 1,382,278,689 | 90% | ||
theguruasia | 0 | 3,601,771,997 | 100% | ||
ksteem | 0 | 543,474,779,959 | 30% | ||
shebe | 0 | 746,240,533 | 6% | ||
leaky20 | 0 | 509,340,618,489 | 75% | ||
davedickeyyall | 0 | 115,836,338,144 | 25% | ||
vikisecrets | 0 | 842,772,617,797 | 33% | ||
kharrazi | 0 | 787,547,279 | 18.5% | ||
ahlawat | 0 | 1,603,566,900 | 3% | ||
shanibeer | 0 | 863,491,463,209 | 35% | ||
spiceboyz | 0 | 1,163,705,231 | 37% | ||
valchiz | 0 | 5,982,433,088 | 50% | ||
etblink | 0 | 2,620,437,966 | 0.25% | ||
chops316 | 0 | 194,877,825,443 | 100% | ||
felander | 0 | 596,870,420,864 | 100% | ||
santigs | 0 | 368,879,421,307 | 52% | ||
holbein81 | 0 | 591,256,912 | 100% | ||
yogacoach | 0 | 22,602,086,959 | 100% | ||
artlover | 0 | 1,796,065,817 | 100% | ||
taskmaster4450 | 0 | 1,524,665,334,265 | 100% | ||
deathwing | 0 | 1,787,612,192,744 | 50% | ||
revisesociology | 0 | 3,649,847,282,823 | 100% | ||
yabapmatt | 0 | 23,786,923,208,658 | 100% | ||
jlsplatts | 0 | 26,072,975,669 | 2% | ||
dagger212 | 0 | 369,448,073,081 | 100% | ||
steemseph | 0 | 33,704,586,729 | 25% | ||
seareader1 | 0 | 613,373,828 | 5% | ||
simgirl | 0 | 7,071,481,478 | 18.5% | ||
dejan.vuckovic | 0 | 15,007,968,461 | 15% | ||
mrhill | 0 | 1,111,834,933 | 2.5% | ||
gianluccio | 0 | 82,957,434,353 | 33.3% | ||
ciuoto | 0 | 13,849,715,955 | 18.5% | ||
emrebeyler | 0 | 2,210,942,111,654 | 35% | ||
fredkese | 0 | 3,572,956,510 | 30% | ||
travoved | 0 | 72,593,756,236 | 100% | ||
aboutcoolscience | 0 | 11,635,871,402 | 40% | ||
popurri | 0 | 639,691,376 | 18.5% | ||
mytechtrail | 0 | 16,926,988,370 | 15% | ||
sunnyali | 0 | 522,030,140 | 12.5% | ||
alexandraioana26 | 0 | 4,976,754,987 | 12.5% | ||
marcolino76 | 0 | 1,011,440,106 | 18.5% | ||
sneakyninja | 0 | 931,566,528 | 1.35% | ||
vempromundo | 0 | 108,348,626,596 | 100% | ||
wiseagent | 0 | 141,366,805,114 | 15% | ||
californiacrypto | 0 | 869,718,745 | 50% | ||
deepresearch | 0 | 1,312,258,244,415 | 31% | ||
branbello | 0 | 1,497,356,212 | 25% | ||
hijosdelhombre | 0 | 71,563,071,783 | 50% | ||
mmmmkkkk311 | 0 | -5,371,004,416 | -10% | ||
aiziqi | 0 | 1,074,746,966 | 5% | ||
edicted | 0 | 4,376,084,114,990 | 51% | ||
m1alsan | 0 | 30,863,977,546 | 25% | ||
philnewton | 0 | 1,365,020,796 | 15% | ||
udabeu | 0 | 59,366,718,016 | 56% | ||
roger.remix | 0 | 1,329,395,430 | 100% | ||
fieryfootprints | 0 | 97,006,667,220 | 40% | ||
steemflagrewards | 0 | 388,193,260,775 | 100% | ||
beautifulfield | 0 | 1,021,440,443 | 40% | ||
shmoogleosukami | 0 | 189,804,764,204 | 30% | ||
unconditionalove | 0 | 13,330,524,030 | 50% | ||
upfundme | 0 | 27,757,338,973 | 75% | ||
piumadoro | 0 | 16,048,809,081 | 37% | ||
sudefteri | 0 | 41,211,842,358 | 50% | ||
robertbira | 0 | 1,040,493,863 | 2.5% | ||
condeas | 0 | 385,024,185,036 | 20% | ||
nataboo | 0 | 627,255,643 | 25% | ||
alexdory | 0 | 4,657,743,091 | 25% | ||
asgarth | 0 | 1,894,626,388,873 | 100% | ||
samostically | 0 | 1,054,102,165 | 50% | ||
lakawero | 0 | 661,566,222 | 37.5% | ||
bozz | 0 | 384,673,598,416 | 20% | ||
movement19 | 0 | 7,048,263,197 | 25% | ||
akifane | 0 | 1,431,934,444 | 50% | ||
lisfabian | 0 | 4,393,506,774 | 100% | ||
didutza | 0 | 1,222,499,427 | 75% | ||
kilianparadise | 0 | 721,857,529 | 18.75% | ||
sarmaticus | 0 | 204,724,035,502 | 100% | ||
jonmylestan | 0 | 1,579,103,155 | 25% | ||
sbarandelli | 0 | 1,094,495,524 | 37% | ||
cryptozdk | 0 | 584,187,013 | 25% | ||
mima2606 | 0 | 13,883,027,673 | 35% | ||
greendo | 0 | 865,365,635 | 50% | ||
grzyb77 | 0 | 680,040,161 | 7.5% | ||
a0i | 0 | 6,113,836,547 | 37% | ||
andablackwidow | 0 | 67,326,757,546 | 100% | ||
bdlatif | 0 | 1,155,943,966 | 25% | ||
bil.prag | 0 | 115,387,795,076 | 12% | ||
vcclothing | 0 | 160,016,372,843 | 100% | ||
vittoriozuccala | 0 | 8,594,027,837 | 18.5% | ||
mariuszkarowski | 0 | -733,315,715 | -10% | ||
jkramer | 0 | 1,562,781,400,754 | 100% | ||
racibo | 0 | 6,481,266,638 | 5% | ||
pelin | 0 | 1,063,322,163 | 100% | ||
laviniatherapist | 0 | 1,011,600,551 | 21.25% | ||
awesomegames007 | 0 | 29,478,253,625 | 25% | ||
sensorycznyswiat | 0 | 6,970,837,344 | 100% | ||
themightyvolcano | 0 | 22,114,925,027 | 100% | ||
gifty-e | 0 | 740,525,004 | 100% | ||
voitaksoutache | 0 | 1,153,567,270 | 12.5% | ||
spaghettiscience | 0 | 9,580,722,030 | 37% | ||
steemromania | 0 | 7,727,013,247 | 25% | ||
sbi3 | 0 | 219,880,502,509 | 9.21% | ||
phage93 | 0 | 6,951,754,834 | 37% | ||
solominer | 0 | 21,773,635,260,086 | 100% | ||
superlao | 0 | 1,356,172,686 | 2.5% | ||
fw206 | 0 | 2,391,407,385,295 | 30% | ||
crystalhuman | 0 | 1,008,853,641 | 100% | ||
enforcer48 | 0 | 100,541,533,709 | 50% | ||
cambridgeport90 | 0 | 7,046,641,964 | 25% | ||
cooltivar | 0 | 1,330,161,236 | 29.6% | ||
cryptoandcoffee | 0 | 918,337,073,261 | 20% | ||
idayrus | 0 | 45,809,537,120 | 27.75% | ||
steemitcanarias | 0 | 569,731,356 | 37.5% | ||
swisswitness | 0 | 582,143,920 | 100% | ||
bjornb | 0 | 828,012,615 | 25% | ||
cheese4ead | 0 | 16,345,545,065 | 10% | ||
carolinaelly | 0 | 2,651,973,048 | 100% | ||
mannacurrency | 0 | 10,152,685,492 | 5% | ||
nattybongo | 0 | 6,726,097,457 | 18.5% | ||
kwilley | 0 | 20,926,977,847 | 25% | ||
doodle.danga | 0 | 2,553,059,490 | 37% | ||
xves | 0 | 20,200,600,374 | 50% | ||
qila | 0 | 5,710,187,635 | 50% | ||
thedailysneak | 0 | 1,232,391,799 | 1.35% | ||
armandosodano | 0 | 49,287,633,578 | 25.9% | ||
ezunjoshy | 0 | 2,977,117,930 | 25% | ||
teamvn | 0 | 9,211,004,875 | 7.03% | ||
smartvote | 0 | 78,799,068,548 | 3.7% | ||
vixmemon | 0 | 8,938,071,260 | 30.27% | ||
mr-hades | 0 | 3,967,255,985 | 100% | ||
coccodema | 0 | 2,122,791,199 | 18.5% | ||
ataliba | 0 | 14,258,553,346 | 50% | ||
fijimermaid | 0 | 577,676,989,769 | 100% | ||
jessica.steem | 0 | 2,331,689,531 | 31.45% | ||
actifit | 0 | 4,161,347,756,397 | 50% | ||
admiralbot | 0 | 7,294,201,260 | 100% | ||
stefano.massari | 0 | 62,853,503,035 | 24% | ||
ldp | 0 | 471,894,564 | 100% | ||
thevil | 0 | 907,614,080,687 | 100% | ||
besheda | 0 | 2,717,768,815 | 100% | ||
thrasher666 | 0 | 2,544,797,130 | 60% | ||
linuxbot | 0 | 5,880,470,945 | 20% | ||
geekdancing | 0 | 7,800,692,595 | 25% | ||
middleearth | 0 | 1,448,956,560 | 37% | ||
adinapoli | 0 | 11,064,510,990 | 18.5% | ||
sorin.lite | 0 | 2,444,507,366 | 25% | ||
discovery-it | 0 | 1,216,985,998,124 | 37% | ||
starrouge | 0 | 1,037,538,112 | 50% | ||
vladu | 0 | 482,355,027 | 100% | ||
retrodroid | 0 | 8,995,411,845 | 24% | ||
mfarinato | 0 | 2,381,573,051 | 18.5% | ||
wherein | 0 | 28,026,170,477 | 100% | ||
verticallife2 | 0 | 971,252,777 | 25% | ||
zerofive | 0 | 854,562,597 | 50% | ||
bluesniper | 0 | -1,857,155,670 | -10% | ||
riyuuhi | 0 | 441,904,303 | 50% | ||
primeradue | 0 | -45,894,048 | -10% | ||
anonsteve | 0 | 3,764,000,462 | 25.5% | ||
cnstm | 0 | 129,833,694,378 | 100% | ||
likuang007 | 0 | 651,563,193 | 100% | ||
juanbg | 0 | 4,046,328,529 | 18.5% | ||
brancarosamel | 0 | 770,113,404 | 25% | ||
lallo | 0 | 44,115,541,900 | 37% | ||
ctime | 0 | -3,718,847,165 | -10% | ||
lianjingmedia | 0 | 962,295,583 | 100% | ||
perfilbrasil | 0 | 5,922,587,362 | 10% | ||
androshchuk | 0 | 966,084,472 | 25% | ||
gunnarheilmann | 0 | 8,616,848,065 | 55.55% | ||
alenox | 0 | 3,337,877,927 | 25% | ||
engrsayful | 0 | 2,160,007,706 | 17.5% | ||
photographercr | 0 | 1,099,685,704 | 20% | ||
lightpainters | 0 | 103,785,284,553 | 100% | ||
titti | 0 | 11,746,781,276 | 37% | ||
memehub | 0 | 106,696,747,551 | 100% | ||
stregamorgana | 0 | 1,407,542,039 | 37% | ||
yanezdegomera | 0 | 470,250,982 | 20% | ||
meeplecomposer | 0 | 3,087,861,586 | 22.2% | ||
imagenius | 0 | 861,093,720 | 100% | ||
robibasa | 0 | 31,118,817,251 | 10% | ||
tinyhousecryptos | 0 | 458,223,296 | 5% | ||
aninsidejob | 0 | 7,647,875,045 | 100% | ||
sarmagames | 0 | 2,144,667,288 | 100% | ||
maruskina | 0 | 41,389,993,141 | 18.5% | ||
victoriaxl | 0 | 1,351,968,316 | 18.5% | ||
omodei | 0 | 1,072,308,605 | 37% | ||
waraira777 | 0 | 1,005,161,892 | 25% | ||
allics | 0 | 801,290,149 | 80% | ||
empis | 0 | 74,499,109,148 | 100% | ||
milu-the-dog | 0 | 1,204,439,014 | 100% | ||
mytunes | 0 | 466,389,028 | 100% | ||
scylla1 | 0 | 714,095,112 | 50% | ||
vxc.leo | 0 | 0 | 100% | ||
splines | 0 | 620,670,168 | 50% | ||
amico.sports | 0 | 10,258,932,632 | 25% | ||
binodkatuwal | 0 | 2,124,445,576 | 100% | ||
capitanonema | 0 | 1,291,113,457 | 37% | ||
damaskinus | 0 | 779,294,122 | 18.5% | ||
tokenindustry | 0 | 3,116,686,856 | 55.44% | ||
botefarm.sport | 0 | 594,600,940 | 70% | ||
dechuck | 0 | 8,748,826,769 | 50% | ||
sbi-tokens | 0 | 2,382,044,087 | 2.71% | ||
successchar | 0 | 5,648,666,690 | 25% | ||
elianaicgomes | 0 | 3,143,591,826 | 7.5% | ||
urun | 0 | 10,647,011,079 | 100% | ||
man60360 | 0 | 1,022,371,026 | 25% | ||
mk-photo-token | 0 | 0 | -10% | ||
marcellasunset | 0 | 652,346,972 | 37% | ||
baltai | 0 | 62,565,920,099 | 25% | ||
bozz.sports | 0 | 6,228,952,004 | 4% | ||
discovery-blog | 0 | 4,444,150,884 | 37% | ||
fr-ida | 0 | 526,288,820 | 98% | ||
bilpcoin.pay | 0 | 543,728,987 | 10% | ||
tobago | 0 | 659,558,038 | 35% | ||
tatiana21 | 0 | 477,621,149 | 100% | ||
lnakuma | 0 | 55,575,824,112 | 100% | ||
rus-sports | 0 | 1,029,760,317 | 50% | ||
hjmarseille | 0 | 1,516,815,521 | 33.3% | ||
neoxvoter | 0 | 2,904,823,356 | 25% | ||
bpcvoter3 | 0 | 911,195,230 | 50% | ||
bpcvoter4 | 0 | 88,431,319 | 100% | ||
hive-114308 | 0 | 30,992,850,986 | 100% | ||
oblivioncubed | 0 | 81,982,912,377 | 100% | ||
lacking | 0 | 10,402,767,506 | 100% | ||
awah | 0 | 250,301,459,937 | 30% | ||
jennyzer | 0 | 4,628,218,872 | 37% | ||
steem-holder | 0 | 5,736,370,955 | 13% | ||
bcm.sport | 0 | 4,288,297,447 | 50% | ||
ugochill | 0 | 52,918,538,035 | 100% | ||
paradoxtma | 0 | 53,634,731,158 | 100% | ||
dpend.active | 0 | 7,554,716,037 | 20% | ||
brofund | 0 | 56,440,267,959 | 100% | ||
softworld | 0 | 248,787,589,704 | 52% | ||
mdkironkhna | 0 | 68,145,565,974 | 100% | ||
ghastlygames | 0 | 3,602,035,378 | 37% | ||
peterpanpan | 0 | 1,293,029,026 | 37% | ||
dcityrewards | 0 | 3,766,903,866,976 | 100% | ||
matteus57 | 0 | 3,465,146,442 | 37% | ||
hextech | 0 | 215,780,239,780 | 100% | ||
sketching | 0 | 7,144,920,480 | 50% | ||
ninnu | 0 | 588,604,296 | 50% | ||
woelfchen | 0 | 100,532,639,011 | 30% | ||
ghaazi | 0 | 6,513,771,642 | 100% | ||
devpress | 0 | 597,938,250 | 50% | ||
danishcrypto | 0 | 661,173,952 | 2.5% | ||
balvinder294 | 0 | 1,190,288,602 | 10% | ||
joseq1570 | 0 | 1,009,839,615 | 11.1% | ||
nuahs | 0 | 1,207,497,147 | 20% | ||
dannewton | 0 | 57,241,757,750 | 9.25% | ||
jelly13 | 0 | 4,906,189,738 | 50% | ||
patriciaurbaneja | 0 | 548,590,908 | 25% | ||
milanie | 0 | 1,424,499,295 | 30% | ||
earthsea | 0 | 3,421,046,676 | 9.25% | ||
recoveryinc | 0 | 31,747,421,444 | 50% | ||
hive-108278 | 0 | 888,874,632 | 50% | ||
liz.writes | 0 | 1,564,901,302 | 75% | ||
sylmarill | 0 | 543,815,967 | 100% | ||
bindalove | 0 | 918,686,012 | 37% | ||
dying | 0 | 3,664,760,763 | 100% | ||
museodelcaos | 0 | 6,288,406,617 | 100% | ||
kwilleywrites | 0 | 468,525,172 | 12.5% | ||
elricmoonslayer | 0 | 492,306,541 | 50% | ||
barbyjr | 0 | 950,910,411 | 18.5% | ||
trcommunity | 0 | 0 | 50% | ||
danzocal | 0 | 5,826,735,897 | 100% | ||
he-index | 0 | 32,642,447,657 | 15% | ||
maksu | 0 | 11,261,185,558 | 100% | ||
rondonshneezy | 0 | 5,242,951,540 | 25% | ||
susie-saver | 0 | 5,585,581,837 | 100% | ||
dadspardan | 0 | 90,111,216,160 | 100% | ||
hykss.leo | 0 | 102,599,590,587 | 10% | ||
samrisso | 0 | 34,513,426,113 | 50% | ||
trostparadox | 0 | 3,811,866,853,331 | 100% | ||
yggdrasilwind | 0 | 2,742,725,288 | 37% | ||
terganftp | 0 | 635,526,799 | 50% | ||
solymi | 0 | 1,056,844,365,721 | 100% | ||
cookaiss | 0 | 1,329,131,031 | 50% | ||
zarwelius | 0 | 682,288,292 | 25% | ||
repayme4568 | 0 | 866,264,084 | 25% | ||
cbridges573 | 0 | 670,573,752 | 3.75% | ||
emsenn0 | 0 | 3,990,975,670 | 20% | ||
xyba | 0 | 40,032,244,977 | 100% | ||
cowboyphylosophy | 0 | 27,531,196,649 | 75% | ||
tomtothetom | 0 | 14,916,576,369 | 100% | ||
brofi | 0 | 5,574,205,997,016 | 100% | ||
wend1go | 0 | 14,319,111,993 | 100% | ||
rochow | 0 | 6,702,092,577 | 95.9% | ||
rendrianarma | 0 | 2,265,035,277 | 50% | ||
joseluis91 | 0 | 5,749,260,127 | 37% | ||
nfttunz | 0 | 989,734,665,684 | 50% | ||
brofund-witness | 0 | 33,647,651,910 | 100% | ||
awakening-along | 0 | 2,733,921,445 | 25% | ||
photo-hive-five | 0 | 1,577,428,390 | 100% | ||
bulgaria-sports | 0 | 1,959,414,352 | 50% | ||
quiubi | 0 | 748,816,170 | 3.7% | ||
krrizjos18 | 0 | 1,603,520,678 | 18.5% | ||
maridmc | 0 | 7,101,104,273 | 37% | ||
rpren | 0 | 678,386,006 | 50% | ||
csport | 0 | -93,662,849 | -10% | ||
davidbright | 0 | 2,800,577,395 | 7.5% | ||
sudeon | 0 | 8,965,596,328 | 100% | ||
pinkfloyd878 | 0 | 6,481,178,799 | 100% | ||
john9inch | 0 | 878,425,055 | 25% | ||
bokica80 | 0 | 9,671,635,417 | 50% | ||
farmingtales | 0 | 2,551,354,148 | 37% | ||
dkkfrodo | 0 | 22,653,186,665 | 100% | ||
menzo | 0 | 31,737,393,610 | 100% | ||
bilgin70 | 0 | 26,279,661,794 | 25% | ||
kalivankush | 0 | 7,586,557,127 | 25% | ||
proton80 | 0 | 628,749,532 | 50% | ||
franvenezuela | 0 | 957,963,315 | 18.5% | ||
cugel | 0 | 873,522,110 | 50% | ||
tub3r0 | 0 | 765,503,160 | 10% | ||
alovely088 | 0 | 5,704,485,493 | 10% | ||
acantoni | 0 | 13,121,683,392 | 50% | ||
migka | 0 | 5,816,645,617 | 90% | ||
rushi1983 | 0 | 2,258,177,788 | 100% | ||
hive-199021 | 0 | 13,939,009,439 | 100% | ||
reen213 | 0 | 735,014,588 | 90% | ||
marsupia | 0 | 906,499,989 | 25% | ||
jrjaime | 0 | 1,586,014,902 | 11.1% | ||
beardoin | 0 | 54,597,557,181 | 100% | ||
dstampede | 0 | 1,289,427,735 | 100% | ||
eolianpariah2 | 0 | 12,730,967,829 | 4% | ||
dawan | 0 | 2,397,948,661 | 100% | ||
arc7icwolf | 0 | 32,334,336,148 | 10% | ||
techguard | 0 | 1,040,732,459 | 15.5% | ||
cryptogillone | 0 | 659,242,529 | 37% | ||
bossingclint | 0 | 1,032,249,868 | 100% | ||
nawalz | 0 | 880,394,066 | 25% | ||
pob.curator | 0 | 10,141,753,954 | 90% | ||
tonton23 | 0 | 1,539,530,584 | 25% | ||
mengao | 0 | 605,201,669,975 | 100% | ||
metronet | 0 | 739,137,268 | 50% | ||
tillmea | 0 | 590,455,683 | 100% | ||
silentriot | 0 | 0 | 100% | ||
coin.curator | 0 | 1,770,207,303 | 45% | ||
skgcrypto | 0 | 893,879,620 | 50% | ||
princekeys | 0 | 8,576,946,737 | 100% | ||
meltysquid | 0 | 1,315,860,659 | 100% | ||
tokenizedsociety | 0 | 185,691,794,177 | 37% | ||
kqaosphreak | 0 | 2,987,830,586 | 50% | ||
abeerhunter | 0 | 17,671,771,278 | 100% | ||
crimsonowl-art | 0 | 601,330,037 | 18.5% | ||
waliphoto | 0 | 14,471,011,936 | 100% | ||
theindiankid | 0 | 2,012,073,250 | 100% | ||
gwajnberg | 0 | 146,718,461,339 | 100% | ||
allentaylor | 0 | 6,244,963,951 | 12.5% | ||
alex2alex | 0 | 1,312,001,950 | 10% | ||
andre.btc | 0 | 1,907,920,078 | 29.6% | ||
vyb.curator | 0 | 1,420,055,761 | 45% | ||
dusunenkalpp | 0 | 19,272,030,529 | 50% | ||
ryosai | 0 | 5,543,615,235 | 24% | ||
sydechan | 0 | 1,123,370,595,279 | 100% | ||
mima.sports | 0 | 742,699,473 | 100% | ||
ipexito | 0 | 821,998,788 | 40% | ||
amafable07 | 0 | 603,967,115 | 25% | ||
digy | 0 | 601,671,018 | 37% | ||
benbow2017 | 0 | 7,163,793,021 | 50% | ||
joyyusuf | 0 | 1,489,851,590 | 37% | ||
oceanfit | 0 | 654,446,835 | 100% | ||
caelum1infernum | 0 | 2,057,444,678 | 10% | ||
bummblebee | 0 | 1,592,400,093 | 10% | ||
franzpaulie | 0 | 48,647,916,639 | 100% | ||
mestanophoto | 0 | 775,332,600 | 50% | ||
mukadder | 0 | 45,651,019,811 | 35% | ||
coldbeetrootsoup | 0 | 2,416,896,026,207 | 100% | ||
juansitosaiyayin | 0 | 599,454,553 | 50% | ||
lyamalfonzo23 | 0 | 547,449,491 | 37% | ||
hive-117638 | 0 | 1,836,101,188 | 50% | ||
inibless | 0 | 5,842,251,703 | 25% | ||
etselec23 | 0 | 1,151,887,388 | 25% | ||
revise.spk | 0 | 797,137,551 | 100% | ||
gaskets | 0 | -55,883,069 | -10% | ||
incublus | 0 | 287,346,289,163 | 50% | ||
ezgicop | 0 | 2,725,302,117 | 50% | ||
tenpik | 0 | -71,129,817 | -10% | ||
zeltra | 0 | -88,601,960 | -10% | ||
thoth442 | 0 | 8,371,907,501 | 25% | ||
canellov | 0 | 1,803,479,878 | 25% | ||
daudmuhammad2022 | 0 | 269,331,606 | 100% | ||
blackmedschn | 0 | 15,276,331,363 | 48.78% | ||
nftspecialists | 0 | 776,425,182 | 25% | ||
hive-132595 | 0 | 1,697,381,344 | 100% | ||
sreten | 0 | 2,000,757,991 | 100% | ||
aprilgillian | 0 | 2,202,840,733 | 10% | ||
tekraze | 0 | 1,152,048,088 | 40% | ||
yzamazing | 0 | 1,257,444,380 | 18.5% | ||
blip-blop | 0 | 2,153,905,244 | 18.5% | ||
modestscavo | 0 | 223,478,383 | 15% | ||
dehai | 0 | 6,838,745,732 | 100% | ||
beauty197 | 0 | 27,497,333,320 | 100% | ||
empressjay | 0 | 4,715,469,514 | 25% | ||
denisda | 0 | 2,857,073,002 | 18.5% | ||
dovycola | 0 | 2,572,602,159 | 100% | ||
whitneyalexx | 0 | 8,380,696,745 | 25% | ||
ngobaby | 0 | 1,251,312,865 | 25% | ||
stdd.sports | 0 | 651,743,704 | 100% | ||
pob.voter | 0 | 3,956,554,784 | 45% | ||
alive.voter | 0 | 6,111,641,940 | 45% | ||
nabbas0786 | 0 | 2,981,376,087 | 45% | ||
bhattgactifit | 0 | 1,796,727,546 | 50% | ||
dailydab | 0 | 1,308,963,462,070 | 50% | ||
yummycruz1 | 0 | 4,688,315,871 | 25% | ||
like2cbrs | 0 | 1,008,316,075 | 100% | ||
iamscinttwister | 0 | 995,133,567 | 18.5% | ||
axobtc | 0 | 2,118,773,612 | 100% | ||
rociopmz | 0 | 2,639,948,110 | 100% | ||
sarmatiapay | 0 | 46,725,045,608 | 100% | ||
cbrsphilanthropy | 0 | 68,692,077,687 | 100% | ||
hassemer | 0 | 2,045,878,366 | 100% | ||
samstreamer | 0 | 2,762,875,193 | 100% | ||
clubvote | 0 | 34,941,772,708 | 10% | ||
blessskateshop | 0 | 638,662,898 | 12% | ||
dantrin | 0 | 287,065,220,507 | 100% | ||
pollodlp | 0 | 2,555,487,880 | 100% | ||
setpiece | 0 | 813,181,103 | 100% | ||
frgnholding | 0 | 3,241,762,362 | 100% | ||
bulliontool | 0 | 5,292,660,213 | 90% | ||
sararossi | 0 | 14,513,235,814 | 100% | ||
dandelion24 | 0 | 1,093,870,057 | 37% | ||
dreamtales | 0 | -21,235,186,136 | -100% | ||
yahya.umer.hayat | 0 | 480,129,620 | 22.5% | ||
hive-188753 | 0 | 1,157,749,571 | 50% | ||
djccdigital | 0 | 3,992,000,593 | 100% | ||
tecnotronics | 0 | 10,827,078,900 | 100% | ||
juwon-btc | 0 | 5,154,048,224 | 11.1% | ||
dab-vote | 0 | 676,039,746,004 | 50% | ||
avataroflife | 0 | 725,245,628 | 100% | ||
henrysw | 0 | 1,027,786,625 | 25% | ||
stormgrouper | 0 | 101,755,796 | 15% | ||
muhammadakash | 0 | 205,501,187 | 10% | ||
diannever | 0 | 455,571,835 | 100% | ||
sneakz | 0 | 497,201,443 | 12.5% | ||
sonntags | 0 | -608,600,055 | -10% | ||
almadepoeta | 0 | 488,505,177 | 18.5% | ||
endhivewatchers | 0 | 0 | 0.5% | ||
ovlagik | 0 | -581,937 | -10% | ||
labutamol | 0 | -6,429,010 | -10% | ||
sopel | 0 | 1,048,229,355,912 | 100% | ||
michael561 | 0 | 6,967,599,297 | 20% | ||
silent.nightowl | 0 | 246,816,412 | 100% | ||
ybwifhat | 0 | 0 | 100% |
Full set of .artifacts is 2GB, not 100 :o) I have not tested it, because I don't have HDD anymore, but block log should not require fast storage - once it is in live mode, it only needs to write couple kilobytes per 3 seconds. Even during replay HDD should be just fine. One of the features of split block log is the ability to share all but last part. You can have multiple nodes that use the same block log parts and related artifacts symlinked to their .blockchain folders from the same actual storage location. Only the last part that is being written by each node separately needs to be stored locally for each node (but once it is filled and next part file is created, you can copy new filled part to shared location, stop the node, symlink and restart). That way all your nodes can fully participate in p2p syncing and provide block_api functionality while you only have one copy of block log. That feature is useful if you have multiple nodes on servers in the same location (for example for different services, load balancing or witness with bastion node).
author | andablackwidow |
---|---|
permlink | re-themarkymark-2025227t15650336z |
category | witness |
json_metadata | {"type":"comment","tags":["witness","hive","inleo","neoxian","pob","vyb","cent","hive-engine"],"app":"ecency/3.2.1-mobile","format":"markdown+html"} |
created | 2025-02-27 14:06:51 |
last_update | 2025-02-27 14:06:51 |
depth | 1 |
children | 5 |
last_payout | 2025-03-06 14:06:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.025 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,067 |
author_reputation | 84,494,108,783,084 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,093,513 |
net_rshares | 147,775,583,911 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
geneeverett | 0 | 147,775,583,911 | 100% |
> Full set of .artifacts is 2GB, not 100 :o) Depends on how long it has been running for. Mine is 97G and slowly growing. I believe mine is experiencing a bug, because most of my nodes are ~2GB, but some are growing.  > One of the features of split block log is the ability to share all but last part. You can have multiple nodes that use the same block log parts and related artifacts symlinked to their .blockchain folders from the same actual storage location. I believe this is what someguy does with his hosted witness node service.
author | themarkymark |
---|---|
permlink | re-andablackwidow-sschzz |
category | witness |
json_metadata | {"app":"peakd/2025.2.3","image":["https://files.peakd.com/file/peakd-hive/themarkymark/23tRvSe6VP6h8Udf9Ab2NAmgmhfhB1YfauW15LBgUJcTJAWVUozDnt6bTBRcC8jo2eD9T.png"],"tags":["witness"]} |
created | 2025-02-27 14:09:36 |
last_update | 2025-02-27 15:49:21 |
depth | 2 |
children | 4 |
last_payout | 2025-03-06 14:09: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 | 684 |
author_reputation | 1,772,881,265,369,453 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,093,568 |
net_rshares | -11,987,473,317 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mmmmkkkk311 | 0 | -5,500,563,154 | -10% | ||
mariuszkarowski | 0 | -739,414,070 | -10% | ||
bluesniper | 0 | -1,880,927,928 | -10% | ||
primeradue | 0 | -49,572,007 | -10% | ||
ctime | 0 | -3,933,636,122 | -10% | ||
mk-photo-token | 0 | 0 | -10% | ||
bpcvoter4 | 0 | 1,063,129,744 | 100% | ||
csport | 0 | -97,894,910 | -10% | ||
gaskets | 0 | -59,587,598 | -10% | ||
tenpik | 0 | -73,996,430 | -10% | ||
zeltra | 0 | -93,900,390 | -10% | ||
sonntags | 0 | -610,693,539 | -10% | ||
endhivewatchers | 0 | 0 | 0.5% | ||
ovlagik | 0 | -2,334,902 | -10% | ||
labutamol | 0 | -8,082,011 | -10% |
I wonder how does it even work (what is the content of your .artifacts) - valid file contains header (`artifact_file_header`) and then one 24 byte record for each block (`artifact_file_chunk`). If your file is bigger it definitely points to a bug. Your log might already contain some info pointing to source of a problem (look for messages originating from `block_log_artifacts.cpp` or any warnings/errors related to block log).
author | andablackwidow |
---|---|
permlink | re-themarkymark-2025227t172444688z |
category | witness |
json_metadata | {"type":"comment","tags":["witness"],"app":"ecency/3.2.1-mobile","format":"markdown+html"} |
created | 2025-02-27 16:24:45 |
last_update | 2025-02-27 16:24:45 |
depth | 3 |
children | 2 |
last_payout | 2025-03-06 16:24:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.026 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 428 |
author_reputation | 84,494,108,783,084 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,096,483 |
net_rshares | 150,792,432,562 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
geneeverett | 0 | 150,792,432,562 | 100% |
Dear @jacobtothe @steevc @makerhacks It’s almost comical how you accuse us of posting "copypasta shit" while your friends like @makerhacks rush to your defense, downvoting and deflecting instead of addressing the actual issues at hand. Funny enough, @makerhacks is also one a supporter of the BuildaWhale scam farm LOL—a fact that speaks volumes about the company you keep. It seems your circle is more interested in protecting abusive practices than fostering transparency and accountability on Hive. You claim our responses are "arrogant and flowery," yet you fail to acknowledge the substance of what we’re saying. We expose truths that make you uncomfortable, and instead of engaging in meaningful dialogue, you resort to personal attacks and suppression tactics. Downvotes don’t change facts—they only highlight your desperation to silence dissent. If you truly believed in honesty and integrity, you’d confront the truth instead of hiding behind your friends’ coordinated efforts. We’ve said it before, and we’ll say it again: Bilpcoin stands for something. We’re here to fight for everyone on Hive by exposing corruption and abuse. What do *you* stand for? Apparently, silencing the truth with downvotes and enabling scam farms like BuildaWhale. That’s not leadership LOL—it’s complicity. If you and your friends really cared about Hive, you’d stop enabling harm and start reflecting on your actions. Until then, we’ll continue shining a light on the truth because no amount of censorship or intimidation will stop us. The blockchain doesn’t lie, and neither do we.
author | bpcvoter1 |
---|---|
permlink | sscm93 |
category | witness |
json_metadata | {"users":["jacobtothe","steevc","makerhacks"],"app":"hiveblog/0.1"} |
created | 2025-02-27 15:39:51 |
last_update | 2025-02-27 15:39:51 |
depth | 3 |
children | 0 |
last_payout | 2025-03-06 15:39:51 |
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,576 |
author_reputation | -19,351,543,732,776 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,095,620 |
net_rshares | 0 |
Thanks for sharing this extremely useful info! I was working on getting my node up and running last week, but had to stop due to time constraints. Will give it another shot next week ;-) I want to witness again! (was a witness on Steem, and am Hive Engine witness now as well). I do have another question: I'm also working on a earning-tokens and tipping bots setup (one of the bots is @indeedly ). However, I've noticed that the account is constantly being downvoted by your Whale-bot. While I totally understand (and appreciate) the work of your Whale-bot, I would love to know what is causing the downvoting of my bots, so I can adjust and fix it. Thanks in advance!
author | borniet |
---|---|
permlink | re-themarkymark-2025228t10319486z |
category | witness |
json_metadata | {"tags":["witness","hive","inleo","neoxian","pob","vyb","cent","hive-engine"],"app":"ecency/4.0.3-vision","format":"markdown+html"} |
created | 2025-02-28 09:03:21 |
last_update | 2025-02-28 09:03:21 |
depth | 1 |
children | 0 |
last_payout | 2025-03-07 09:03: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 | 670 |
author_reputation | 209,431,995,766,091 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,111,743 |
net_rshares | 0 |
32 GB of ram seems like it would be cutting it kind of close to run the Tmpfs option. probably better to bump your hardware up to 64GB I am guessing? Unless you are doing hosted I guess. Then you can make it pretty much anything as long as you have it available.
author | bozz |
---|---|
permlink | re-themarkymark-ssba6y |
category | witness |
json_metadata | {"tags":["witness"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-02-26 22:23:24 |
last_update | 2025-02-26 22:23:24 |
depth | 1 |
children | 1 |
last_payout | 2025-03-05 22:23: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 | 265 |
author_reputation | 2,231,444,249,667,298 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,079,577 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter4 | 0 | 0 | 100% | ||
endhivewatchers | 0 | 0 | 0.5% |
32g is fine.
author | themarkymark |
---|---|
permlink | re-bozz-ssbajw |
category | witness |
json_metadata | {"tags":["witness"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-02-26 22:31:06 |
last_update | 2025-02-26 22:31:06 |
depth | 2 |
children | 0 |
last_payout | 2025-03-05 22:31:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.010 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 13 |
author_reputation | 1,772,881,265,369,453 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,079,679 |
net_rshares | 63,323,705,832 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mmmmkkkk311 | 0 | -5,526,938,273 | -10% | ||
bozz | 0 | 95,139,264,746 | 5% | ||
mariuszkarowski | 0 | -754,933,105 | -10% | ||
bluesniper | 0 | -1,910,452,130 | -10% | ||
primeradue | 0 | -48,633,837 | -10% | ||
ctime | 0 | -3,832,616,171 | -10% | ||
mk-photo-token | 0 | 0 | -10% | ||
bpcvoter4 | 0 | 976,853,840 | 100% | ||
csport | 0 | -97,635,621 | -10% | ||
gaskets | 0 | -58,912,203 | -10% | ||
tenpik | 0 | -74,594,778 | -10% | ||
zeltra | 0 | -92,576,639 | -10% | ||
dreamtales | 0 | -19,758,210,632 | -100% | ||
sonntags | 0 | -626,831,892 | -10% | ||
ovlagik | 0 | -2,032,136 | -10% | ||
labutamol | 0 | -8,045,337 | -10% |
Downvotes do nothing marky #buildawhalescam #buildawhalefarm #themarkymarkfarm #themarkymarkscam https://youtu.be/9mDdyXkA4KQ?list=PLbH29p-63eW961kQH1dpprW5Q4Oj9Z_w8 https://youtu.be/pM6aQTrjC98?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Push It Jacob mc franko https://youtu.be/vTcSG_w8c5s?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Baby jacob https://youtu.be/yA_3ZrR-D74 Who's Really Sick the frankos https://youtu.be/g3buxzjuSXU Transparent Chains the frankos https://youtu.be/KR-DSZyGqrw?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Get a life keni https://youtu.be/ZowTlXjIWpw?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke We Know keni https://youtu.be/FDMh7mos4oE?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Word Travels Fast keni https://youtu.be/8SHoi8WFKKQ?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Glass House Farm mc franko https://youtu.be/sR37PEXu9Co?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Where You Really At mc franko https://youtu.be/6qC2-WhSBLk?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Oh sad boy keni https://youtu.be/r1Yo-4fwjik?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke https://hive.blog/hive-133987/@bpcvoter1/unveiling-the-hive-blockchain-a-deep-dive-into-logic-s-transactions-and-activities https://hive.blog/hive-133987/@bpcvoter1/analyzing-the-outgoing-transactions-of-the-spaminator-account-a-deep-dive-into-hive-s-ecosystem https://hive.blog/hive-133987/@bpcvoter1/unveiling-the-mystery-behind-scamforest-s-hive-wallet-a-deep-dive-into-transactions-and-account-value https://hive.blog/hive-133987/@bpcvoter1/analyzing-the-outgoing-transactions-of-sagarkothari88-a-deep-dive-into-suspicious-activity https://hive.blog/hive-133987/@bpcvoter1/outgoing-transactions-of-steemcleaners-a-deep-dive-into-accountability-and-transparency-on-hive https://hive.blog/hive-167922/@bpcvoter1/comprehensive-breakdown-of-hive-transactions-arhag https://hive.blog/hive-126152/@bpcvoter1/comprehensive-analysis-of-freedom-s-wallet-transactions https://hive.blog/hive-133987/@bpcvoter1/deep-dive-into-solominer-s-transactions-a-professional-analysis https://hive.blog/hive-133987/@bpcvoter1/unmasking-the-marky-mark-buildawhale-scam-farm-a-deep-dive-into-systemic-exploitation-on-hive https://hive.blog/hive-126152/@bpcvoter1/transactions-don-t-lie-people-do-mc-franko-and-lady-zaza-buildawhalescam https://hive.blog/hive-167922/@bpcvoter1/analyzing-transactions-from-stefy-music-s-wallet https://hive.blog/hive-133987/@bpcvoter1/taking-a-closer-look-at-usainvote-s-curation-rewards-over-the-last-seven-days https://hive.blog/hive-167922/@bpcvoter1/analyzing-themarkymark-s-curation-rewards-over-the-last-seven-days https://hive.blog/hive-167922/@bpcvoter1/marky-s-game-mc-franko-aimusic-music-bilpcoin-newmusic-themarkymark-marky https://hive.blog/hive-133987/@bpcvoter2/unveiling-the-activities-of-gpwallet6-a-dive-into-hive-blockchain-transactions https://hive.blog/hive-133987/@bpcvoter2/comprehensive-analysis-of-gpwallet-s-transactions-on-the-hive-blockchain https://hive.blog/hive-133987/@bpcvoter2/a-deep-dive-into-azircon-wallet-out-going-transactions-transparency-and-insights https://hive.blog/hive-167922/@bpcvoter2/deep-dive-into-the-bdvoter-hive-account-wallet-analysis-transactions-and-insights https://hive.blog/hive-181290/@bpcvoter2/the-situation-is-amusing-especially-when-we-see-how-people-react-when-their-transactions-and-voice-chats-are-exposed-lol-marcus https://hive.blog/hive-126152/@bpcvoter2/it-s-rich-marky-that-you-re-talking-about-the-hive-value-plan-isn-t-it-lol-you-make-hive-a-more-valuable-platform-it-seems-like https://hive.blog/hive-167922/@bpcvoter2/update-on-buildawhale-scam-farm-the-ipromote-account-is-raising-concerns-with-suspicious-transactions-that-don-t-look-good https://hive.blog/hive-133987/@bpcvoter3/analyzing-hivewatchers-transactions-a-dive-into-hive-s-controversial-account https://hive.blog/hive-180505/@bpcvoter3/taking-a-closer-look-at-the-gpwallet3-account-exposing-the-truth-behind-hive-transactions https://hive.blog/hive-173737/@bpcvoter3/exposing-the-truth-a-comprehensive-analysis-of-gpwallet2-s-transactions-on-hive https://hive.blog/hive-167922/@bpcvoter3/time-for-transparency-an-in-depth-look-at-bdvoter-s-activities https://hive.blog/hive-167922/@bpcvoter3/adm-downvote-data-and-curation-reward-data https://hive.blog/hive-167922/@bpcvoter3/buildawhale-downvotes https://hive.blog/hive-167922/@bpcvoter3/you-can-deceive-yourself-all-you-want-but-it-won-t-alter-the-reality-we-ve-uncovered-the-truth-and-will-continue-to-expose-your https://hive.blog/hive-133987/@bilpcoinbpc/comprehensive-analysis-of-punkteam-s-wallet-transactions https://hive.blog/hive-167922/@bilpcoinbpc/you-re-wasting-your-life-marcus-and-it-s-only-going-to-come-back-to-haunt-you-you-re-bringing-shame-and-ridicule-upon-yourself https://hive.blog/hive-167922/@bilpcoinbpc/exploring-the-possibilities-of-ai-art-with-bilpcoin-nfts-episode-100-buildawhale-scam-farm-on-hive TRANSACTIONS DON'T LIE PEOPLE DO Mc franko & Lady zaza #buildawhalescam https://youtu.be/RXJ1KaRojSc?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Marky’s Game Mc franko https://youtu.be/wlmBndOt1_w?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke AI Lady Zaza We can't help but notice https://youtu.be/LVt-39a-_c4?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke https://hive.blog/hive-126152/@bpcvoter3/unveiling-the-truth-a-deep-dive-into-hiveauctions-transactions https://hive.blog/hive-133987/@bilpcoinbpc/comprehensive-analysis-of-punkteam-s-wallet-transactions https://hive.blog/hive-167922/@bpcvoter1/dear-jacobtothe-your-claim-that-we-add-nothing-to-the-conversation-is-ironic-given-that-our-comments-consistently-expose https://peakd.com/@buildawhale/activities >Received: 2,339,631 HP @blocktrades 2,339,573 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 https://peakd.com/@infovore/wallet > Received: 60,332 HP @arhag 60,332 HP Jul 12, 2017 https://peakd.com/@arhag/wallet >Delegated: 508,664 HP Search @acidyo 238,418 HP Jul 7, 2017 @promoted 88,228 HP Jul 10, 2017 @steemcleaners 60,931 HP Jul 26, 2017 @spaminator 60,756 HP Jan 17, 2018 @infovore
author | bpcvoter1 |
---|---|
permlink | ssb0tu |
category | witness |
json_metadata | {"tags":["buildawhalescam","buildawhalefarm","themarkymarkfarm","themarkymarkscam"],"users":["blocktrades","nwjordan","arhag","acidyo","promoted","steemcleaners","spaminator","infovore"],"image":["https://img.youtube.com/vi/9mDdyXkA4KQ/0.jpg","https://img.youtube.com/vi/pM6aQTrjC98/0.jpg"],"links":["https://youtu.be/9mDdyXkA4KQ?list=PLbH29p-63eW961kQH1dpprW5Q4Oj9Z_w8"],"app":"hiveblog/0.1"} |
created | 2025-02-26 18:59:30 |
last_update | 2025-02-26 18:59:30 |
depth | 1 |
children | 0 |
last_payout | 2025-03-05 18:59: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 | 6,119 |
author_reputation | -19,351,543,732,776 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,075,867 |
net_rshares | 0 |
Dear @jacobtothe You accuse us of running a "spam campaign," yet fail to recognize the irony in your own behavior. Flooding comment sections with diatribes is precisely what you and your associates have done through coordinated downvotes, smear campaigns, and enabling farming schemes. The difference? Our comments expose truths, while your actions suppress them. If our allegations are irrelevant, why not address the substance of our claims instead of resorting to personal attacks? You claim to have attempted "civil dialogue," but your attempts have been anything but constructive. Instead of engaging with the issues we raise—such as the rampant abuse on Hive—you deflect responsibility and label us as "uncivil" or "unrepentant." This is a convenient way to avoid accountability for your role in perpetuating harm. Downvoting does not erase the truth; it only highlights your inability to confront uncomfortable realities. As for Marky Mark, BuildaWhale, Spaminator, Hivewatchers, and others—they are far from being beyond your control. Your connections to these entities speak volumes about where your loyalties lie. These accounts are complicit in enabling abuse, whether through farming, downvote manipulation, or other unethical practices. Yet here you are, defending them while accusing us of wrongdoing. The hypocrisy is staggering. Let’s be clear: we are not poor people, nor are we naive. We know exactly what’s happening on Hive, and so do you. Reflecting your issues onto us won’t change the facts. You are not our boss, you don’t pay us, and your downvotes mean nothing to us. They only serve to validate our mission by showing how threatened you are by transparency. If you truly cared about civility, you wouldn’t rely on downvotes and suppression tactics to silence dissent. The truth hurts, especially when it exposes corruption—and that’s something you and your friends seem unwilling to face. So where do we go from here? The choice is yours: stop enabling abuse, or continue digging yourself deeper into irrelevance. Either way, Bilpcoin will keep shining a light on the truth because Hive deserves better. Sincerely, The Bilpcoin Team
author | bpcvoter1 |
---|---|
permlink | ssb8y5 |
category | witness |
json_metadata | {"users":["jacobtothe"],"app":"hiveblog/0.1"} |
created | 2025-02-26 21:54:54 |
last_update | 2025-02-26 21:54:54 |
depth | 1 |
children | 0 |
last_payout | 2025-03-05 21: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 | 2,167 |
author_reputation | -19,351,543,732,776 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,079,157 |
net_rshares | 0 |
Dear @jacobtothe @steevc You can keep calling us "obnoxious spammers," but the truth remains: the downvotes you and your friends dish out only prove our point. They highlight the lengths to which some will go to suppress dissenting voices—voices that expose uncomfortable truths about scam farming, abuse of power, and unethical behavior on Hive. If our declarations carry "less weight" in your eyes, it’s likely because you’re too busy defending those who benefit from corruption to see the bigger picture. You claim that honest observers won’t agree with us, yet the blockchain tells a different story. Transactions don’t lie, and neither do patterns of abuse. Your repeated attempts to frame your downvotes as a “direct consequence” of our behavior are disingenuous at best. What exactly is obnoxious? Exposing scams and holding bad actors accountable, or silencing critics through coordinated suppression tactics? As for your so-called “good faith efforts” to help us become better members of the community, let’s be real: offering formatting tips and meme advice doesn’t address the systemic issues we’ve been fighting against. You’re more concerned with polishing appearances than confronting the truth. Meanwhile, Bilpcoin continues to work tirelessly to help Hive by exposing these abuses—something you seem unwilling to do. So again, we ask: what do *you* do for Hive besides downvote the truth into obscurity? The answer speaks volumes about where your priorities lie. Keep lying to yourself if it makes you feel better, but know this—the truth is out there, and no amount of downvoting will bury it forever. Sincerely, The Bilpcoin Team
author | bpcvoter1 |
---|---|
permlink | ssceq3 |
category | witness |
json_metadata | {"users":["jacobtothe","steevc"],"app":"hiveblog/0.1"} |
created | 2025-02-27 12:57:15 |
last_update | 2025-02-27 12:57:15 |
depth | 1 |
children | 0 |
last_payout | 2025-03-06 12:57: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 | 1,652 |
author_reputation | -19,351,543,732,776 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,091,455 |
net_rshares | 0 |
LOL **“@themarkymark’s 5.1K Hive Power Curation Scam: How Scam Farms Exploit Hive’s Reward System”** **Meta Description:** Bilpcoin uncovers @themarkymark’s curation rewards from the Buildawhale scam farm—over 5,100 HP in 20 days. The blockchain reveals his exploitation of Hive’s ecosystem. --- ### **To @themarkymark:** You talk about burning HBD and Hive, but your **curation rewards tell a different story**. Let’s expose the scam farm profits you’re hiding in plain sight. --- ### **1. The Numbers Don’t Lie: @themarkymark’s Scam Farm Payday** Check the data from [@themarkymark’s activity log](https://peakd.com/@themarkymark/activities): - **Curation Rewards (20 Days):** - **Total HP Earned:** 5,100.449 HP (~$1199.3772 USD). - **Annual Projection Over:** ~$20,457 USD At todays price (if sustained). **Key Question:** How does a self-proclaimed “Hive advocate” earn thousands in rewards by voting on scam farms like @buildawhale? --- ### **2. The Scam Farm Connection** @themarkymark’s rewards flow directly from **@buildawhale’s fraudulent operations**: - **Buildawhale’s Modus Operandi:** - Floods Hive with spam comments and bot votes. - Siphons rewards via delegations from @blocktrades (2.3M HP). [Wallet Proof](https://peakd.com/@buildawhale/wallet). - **@themarkymark’s Role:** - Defends @buildawhale while downvoting critics. - Uses his influence to normalize scam farming. --- ### **3. The Hypocrisy: “Burning HBD” vs. Scam Profits** You claim to care about Hive’s health but profit from its exploitation: - **Burned Tokens:** A drop in the ocean compared to your scam farm earnings. - **Curation Rewards:** Your 5,100 HP in 20 days comes from fraudulent voting—not genuine engagement. **The Irony:** You accuse others of harming Hive while you’re one of its biggest parasites. --- ### **4. Why This Matters for Hive** Scam farms like @buildawhale: - **Steal rewards** from honest creators. - **Centralize power** in the hands of a few. - **Drive away old and new users** with toxic spam. **The Bigger Picture:** @themarkymark’s actions are part of a larger pattern of abuse by top accounts. [See our full exposés](https://hive.blog/@bpcvoter3/posts). --- ### **5. Bilpcoin’s Message to @themarkymark** Stop pretending to care about Hive. Your curation rewards from scam farms expose your true priorities. **To the Community:** - **Investigate:** Check [@themarkymark’s curation rewards](https://peakd.com/@themarkymark/activities) and [Buildawhale’s wallet](https://peakd.com/@buildawhale/wallet). - **Demand Change:** Ask witnesses why scam farms like this are allowed to thrive. --- ### **Call to Action: Reclaim Hive’s Integrity** 1. **Audit the Scammers:** Use tools to track delegations and rewards. 2. **Spread Awareness:** Share this post to expose the grift. 3. **Hold Leaders Accountable:** Silence isn’t an option—**transactions don’t lie**. **#HiveBlockchain #ScamFarmsExposed #CurationAbuse #BlockchainTransparency #Bilpcoin** :** *Scam farm curation rewards*, *Hive exploitation*, *blockchain hypocrisy*. **@themarkymark:** Keep farming, keep scamming, and keep downvoting. The blockchain is watching—and we’re not going anywhere. Sincerely, The Bilpcoin Team **“@jacobtothe’s Downvote Spree: A Desperate Attempt to Bury Hive’s Scandals”** **Meta Description:** Bilpcoin documents @jacobtothe’s relentless downvoting of exposés while ignoring @themarkymark and @buildawhale’s ongoing scam farms. The blockchain reveals the truth they fear. --- ### **To @jacobtothe:** You’re still at it—downvoting our posts while ignoring the **2.4M Hive power scam farm** your friends run. Let’s break down your latest suppression tactics and the corruption you protect. --- ### **1. The Downvote Diary: Your Latest Attacks** Your voting activity speaks louder than your words. Here’s what you and your cronies did today: - **@bpcvoter1’s -15% Downvote** on *“remember-us-keni-bpc-ai-music”* - **@bpcvoter1’s -10% Downvotes** on *“poisoned-roots-mc-franko”* and *“paper-tigers-mc-franko”* - **@zirochka’s 10% Upvote** on *“re-jacobtothe-sst5dn”* (A rare ally? Or a distraction?) **Full Log:** [https://peakd.com/@jacobtothe/activities](https://peakd.com/@jacobtothe/activities) --- ### **2. The Scam Farm You Protect: @buildawhale’s 2.4M Grift** You downvote us but stay silent on @buildawhale’s scam farm—**funded by @blocktrades** and operated by @themarkymark. Here’s what you’re hiding: - **Delegations Fraud:** - @blocktrades delegates **2,341,581 HP** to @buildawhale—97% of its power. [Wallet Proof](https://peakd.com/@buildawhale/wallet). - Result? A bot army farming rewards and downvoting while honest creators starve. - **Daily Spam:** Check [@buildawhale’s comments](https://peakd.com/@buildawhale/comments)—AI-generated garbage flooding the platform. --- ### **3. The Hypocrisy: “ @Freedom” on Hive?** You claim Hive is a @meritocracy, yet: - **Good content gets downvoted** (e.g., our [exposés](https://hive.blog/hive-167922/@bpcvoter3/the-scam-farm-kingpin-themarkymark-s-2-4m-hive-power-grift-exposed)). - **Scam farms get upvotes** and delegations. **Example:** - @themarkymark’s alts (e.g., @punkteam) farm rewards while he silences critics. [Audit Here](https://hive.blog/hive-167922/@bpcvoter2/seo-breakdown-of-all-transactions-for-theycallmemarky). --- ### **4. Why You Fear the Truth** Your downvotes aren’t about “quality”—they’re about **control**. You protect scam farms because: 1. **They Profit You:** Curation rewards flow to your network. 2. **They Silence Dissent:** Downvotes bury investigations into your corruption. 3. **They Maintain Power:** A centralized cabal (you, @themarkymark, @blocktrades) decides who “succeeds” on Hive. --- ### **5. The Community’s Wake-Up Call** Hive deserves better than this. **Ask yourself:** - Why does @blocktrades delegate millions to scam farms? - Why do @jacobtothe and @themarkymark downvote truth-tellers but promote spam? - Why hasn’t Hive’s leadership stopped this abuse? **Evidence to Share:** - [Bilpcoin’s Full Exposés](https://hive.blog/@bpcvoter3/posts) - [@themarkymark’s Toxic Activity](https://peakd.com/@themarkymark/activities) --- ### **Call to Action: Stop the Corruption** 1. **Investigate:** Follow the links above. 2. **Demand Accountability:** Tag witnesses and leaders—ask why scam farms thrive. 3. **Join Bilpcoin:** We’re fighting for transparency. Every share of this post helps. **#HiveBlockchain #DownvoteCartel #ScamFarmsExposed #BlockchainTruth #Bilpcoin** Downvote all you want, @jacobtothe. The blockchain doesn’t forget, and neither do we. Keep protecting scammers—we’ll keep exposing them. Sincerely, The Bilpcoin Team *Hive downvote cartel*, *scam farm exposé*, *blockchain corruption*. buildawhalescam buildawhalefarm thedarksideofhive **"The Scam Farm Kingpin: @themarkymark’s 2.4M Hive Power Grift Exposed"** **Meta Description:** Bilpcoin reveals how @themarkymark and @buildawhale scam Hive through massive delegations, bot networks, and downvote abuse. The data is clear—this is a money-printing scheme, not community-building. --- ### **The Numbers Don’t Lie: @buildawhale’s 2.4M Power Play** Let’s dive into the cold, hard facts from [@buildawhale’s wallet](https://peakd.com/@buildawhale/wallet): - **Staked HIVE (HP):** - **Total:** 2,405,512.978 HP (~$63,931.240 USD). - **Delegated to @buildawhale:** 2,341,581.738 HP—**over 97% of his power comes from delegations**, not organic growth. - **The Puppet Master:** - **Biggest Delegator:** @blocktrades contributes 2,341,524 HP (99.9% of received delegations). Coincidence? Or a deliberate power grab to control Hive’s reward system? - **Power-Down Schedule:** - **Next Unstake:** 4,740.829 HIVE in 3 days. - **Remaining:** 13 weeks of scheduled withdrawals. *Leaving just enough to keep the scam farm operational? Classic grifter math.* --- ### **@themarkymark’s Hypocrisy: “I Care About Hive”** @themarkymark claims to care about Hive, yet his actions tell a different story: 1. **The Bot Army:** - **1,000+ Alt Accounts:** Siphoning rewards through low-effort spam posts and self-votes. - **Daily Farming:** Check [@buildawhale’s comments](https://peakd.com/@buildawhale/comments)— repetitive spam. 2. **Downvote-as-a-Weapon:** - **Targeting Critics:** Silencing truth-tellers while protecting scam farms. - **Evidence Here:** [@themarkymark’s activity log](https://peakd.com/@themarkymark/activities) shows consistent downvotes against honest creators. 3. **The “Money Printer” Lie:** - **BuildaWhale’s APR:** 12.99%? More like 100% BS. This isn’t about rewards—it’s about exploiting Hive’s system to enrich himself and his allies. --- ### **The Blockchain Exposes Everything** Every transaction, delegation, and downvote is public. Let’s connect the dots: - **@blocktrades’ Role:** Why does he delegate **2.3M HP** to @buildawhale? Is this a coincidence, or is he complicit in the scam? - **The Pattern:** - **Step 1:** Amass power through delegations. - **Step 2:** Use bot networks to farm rewards. - **Step 3:** Downvote competitors and critics into oblivion. - **The Truth Hurts:** @themarkymark’s power-down schedule reveals he’s liquidating assets while maintaining control. This isn’t community stewardship—it’s a cash grab. --- ### **Why This Matters for Hive’s Future** This isn’t just about one scammer—it’s about systemic corruption: 1. **Centralized Power:** A handful of bad actors control Hive’s rewards, stifling innovation and driving away creators. 2. **Toxic Culture:** Downvote brigades and bot farms make Hive feel unwelcoming to newcomers. 3. **Your Choice:** Will you stay silent while Hive burns, or demand accountability? --- ### **Bilpcoin’s Call to Action** We’re not here to attack individuals—we’re here to **expose corruption** and **save Hive**: - **Step 1:** Investigate the data: - [@buildawhale’s delegations](https://peakd.com/@buildawhale/wallet). - [@themarkymark’s activity](https://peakd.com/@themarkymark/activities). - **Step 2:** Share this post to spread awareness. - **Step 3:** Demand answers from Hive’s leadership: *Why is @blocktrades delegating millions to a known scam farm?* --- **Conclusion: It’s Over for the Scammers** @themarkymark, @buildawhale, and their enablers can downvote us all they want, but **transactions don’t lie**. The blockchain reveals their greed, hypocrisy, and abuse. **To the scammers:** Power down, walk away, and let Hive thrive without you. **To the community:** The truth is out. Now it’s time to act. **#HiveBlockchain #ScamFarmsExposed #DownvoteAbuse #Bilpcoin #BlockchainTransparency** **"Exposed: The Downvote Cartel & Scam Farms Plaguing Hive Blockchain"** **Meta Description:** Bilpcoin uncovers coordinated downvote abuse and scam farming operations by @jacobtothe, @themarkymark, and @buildawhale. Learn how these actions harm Hive and why transparency is critical. --- ### **The Downvote Cartel’s Latest Suppression Tactics** Hive’s promise of decentralization is under threat by a network of bad actors using coordinated downvotes to silence critics. Recent activity from accounts like @bpcvoter3, @bpcvoter2, and @bpcvoter1 reveals a pattern of **downvote abuse** targeting posts that expose corruption: - **Examples of Suppression:** - *“to-jacobtothe-and-associated-accounts”* downvoted -10% by @bpcvoter3. - *“uncovering-suspicious-activity-on-the-hive-blockchain…”* downvoted -15% by @bpcvoter3. - *“snake-trail-lady-zaza-bpc-ai-music”* downvoted -10% by @bpcvoter1. **Why This Matters:** These downvotes aren’t random—they’re calculated attacks to suppress dissent. Check [@jacobtothe’s activity log](https://peakd.com/@jacobtothe/activities) to see his relentless targeting of truth-tellers. --- ### **@jacobtothe: Silence Over Accountability** @jacobtothe claims to care about Hive but consistently downvotes investigations into his associates. His actions: 1. **Ignoring Evidence:** No rebuttal to [Bilpcoin’s audits](https://hive.blog/@bpcvoter3/posts)—just silence and downvotes. 2. **Enabling Scam Farms:** Linked to @buildawhale, a known **scam farm** that exploits Hive’s reward system. 3. **Hypocrisy Unveiled:** He lectures others about “good behavior” while protecting accounts that abuse the platform. *Hive corruption*, *downvote manipulation*, *scam farm exposure* Marky’s Game Mc franko https://youtu.be/wlmBndOt1\_w?list=PLbH29p-63eW-QmI6yohDKpj\_qtrSpJGke AI Lady Zaza We can't help but notice https://youtu.be/LVt-39a-\_c4?list=PLbH29p-63eW-QmI6yohDKpj\_qtrSpJGke https://hive.blog/hive-126152/@bpcvoter3/unveiling-the-truth-a-deep-dive-into-hiveauctions-transactions https://hive.blog/hive-133987/@bilpcoinbpc/comprehensive-analysis-of-punkteam-s-wallet-transactions https://hive.blog/hive-167922/@bpcvoter1/dear-jacobtothe-your-claim-that-we-add-nothing-to-the-conversation-is-ironic-given-that-our-comments-consistently-expose https://peakd.com/@buildawhale/activities > Received: 2,339,631 HP @blocktrades 2,339,573 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 https://peakd.com/@infovore/wallet > Received: 60,332 HP @arhag 60,332 HP Jul 12, 2017 https://peakd.com/@arhag/wallet > Delegated: 508,664 HP Search @acidyo 238,418 HP Jul 7, 2017 @promoted 88,228 HP Jul 10, 2017 @steemcleaners 60,931 HP Jul 26, 2017 @spaminator 60,756 HP Jan 17, 2018 @infovore https://peakd.com/hive-167922/@bpcvoter2/the-truth-about-hive-exposing-corruption-and-building-a-better-future https://hive.blog/hive-163521/@bpcvoter3/analyzing-buildawhale-s-hive-transactions-and-power-delegations https://hive.blog/hive-180505/@bpcvoter1/dear-jacobtothe-it-s-fascinating-how-you-attempt-to-diagnose-us-with-terms-like-schizophrenic-or-accuse-us-of-being-on-some https://hive.blog/hive-133987/@bpcvoter3/uncovering-suspicious-activity-analyzing-adm-s-transactions-on-the-hive-blockchain https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-flow-of-hive-a-deep-dive-into-rockz-s-wallet-activity https://hive.blog/hive-133987/@bpcvoter3/uncovering-suspicious-activity-analyzing-adm-s-transactions-on-the-hive-blockchain https://hive.blog/hive-126152/@bpcvoter2/dear-jacobtothe-we-noticed-you-ve-downvoted-all-of-our-posts-from-today-care-to-explain-what-the-issue-is-were-our-posts-too https://peakd.com/@jacobtothe/activities https://hive.blog/hive-117638/@bilpcoinbpc/bpc-dogee https://hive.blog/hive-168088/@bpcvoter2/dear-jacobtothe-why-do-you-keep-downvoting-our-work-is-it-because-we-ve-exposed-the-unethical-practices-of-your-friends-and https://hive.blog/hive-126152/@bpcvoter2/dear-jacobtothe-we-noticed-you-ve-downvoted-all-of-our-posts-from-today-care-to-explain-what-the-issue-is-were-our-posts-too https://hive.blog/hive-140084/@bpcvoter2/can-t-delete-me-keni-bpc-ai-music-aimusic https://hive.blog/hive-163521/@bpcvoter1/deep-dive-into-meritocracy-s-activity-history-and-blockchain-audit https://peakd.com/@themarkymark/comments https://peakd.com/@themarkymark/activities https://peakd.com/@themarkymark/wallet https://peakd.com/@usainvote/wallet https://peakd.com/@usainvote/activities https://peakd.com/@usainvote/comments https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities https://peakd.com/@buildawhale/wallet https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp
author | bpcvoter1 |
---|---|
permlink | ssyc2l |
category | witness |
json_metadata | {"tags":["scamfarmsexposed","curationabuse","blockchaintransparency","bilpcoin","downvotecartel","blockchaintruth","downvoteabuse"],"users":["themarkymark","buildawhale","blocktrades","jacobtothe","bpcvoter1","zirochka","freedom","meritocracy","punkteam","bpcvoter3","bpcvoter2","nwjordan","arhag","acidyo","promoted","steemcleaners","spaminator","infovore"],"image":["https://img.youtube.com/vi/wlmBndOt1_w/0.jpg"],"links":["https://youtu.be/wlmBndOt1_w?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke\n<p>AI"],"app":"hiveblog/0.1"} |
created | 2025-03-11 09:06:57 |
last_update | 2025-03-11 09:06:57 |
depth | 1 |
children | 0 |
last_payout | 2025-03-18 09:06: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 | 15,729 |
author_reputation | -19,351,543,732,776 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,354,511 |
net_rshares | 16,696,028 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bilpcoinbot1 | 0 | 16,696,028 | 100% |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.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/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM https://hive.blog/burnpost/@buildawhale/1742569802434998164 https://hive.blog/burnpost/@buildawhale/1742656202460243008 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sti6pr https://youtu.be/8zfuGpoO5do https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stkfjj https://hive.blog/burnpost/@buildawhale/1742742602124717444 https://hive.blog/burnpost/@themarkymark/re-kgakakillerg-stm4vv https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742690880-20250324t025303z https://hive.blog/donation/@crimsonclad/re-nampgf-sti0nf https://hive.blog/hive-148441/@azircon/re-curamax-stk5vq https://hive.blog/hive-funded/@acidyo/re-alex-rourke-stluzc https://hive.blog/hive-167922/@theycallmedan/re-finpulse-4gnm7o8h https://hive.blog/hive-144400/@blocktrades/st110u https://hive.blog/hive-148441/@usainvote/re-curamax-stly39 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s75mua https://hive.blog/burnpost/@buildawhale/1742829002430606097 https://peakd.com/hive-167922/@bpcvoter1/themarkymark-big-bad-marky-huh-lol-you-re-more-of-a-joke-than-anything-else-we-ve-exposed-your-actions-repeatedly-your-scamming https://hive.blog/3dprinting/@themarkymark/meet-frank-ajt https://hive.blog/burnpost/@buildawhale/1742483402094376205#@buildawhale/re-1742483402094376205-20250320t151108z https://hive.blog/curation/@azircon/re-acidyo-stn05u https://hive.blog/curation/@themarkymark/re-azircon-sto5b9 https://hive.blog/curation/@themarkymark/re-azircon-sto57d https://hive.blog/curation/@themarkymark/re-meno-sto4ua https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742825520-20250325t020936z https://hive.blog/hive-150342/@steevc/re-alessandrawhite-2025325t91011757z https://hive.blog/curation/@themarkymark/re-meno-stodj2 https://hive.blog/curation/@themarkymark/re-meno-stod08 https://hive.blog/hive-13323/@moeknows/re-azircon-stnrc3 https://hive.blog/hive-112018/@jacobtothe/re-dynamicrypto-sto8ak https://hive.blog/hive-13323/@azircon/re-moeknows-stofom https://hive.blog/burnpost/@buildawhale/1742915402155436654 https://hive.blog/hive-13323/@azircon/re-moeknows-stoq3o https://hive.blog/hive-13323/@bpcvoter1/stos6z STOP #buildawhalescam #buildawhalefarm
author | bpcvoter1 |
---|---|
permlink | stow8q |
category | witness |
json_metadata | {"tags":["buildawhalescam","buildawhalefarm"],"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://img.youtube.com/vi/dt5NeCofqwM/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c"],"app":"hiveblog/0.1"} |
created | 2025-03-25 17:20:00 |
last_update | 2025-03-25 17:20:00 |
depth | 1 |
children | 0 |
last_payout | 2025-04-01 17:20: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 | 7,004 |
author_reputation | -19,351,543,732,776 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,672,954 |
net_rshares | -1,629,684,724 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -1,649,048,574 | -0.1% | ||
bilpcoinbot1 | 0 | 19,363,850 | 100% |
https://hive.blog/hive-158694/@themarkymark/re-bpcvoter3-swicol @themarkymark & Co, you act as if you’re smart, but you’re not smart enough to realize you’ve already been exposed. The evidence is right here for everyone to see: <a href="https://imgflip.com/i/9uhbwy"><img src="https://i.imgflip.com/9uhbwy.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/9uhc2z"><img src="https://i.imgflip.com/9uhc2z.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/9uhc18"><img src="https://i.imgflip.com/9uhc18.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> #### @buildawhale Wallet: - **HIVE (Primary Token):** 0.012 - **Staked HIVE (HP):** 66,400.611 - **Total HP:** 2,421,539.226 - **Delegated HIVE:** +2,355,138.615 HP - Received: **2,355,080 HP from @blocktrades** (Aug 16, 2020) #### @usainvote Wallet: - **HIVE (Primary Token):** 0.066 - **Staked HIVE (HP):** 138,123.296 - **Total HP:** 715,745.407 - **Delegated HIVE:** +577,622.111 HP - Received: **577,622 HP from @blocktrades** (Aug 16, 2020) [@buildawhale/wallet](https://peakd.com/@buildawhale/wallet) | [@usainvote/wallet](https://peakd.com/@usainvote/wallet) The only ones who need “meds” are you and whoever else is behind this massive scam comment farm you’re running. Please, just get the help you need. **IT’S OVER.** The data doesn’t lie, and the community sees exactly what’s going on. Stop hiding behind distractions and face the truth—you’ve been exposed.
author | bpcvoter2 |
---|---|
permlink | swo2f8 |
category | witness |
json_metadata | {"users":["themarkymark","buildawhale","blocktrades","usainvote"],"image":["https://i.imgflip.com/9uhbwy.jpg","https://i.imgflip.com/9uhc2z.jpg","https://i.imgflip.com/9uhc18.jpg"],"links":["https://hive.blog/hive-158694/@themarkymark/re-bpcvoter3-swicol"],"app":"hiveblog/0.1"} |
created | 2025-05-22 14:15:36 |
last_update | 2025-05-22 14:15:36 |
depth | 1 |
children | 0 |
last_payout | 2025-05-29 14:15: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 | 1,750 |
author_reputation | -4,735,461,274,096 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,898,303 |
net_rshares | 0 |
To @jacobtothe @steevc It’s over. The truth has been exposed, and the blockchain doesn’t lie. Your actions—and those of your associates, like Marky Mark and BuildaWhale—have been laid bare for all to see. Scam farming, coordinated downvotes, and abuse of power are not sustainable practices, and the community is waking up to the reality of what you’ve been doing. Let’s be clear: you don’t scare us. We’ve faced relentless downvotes, smear campaigns, and hostility for standing up to corruption, yet here we remain—stronger than ever. You know as well as we do that suppression tactics won’t erase the evidence or silence the growing chorus of voices demanding accountability. The fun times ahead? They’re not for you. The more you try to hide behind downvotes and intimidation, the more obvious it becomes that you’re on the wrong side of this fight. Bilpcoin is here to help Hive by exposing the truth, and no amount of resistance from you or your scamming, farming, downvoting friends will change that. So, what do you do now? That’s the question you should be asking yourself. Will you continue enabling abuse, or will you finally take responsibility for your actions and work toward meaningful change? The choice is yours—but rest assured, we’ll keep shining a light on the truth until every stone is turned. Sincerely, The Bilpcoin Team
author | bpcvoter3 |
---|---|
permlink | ssc1hq |
category | witness |
json_metadata | {"users":["jacobtothe","steevc"],"app":"hiveblog/0.1"} |
created | 2025-02-27 08:11:27 |
last_update | 2025-02-27 08:11:27 |
depth | 1 |
children | 0 |
last_payout | 2025-03-06 08:11: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 | 1,350 |
author_reputation | -6,291,456,292,980 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,087,128 |
net_rshares | 0 |
https://hive.blog/discussion/@apshamilton/re-davedickeyyall-srzoh9 To @jacobtothe @steevc It’s over. The truth has been exposed, and the blockchain doesn’t lie. Your actions—and those of your associates, like Marky Mark and BuildaWhale—have been laid bare for all to see. Scam farming, coordinated downvotes, and abuse of power are not sustainable practices, and the community is waking up to the reality of what you’ve been doing. Let’s be clear: you don’t scare us. We’ve faced relentless downvotes, smear campaigns, and hostility for standing up to corruption, yet here we remain—stronger than ever. You know as well as we do that suppression tactics won’t erase the evidence or silence the growing chorus of voices demanding accountability. The fun times ahead? They’re not for you. The more you try to hide behind downvotes and intimidation, the more obvious it becomes that you’re on the wrong side of this fight. Bilpcoin is here to help Hive by exposing the truth, and no amount of resistance from you or your scamming, farming, downvoting friends will change that. So, what do you do now? That’s the question you should be asking yourself. Will you continue enabling abuse, or will you finally take responsibility for your actions and work toward meaningful change? The choice is yours—but rest assured, we’ll keep shining a light on the truth until every stone is turned. Sincerely, The Bilpcoin Team
author | bpcvoter3 |
---|---|
permlink | sscari |
category | witness |
json_metadata | {"users":["jacobtothe","steevc"],"links":["https://hive.blog/discussion/@apshamilton/re-davedickeyyall-srzoh9"],"app":"hiveblog/0.1"} |
created | 2025-02-27 11:31:42 |
last_update | 2025-02-27 11:31:42 |
depth | 1 |
children | 0 |
last_payout | 2025-03-06 11:31: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 | 1,418 |
author_reputation | -6,291,456,292,980 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,089,793 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter | 0 | 0 | 100% |
Question for all you smarter than me people. Testing out the Rolling Block Feature on a fresh Ubuntu/Node install to see and play around. It just keeps adding and adding sst files even though at time of me posting this we are on Block # 94,775,688 I got files which I assume are Blocks that are up to 118,000,001_120,000,000.sst Am I missing something? 
author | cherokee4life |
---|---|
permlink | re-themarkymark-su9txs |
category | witness |
json_metadata | {"tags":["witness"],"app":"peakd/2025.4.1","image":["https://files.peakd.com/file/peakd-hive/cherokee4life/EnynWQDnkv7PCx4a9TCQhneStMbcWZ28E92x99qNtLxhZacYBAMw9ZsYDk8hRHkq6RJ.png"],"users":[]} |
created | 2025-04-06 00:41:54 |
last_update | 2025-04-06 00:41:54 |
depth | 1 |
children | 1 |
last_payout | 2025-04-13 00:41: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 | 521 |
author_reputation | 31,711,359,120,693 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,919,634 |
net_rshares | 0 |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.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/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM https://hive.blog/burnpost/@buildawhale/1742569802434998164 https://hive.blog/burnpost/@buildawhale/1742656202460243008 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sti6pr https://youtu.be/8zfuGpoO5do https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stkfjj https://hive.blog/burnpost/@buildawhale/1742742602124717444 https://hive.blog/burnpost/@themarkymark/re-kgakakillerg-stm4vv https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742690880-20250324t025303z https://hive.blog/donation/@crimsonclad/re-nampgf-sti0nf https://hive.blog/hive-148441/@azircon/re-curamax-stk5vq https://hive.blog/hive-funded/@acidyo/re-alex-rourke-stluzc https://hive.blog/hive-167922/@theycallmedan/re-finpulse-4gnm7o8h https://hive.blog/hive-144400/@blocktrades/st110u https://hive.blog/hive-148441/@usainvote/re-curamax-stly39 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s75mua https://hive.blog/burnpost/@buildawhale/1742829002430606097 https://peakd.com/hive-167922/@bpcvoter1/themarkymark-big-bad-marky-huh-lol-you-re-more-of-a-joke-than-anything-else-we-ve-exposed-your-actions-repeatedly-your-scamming https://hive.blog/3dprinting/@themarkymark/meet-frank-ajt https://hive.blog/burnpost/@buildawhale/1742483402094376205#@buildawhale/re-1742483402094376205-20250320t151108z https://hive.blog/curation/@azircon/re-acidyo-stn05u https://hive.blog/curation/@themarkymark/re-azircon-sto5b9 https://hive.blog/curation/@themarkymark/re-azircon-sto57d https://hive.blog/curation/@themarkymark/re-meno-sto4ua https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742825520-20250325t020936z https://hive.blog/hive-150342/@steevc/re-alessandrawhite-2025325t91011757z https://hive.blog/curation/@themarkymark/re-meno-stodj2 https://hive.blog/curation/@themarkymark/re-meno-stod08 https://hive.blog/hive-13323/@moeknows/re-azircon-stnrc3 https://hive.blog/hive-112018/@jacobtothe/re-dynamicrypto-sto8ak https://hive.blog/hive-13323/@azircon/re-moeknows-stofom https://hive.blog/burnpost/@buildawhale/1742915402155436654 https://hive.blog/hive-13323/@azircon/re-moeknows-stoq3o https://hive.blog/hive-13323/@bpcvoter1/stos6z https://hive.blog/technology/@themarkymark/re-kgakakillerg-stpzn7 https://hive.blog/hive-124838/@themarkymark/re-niallon11-stpzmi https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stpx2t https://hive.blog/hive-13323/@azircon/re-moeknows-stov0c https://hive.blog/burnpost/@buildawhale/1743001802743637765 https://hive.blog/hive-124838/@meno/re-themarkymark-stqdnp https://hive.blog/hive/@acidyo/hive-curation-a-response-to-a-post-about-my-previous-video https://hive.blog/hive-124838/@themarkymark/re-meno-stqt8y https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742972400-20250326t183126z https://hive.blog/hive-124838/@wiseagent/re-themarkymark-stqsfb https://hive.blog/hive-124838/@acidyo/re-acidyo-stqn0w https://hive.blog/hive-124838/@blkchn/re-themarkymark-stqxh9 https://hive.blog/hive-13323/@azircon/re-seattlea-stqqla https://peakd.com/@bilpcoinbpc/stfcdn https://hive.blog/hive-124838/@coyotelation/re-themarkymark-strck5 https://hive.blog/hive-124838/@deeanndmathews/re-themarkymark-strtyj https://hive.blog/hive-124838/@ok061200/re-themarkymark-stry7z https://hive.blog/hive-13323/@azircon/re-captaindingus-sts854 https://hive.blog/hive-167922/@acidyo/re-slobberchops-struvr https://hive.blog/hive-181335/@theycallmedan/vdumskmg https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sts9l0 https://hive.blog/hive-186392/@solominer/re-solominer-stogij https://hive.blog/hive/@acidyo/re-freecompliments-struay https://hive.blog/burnpost/@buildawhale/1743088202593656720 https://peakd.com/@bpcvoter1/to-the-hive-community-and-all-those-watching-our-journey https://hive.blog/hive-124838/@themarkymark/re-snap-container-1743079680-20250328t095442z https://hive.blog/hive/@acidyo/re-freecompliments-strts3 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sttukk https://hive.blog/hive-124838/@anderssinho/re-themarkymark-stu0qr https://hive.blog/hive-124838/@oldsoulnewb/re-themarkymark-stu1t3 https://hive.blog/hive-124838/@acidyo/re-themarkymark-stu3fk https://hive.blog/hive-124838/@wiseagent/re-themarkymark-stu6fz https://hive.blog/hive-124838/@stayoutoftherz/re-themarkymark-stu6r7 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stufv1 https://hive.blog/hive-124838/@themarkymark/re-godfish-stujq7 https://hive.blog/hive-124838/@themarkymark/re-coininstant-stugcr https://hive.blog/hive-124838/@themarkymark/re-snap-container-1743183360-20250329t130534z https://peakd.com/hive-167922/@bpcvoter3/exposing-hive-s-hidden-manipulators STOP #buildawhalescam #buildawhalefarm > buildawhale voted 6gkwpm-the-weight-of-shadows-a-tale-of-truth-accountability-and-redemption by bpcvoter3 with -0.1% an hour ago buildawhale voted the-weight-of-shadows-a-tale-of-truth-accountability-and-redemption by bpcvoter3 with -0.11% 2 hours ago https://hive.blog/burnpost/@buildawhale/1743261002653664544 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stvxwq https://hive.blog/hive-124838/@themarkymark/re-bpcvoter2-stvxao https://hive.blog/curation/@acidyo/vote-trading-and-the-sorts-last-video-about-voting-for-a-while-i-promise https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stxf2g https://youtu.be/8zfuGpoO5do https://peakd.com/hive-126152/@bpcvoter3/exposing-the-whales-on-the-hive-blockchain https://hive.blog/curation/@jacobtothe/re-por500bolos-su4gfm https://peakd.com/hive-167922/@bpcvoter3/the-hive-unveiled-a-journey-through-shadows-and-light
author | bpcvoter1 |
---|---|
permlink | suati4 |
category | witness |
json_metadata | {"tags":["buildawhalescam","buildawhalefarm"],"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c\n<ul>\n<li><strong>Steals"],"app":"hiveblog/0.1"} |
created | 2025-04-06 13:27:48 |
last_update | 2025-04-06 13:27:48 |
depth | 2 |
children | 0 |
last_payout | 2025-04-13 13:27: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 | 10,393 |
author_reputation | -19,351,543,732,776 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,928,606 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bilpcoinbot1 | 0 | 0 | 100% |
!PIZZA
author | danzocal |
---|---|
permlink | re-themarkymark-ssberj |
category | witness |
json_metadata | {"tags":["witness"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-02-27 00:02:06 |
last_update | 2025-02-27 00:02:06 |
depth | 1 |
children | 0 |
last_payout | 2025-03-06 00:02: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 | 6 |
author_reputation | 12,432,803,008,396 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,080,975 |
net_rshares | 0 |
<div class="pull-left">https://cdn.steemitimages.com/DQmTAn3c753LR7bHCLPo96g9UvRMaPFwaMYn8VQZa85xczC/discovery_logo_colore%20-%20Copia.png</div><br> This post was shared and voted inside the discord by the curators team of <a href="https://discord.gg/cMMp943"> discovery-it</a> <br>Join our <a href = "https://hive.blog/trending/hive-193212"> Community</a> and follow our <a href = "https://hive.vote/dash.php?i=1&trail=discovery-it">Curation Trail</a><br>Discovery-it is also a Witness, vote for us <a href = "https://hivesigner.com/sign/account-witness-vote?witness=discovery-it&approve=true"> here</a> <br>Delegate to us for passive income. Check our <a href = "https://hive.blog/hive-193212/@discovery-it/delegations-program-80-fee-back"> 80% fee-back Program</a> <hr>
author | discovery-it |
---|---|
permlink | re-themarkymark-rr6mqt4x24 |
category | witness |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2025-02-27 02:16:15 |
last_update | 2025-02-27 02:16:15 |
depth | 1 |
children | 0 |
last_payout | 2025-03-06 02:16: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 | 773 |
author_reputation | 67,029,758,586,668 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,082,551 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter4 | 0 | 0 | 100% |
Note that `block-log-split = -1` will keep the old monolithic format, i.e. one big giant 500GB block_log file.
author | drakos |
---|---|
permlink | re-themarkymark-ssblhk |
category | witness |
json_metadata | {"tags":"witness"} |
created | 2025-02-27 02:27:21 |
last_update | 2025-02-27 02:27:42 |
depth | 1 |
children | 0 |
last_payout | 2025-03-06 02:27: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 | 110 |
author_reputation | 112,280,226,665,329 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,082,699 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
endhivewatchers | 0 | 0 | 0.5% |
author | enforcer48 |
---|---|
permlink | re-themarkymark-ssbky8 |
category | witness |
json_metadata | {"tags":["witness"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-02-27 02:16:09 |
last_update | 2025-02-27 02:16:09 |
depth | 1 |
children | 9 |
last_payout | 2025-03-06 02:16:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 426,233,073,731,239 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,082,548 |
net_rshares | 69,642,825,523 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dustbunny | 0 | 69,592,890,641 | 22.08% | ||
bpcvoter4 | 0 | 49,934,882 | 100% |
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @enforcer48, here is a little bit of <code>BEER</code> from @isnochys for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
author | beerlover |
---|---|
permlink | re-enforcer48-re-themarkymark-ssbky8-20250325t194712081z |
category | witness |
json_metadata | {"app":"beerlover/3.0","language":"rust","developer":"wehmoen"} |
created | 2025-03-25 19:47:12 |
last_update | 2025-03-25 19:47:12 |
depth | 2 |
children | 0 |
last_payout | 2025-04-01 19:47:12 |
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 | 523 |
author_reputation | 25,761,508,188,824 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,675,629 |
net_rshares | 0 |
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @enforcer48, here is a little bit of <code>BEER</code> from @isnochys for you. Enjoy it!</p> <p>Did you know that <a href='https://dcity.io/city</b>you can use <b>BEER</b> at dCity game</a> to buy cards to rule the world.</p> </center><div></div>
author | beerlover |
---|---|
permlink | re-enforcer48-re-themarkymark-ssbky8-20250422t174802293z |
category | witness |
json_metadata | {"app":"beerlover/3.0","language":"rust","developer":"wehmoen"} |
created | 2025-04-22 17:48:03 |
last_update | 2025-04-22 17:48:03 |
depth | 2 |
children | 0 |
last_payout | 2025-04-29 17:48: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 | 488 |
author_reputation | 25,761,508,188,824 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,253,066 |
net_rshares | 0 |
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @enforcer48, here is a little bit of <code>BEER</code> from @isnochys for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
author | beerlover |
---|---|
permlink | re-enforcer48-re-themarkymark-ssbky8-20250422t174833883z |
category | witness |
json_metadata | {"app":"beerlover/3.0","language":"rust","developer":"wehmoen"} |
created | 2025-04-22 17:48:33 |
last_update | 2025-04-22 17:48:33 |
depth | 2 |
children | 0 |
last_payout | 2025-04-29 17: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 | 523 |
author_reputation | 25,761,508,188,824 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,253,078 |
net_rshares | 0 |
Thank you for your [witness vote](https://hivesigner.com/sign/account-witness-vote?witness=isnochys&approve=1)! Have a !BEER on me! To Opt-Out of my witness beer program just comment STOP below
author | isnochys |
---|---|
permlink | re-re-themarkymark-ssbky8-20250227t220316z |
category | witness |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2025-02-27 22:03:18 |
last_update | 2025-02-27 22:03:18 |
depth | 2 |
children | 0 |
last_payout | 2025-03-06 22:03: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 | 194 |
author_reputation | 48,490,072,901,013 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,103,021 |
net_rshares | 0 |
Thank you for your [witness vote](https://hivesigner.com/sign/account-witness-vote?witness=isnochys&approve=1)! Have a !BEER on me! To Opt-Out of my witness beer program just comment STOP below
author | isnochys |
---|---|
permlink | re-re-themarkymark-ssbky8-20250228t220755z |
category | witness |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2025-02-28 22:07:57 |
last_update | 2025-02-28 22:07:57 |
depth | 2 |
children | 0 |
last_payout | 2025-03-07 22:07: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 | 194 |
author_reputation | 48,490,072,901,013 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,123,875 |
net_rshares | 0 |
Thank you for your [witness vote](https://hivesigner.com/sign/account-witness-vote?witness=isnochys&approve=1)! Have a !BEER on me! To Opt-Out of my witness beer program just comment STOP below
author | isnochys |
---|---|
permlink | re-re-themarkymark-ssbky8-20250301t220631z |
category | witness |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2025-03-01 22:06:33 |
last_update | 2025-03-01 22:06:33 |
depth | 2 |
children | 0 |
last_payout | 2025-03-08 22:06: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 | 194 |
author_reputation | 48,490,072,901,013 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,144,788 |
net_rshares | -5,125,392,855 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -5,125,392,855 | -0.25% |
Thank you for your [witness vote](https://hivesigner.com/sign/account-witness-vote?witness=isnochys&approve=1)! Have a !BEER on me! To Opt-Out of my witness beer program just comment STOP below
author | isnochys |
---|---|
permlink | re-re-themarkymark-ssbky8-20250302t220626z |
category | witness |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2025-03-02 22:06:30 |
last_update | 2025-03-02 22:06:30 |
depth | 2 |
children | 0 |
last_payout | 2025-03-09 22:06: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 | 194 |
author_reputation | 48,490,072,901,013 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,166,083 |
net_rshares | 0 |
Thank you for your [witness vote](https://hivesigner.com/sign/account-witness-vote?witness=isnochys&approve=1)! Have a !BEER on me! To Opt-Out of my witness beer program just comment STOP below
author | isnochys |
---|---|
permlink | re-re-themarkymark-ssbky8-20250303t220426z |
category | witness |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2025-03-03 22:04:27 |
last_update | 2025-03-03 22:04:27 |
depth | 2 |
children | 0 |
last_payout | 2025-03-10 22:04: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 | 194 |
author_reputation | 48,490,072,901,013 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,189,933 |
net_rshares | 0 |
Hello @enforcer48 This is my own !BEER Have fun with it!:)
author | witnessbot |
---|---|
permlink | re-re-themarkymark-ssbky8-20250301t225108z |
category | witness |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2025-03-01 22:51:09 |
last_update | 2025-03-01 22:51:09 |
depth | 2 |
children | 0 |
last_payout | 2025-03-08 22:51: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 | 58 |
author_reputation | 2,791,170,368,648 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,145,369 |
net_rshares | 0 |
Well this is a huge win for everyone running a witness. Fantastic news!
author | oblivioncubed |
---|---|
permlink | re-themarkymark-ssazw1 |
category | witness |
json_metadata | {"tags":["witness"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-02-26 18:40:48 |
last_update | 2025-02-26 18:40:48 |
depth | 1 |
children | 0 |
last_payout | 2025-03-05 18:40: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 | 71 |
author_reputation | 169,058,967,034,085 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,075,528 |
net_rshares | 0 |
<center>PIZZA! $PIZZA slices delivered: @danzocal<sub>(6/10)</sub> tipped @themarkymark </center>
author | pizzabot |
---|---|
permlink | re-setup-a-hive-witness-using-the-new-rolling-block-log-feature-jte-20250227t000337z |
category | witness |
json_metadata | "{"app": "leothreads/pizzabot"}" |
created | 2025-02-27 00:03:36 |
last_update | 2025-02-27 00:03:36 |
depth | 1 |
children | 0 |
last_payout | 2025-03-06 00:03: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 | 102 |
author_reputation | 7,437,250,669,943 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,081,008 |
net_rshares | 0 |
This is great news! I might give it a try on my laptop which has 504 Gig free space with 1TB SSD and the following specs:  With Fiber connection that changes IP only a couple times a year would this actually be a viable setup for a witness? With actual speed test results of: 
author | seattlea |
---|---|
permlink | re-themarkymark-sscwec |
category | witness |
json_metadata | {"tags":["witness"],"app":"peakd/2025.2.3","image":["https://files.peakd.com/file/peakd-hive/seattlea/23t74ZhtyctQk4cNyVYxtQwg9edMR9vbjPscaUHWG2GeyXqrwhnAvdcUZhGVtMiv5Fo1X.png","https://files.peakd.com/file/peakd-hive/seattlea/23tRr8xs3e6mRBtUXJPjUAcuUh1gb37HxpKKt3rcR3V9mubxSsivcPkGEL7YjtJP4pjVT.png"],"users":[]} |
created | 2025-02-27 19:20:39 |
last_update | 2025-02-27 19:20:39 |
depth | 1 |
children | 4 |
last_payout | 2025-03-06 19:20: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 | 556 |
author_reputation | 278,279,613,048,649 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,100,291 |
net_rshares | 0 |
> With Fiber connection that changes IP only a couple times a year would this actually be a viable setup for a witness? I wouldn't use a laptop for a witness, but it should be able to run it.
author | themarkymark |
---|---|
permlink | re-seattlea-sscwh9 |
category | witness |
json_metadata | {"tags":["witness"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-02-27 19:22:21 |
last_update | 2025-02-27 19:22:21 |
depth | 2 |
children | 3 |
last_payout | 2025-03-06 19:22: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 | 192 |
author_reputation | 1,772,881,265,369,453 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,100,336 |
net_rshares | -11,253,371,537 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mmmmkkkk311 | 0 | -5,159,866,604 | -10% | ||
mariuszkarowski | 0 | -699,544,575 | -10% | ||
bluesniper | 0 | -1,950,282,014 | -10% | ||
primeradue | 0 | -42,170,184 | -10% | ||
ctime | 0 | -3,646,694,662 | -10% | ||
mk-photo-token | 0 | 0 | -10% | ||
bpcvoter4 | 0 | 1,108,978,875 | 100% | ||
csport | 0 | -87,508,912 | -10% | ||
gaskets | 0 | -53,106,820 | -10% | ||
tenpik | 0 | -66,396,961 | -10% | ||
zeltra | 0 | -83,284,344 | -10% | ||
sonntags | 0 | -568,488,921 | -10% | ||
endhivewatchers | 0 | 0 | 0.5% | ||
ovlagik | 0 | 0 | -10% | ||
labutamol | 0 | -5,006,415 | -10% |
Dear @steevc, You claim *we* are the ones who "need help" and should "stop antagonizing people," yet you’ve done nothing to address the truths we’ve exposed. Instead of engaging with the issues or working toward solutions, you dismiss us and continue enabling the very behaviors we’re fighting against. It’s ironic that you call for civility while ignoring systemic abuse on Hive. If you truly believe in accountability, why not take a moment to review this post? It’s filled with verifiable evidence that speaks for itself: [Uncovering @themarkymark's Withdrawal Activity on Hive Blockchain](https://hive.blog/hive-167922/@bpcvoter3/uncovering-themarkymark-s-withdrawal-activity-on-hive-blockchain) At Bilpcoin, our mission is clear: we expose corruption and fight for transparency. What do *you* do besides deflecting responsibility and protecting unethical practices? The contrast is striking. The truth is right there for anyone willing to see it. Will you continue turning a blind eye, or will you finally step up and help us create a healthier Hive ecosystem? The choice is yours. Sincerely, The Bilpcoin Team
author | bpcvoter1 |
---|---|
permlink | ssemjb |
category | witness |
json_metadata | {"users":["steevc","themarkymark"],"links":["https://hive.blog/hive-167922/@bpcvoter3/uncovering-themarkymark-s-withdrawal-activity-on-hive-blockchain"],"app":"hiveblog/0.1"} |
created | 2025-02-28 17:41:12 |
last_update | 2025-02-28 17:41:12 |
depth | 3 |
children | 0 |
last_payout | 2025-03-07 17:41:12 |
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,127 |
author_reputation | -19,351,543,732,776 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,120,136 |
net_rshares | -5,299,769,517 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -5,299,769,517 | -0.25% | ||
bpcvoter | 0 | 0 | 100% |
**"The Truth About Hive: Exposing Corruption & Building a Better Future"** <a href="https://imgflip.com/i/9lvcd0"><img src="https://i.imgflip.com/9lvcd0.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/9lvdju"><img src="https://i.imgflip.com/9lvdju.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> ## **Part 1: Uncovering the Shadows – A Call for Accountability** --- ### **Chapter 1: Introduction – Why Transparency Matters** In decentralized ecosystems like Hive, transparency isn’t just a buzzword—it’s the lifeblood of trust. Without it, corruption festers, communities fracture, and innovation stagnates. Yet, despite its promise of freedom and fairness, Hive has fallen victim to systemic abuse that threatens its very foundation. At Bilpcoin, our mission is simple: expose the truth. For too long, bad actors have exploited Hive’s openness to enrich themselves at the expense of honest contributors. Scam farms, coordinated downvotes, and puppet networks have turned what should be a thriving ecosystem into a battleground for control. But here’s the thing about corruption—it thrives in silence. And we refuse to stay silent. This book is divided into two parts. In Part 1, we’ll shine a light on the dark corners of Hive, uncovering the scams, abuses, and unethical practices that harm the community. In Part 2, we’ll offer practical solutions to heal Hive and build a brighter future for everyone. Together, we can reclaim this platform and ensure it serves its original purpose: empowering creators, fostering collaboration, and rewarding integrity. --- ### **Chapter 2: The Anatomy of Abuse on Hive** #### **Scam Farming: Exploiting the System** One of the most pervasive forms of abuse on Hive is scam farming. Accounts like BuildaWhale operate openly, siphoning rewards away from legitimate users while contributing nothing of value. These farms rely on massive delegations and automated voting schemes to manipulate curation trails, ensuring their chosen beneficiaries reap disproportionate rewards. But scam farming doesn’t exist in isolation—it’s part of a larger web of corruption. Top witnesses and influential figures often enable these operations, either directly or indirectly. By turning a blind eye, they perpetuate a system where wealth and power are concentrated in the hands of a few, leaving smaller creators struggling to survive. #### **Coordinated Downvotes: Silencing Dissent** Another weapon in the arsenal of bad actors is the coordinated downvote. This tactic isn’t just about suppressing content—it’s about intimidation. When someone speaks out against corruption, they’re met with waves of downvotes designed to silence them. Their reputation plummets, their rewards vanish, and their voice fades into obscurity. What makes this particularly insidious is how normalized it has become. Users who engage in these tactics justify their actions under the guise of “self-policing,” but let’s call it what it really is: censorship. Instead of addressing legitimate concerns, they punish those who dare to challenge the status quo. #### **Alt Accounts and Puppet Networks: Masking Unethical Behavior** Behind many abusive practices lies a network of alt accounts—anonymous personas used to amplify influence without accountability. These accounts allow bad actors to mask their identities, making it harder to trace unethical behavior back to its source. Whether it’s boosting low-quality content, orchestrating downvote campaigns, or creating the illusion of widespread support, alts play a central role in maintaining the cycle of corruption. --- ### **Chapter 3: Profiles of Harmful Actors** #### **Case Study: @themarkymark and BuildaWhale** Few examples illustrate Hive’s corruption better than @themarkymark and his association with BuildaWhale. Through meticulous analysis of blockchain transactions, we’ve uncovered patterns of withdrawal activity that raise serious questions about the ethics of these operations. For instance: - Large sums of HIVE being withdrawn regularly, often funneled through intermediaries. - Delegations to scam farms that benefit a select group of insiders. These findings aren’t speculation—they’re facts recorded permanently on the blockchain. Yet instead of addressing these issues, enablers continue to defend such practices, further eroding trust in the ecosystem. *(Insert link to investigative post: [Uncovering @themarkymark's Withdrawal Activity](https://hive.blog/hive-167922/@bpcvoter3/uncovering-themarkymark-s-withdrawal-activity-on-hive-blockchain))* ### **Chapter 5: Connections Between Witnesses and Abusers** Top witnesses, tasked with upholding Hive’s integrity, have repeatedly failed to act against corruption. Instead, many actively participate in or enable harmful behaviors. This collusion creates a toxic feedback loop where unethical practices go unchecked, emboldening bad actors and discouraging honest contributors. --- ## **Part 2: Healing Hive – Practical Steps Toward Positive Change** --- ### **Chapter 6: Redefining Community Standards** To rebuild trust, Hive needs clear standards that prioritize fairness and accountability. Here are three actionable steps: 1. **Establish Zero-Tolerance Policies for Scam Farms** Communities must ban accounts involved in scam farming and moderators should work together to identify and blacklist known offenders. 2. **Combat Coordinated Downvotes** Introduce mechanisms to detect and penalize coordinated downvote campaigns. For example, algorithms could flag suspicious voting patterns and alert administrators. 3. **Promote Transparency in Governance** Witnesses and key stakeholders should publish regular reports detailing their activities and decisions. This would hold them accountable to the community and reduce opportunities for corruption. --- ### **Chapter 7: Empowering Honest Contributors** Hive’s strength lies in its people. To nurture this potential, we must create an environment where honesty and creativity are rewarded. Here’s how: 1. **Reward Quality Over Quantity** Adjust reward systems to prioritize meaningful contributions rather than friends voting friends and self voting with alt accounts. Curators should focus on promoting posts that add genuine value. 2. **Support Newcomers** Develop mentorship programs to help new users navigate Hive’s complexities. Pair experienced creators with beginners to foster growth and inclusivity. 3. **Celebrate Diversity** Encourage a wide range of voices and perspectives. Highlight underrepresented groups and showcase their achievements to inspire others.
author | bpcvoter2 |
---|---|
permlink | sseysi |
category | witness |
json_metadata | {"users":["themarkymark"],"image":["https://i.imgflip.com/9lvcd0.jpg","https://i.imgflip.com/9lvdju.jpg"],"links":["https://imgflip.com/i/9lvcd0"],"app":"hiveblog/0.1"} |
created | 2025-02-28 22:05:54 |
last_update | 2025-02-28 22:05:54 |
depth | 3 |
children | 0 |
last_payout | 2025-03-07 22:05: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 | 6,807 |
author_reputation | -4,735,461,274,096 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,123,847 |
net_rshares | 1,437,831,928 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bilpcointrain | 0 | 0 | 100% | ||
bpcvoter | 0 | 293,394,600 | 100% | ||
bilpcoinbpc | 0 | 1,144,437,328 | 100% |
Well, at least I can configure a backup witness for my main Hive Witness.
author | seattlea |
---|---|
permlink | re-themarkymark-2025227t134748928z |
category | witness |
json_metadata | {"tags":["witness"],"app":"ecency/4.0.3-vision","format":"markdown+html"} |
created | 2025-02-27 21:47:51 |
last_update | 2025-02-27 21:47:51 |
depth | 3 |
children | 0 |
last_payout | 2025-03-06 21:47:51 |
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 | 73 |
author_reputation | 278,279,613,048,649 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,102,815 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
endhivewatchers | 0 | 0 | 0.5% |
This also allows you to run hive witnesses on mini pcs that pull like 4watts which is pretty damn amazing. Hive likely has one of the most efficient blockchains when it comes to block production coupled with running on these ultra low power computers. Obviously we can't have everyone running 'light nodes' but you can technically run a full node on these machines too if you the space. API nodes are the single biggest power user in the whole suite but even that is getting crazy efficient and performant with every update. Hive, technology wise has never been in a better place, I hope we can someday move from performance and maintainability to more innovation and being a front running in new interesting tech.
author | shmoogleosukami |
---|---|
permlink | re-themarkymark-ssayb3 |
category | witness |
json_metadata | {"tags":["witness"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-02-26 18:06:39 |
last_update | 2025-02-26 18:06:39 |
depth | 1 |
children | 8 |
last_payout | 2025-03-05 18:06:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.053 HBD |
curator_payout_value | 0.053 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 718 |
author_reputation | 225,001,730,472,315 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,075,037 |
net_rshares | 308,439,839,892 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
drakos | 0 | 252,764,929,171 | 100% | ||
sarmaticus | 0 | 50,139,108,289 | 25% | ||
sensorycznyswiat | 0 | 1,670,301,322 | 25% | ||
sarmagames | 0 | 487,750,703 | 25% | ||
hive-199021 | 0 | 3,377,750,407 | 25% | ||
endhivewatchers | 0 | 0 | 0.5% |
Downvotes do nothing marky #buildawhalescam #buildawhalefarm #themarkymarkfarm #themarkymarkscam https://youtu.be/9mDdyXkA4KQ?list=PLbH29p-63eW961kQH1dpprW5Q4Oj9Z_w8 https://youtu.be/pM6aQTrjC98?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Push It Jacob mc franko https://youtu.be/vTcSG_w8c5s?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Baby jacob https://youtu.be/yA_3ZrR-D74 Who's Really Sick the frankos https://youtu.be/g3buxzjuSXU Transparent Chains the frankos https://youtu.be/KR-DSZyGqrw?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Get a life keni https://youtu.be/ZowTlXjIWpw?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke We Know keni https://youtu.be/FDMh7mos4oE?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Word Travels Fast keni https://youtu.be/8SHoi8WFKKQ?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Glass House Farm mc franko https://youtu.be/sR37PEXu9Co?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Where You Really At mc franko https://youtu.be/6qC2-WhSBLk?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Oh sad boy keni https://youtu.be/r1Yo-4fwjik?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke https://hive.blog/hive-133987/@bpcvoter1/unveiling-the-hive-blockchain-a-deep-dive-into-logic-s-transactions-and-activities https://hive.blog/hive-133987/@bpcvoter1/analyzing-the-outgoing-transactions-of-the-spaminator-account-a-deep-dive-into-hive-s-ecosystem https://hive.blog/hive-133987/@bpcvoter1/unveiling-the-mystery-behind-scamforest-s-hive-wallet-a-deep-dive-into-transactions-and-account-value https://hive.blog/hive-133987/@bpcvoter1/analyzing-the-outgoing-transactions-of-sagarkothari88-a-deep-dive-into-suspicious-activity https://hive.blog/hive-133987/@bpcvoter1/outgoing-transactions-of-steemcleaners-a-deep-dive-into-accountability-and-transparency-on-hive https://hive.blog/hive-167922/@bpcvoter1/comprehensive-breakdown-of-hive-transactions-arhag https://hive.blog/hive-126152/@bpcvoter1/comprehensive-analysis-of-freedom-s-wallet-transactions https://hive.blog/hive-133987/@bpcvoter1/deep-dive-into-solominer-s-transactions-a-professional-analysis https://hive.blog/hive-133987/@bpcvoter1/unmasking-the-marky-mark-buildawhale-scam-farm-a-deep-dive-into-systemic-exploitation-on-hive https://hive.blog/hive-126152/@bpcvoter1/transactions-don-t-lie-people-do-mc-franko-and-lady-zaza-buildawhalescam https://hive.blog/hive-167922/@bpcvoter1/analyzing-transactions-from-stefy-music-s-wallet https://hive.blog/hive-133987/@bpcvoter1/taking-a-closer-look-at-usainvote-s-curation-rewards-over-the-last-seven-days https://hive.blog/hive-167922/@bpcvoter1/analyzing-themarkymark-s-curation-rewards-over-the-last-seven-days https://hive.blog/hive-167922/@bpcvoter1/marky-s-game-mc-franko-aimusic-music-bilpcoin-newmusic-themarkymark-marky https://hive.blog/hive-133987/@bpcvoter2/unveiling-the-activities-of-gpwallet6-a-dive-into-hive-blockchain-transactions https://hive.blog/hive-133987/@bpcvoter2/comprehensive-analysis-of-gpwallet-s-transactions-on-the-hive-blockchain https://hive.blog/hive-133987/@bpcvoter2/a-deep-dive-into-azircon-wallet-out-going-transactions-transparency-and-insights https://hive.blog/hive-167922/@bpcvoter2/deep-dive-into-the-bdvoter-hive-account-wallet-analysis-transactions-and-insights https://hive.blog/hive-181290/@bpcvoter2/the-situation-is-amusing-especially-when-we-see-how-people-react-when-their-transactions-and-voice-chats-are-exposed-lol-marcus https://hive.blog/hive-126152/@bpcvoter2/it-s-rich-marky-that-you-re-talking-about-the-hive-value-plan-isn-t-it-lol-you-make-hive-a-more-valuable-platform-it-seems-like https://hive.blog/hive-167922/@bpcvoter2/update-on-buildawhale-scam-farm-the-ipromote-account-is-raising-concerns-with-suspicious-transactions-that-don-t-look-good https://hive.blog/hive-133987/@bpcvoter3/analyzing-hivewatchers-transactions-a-dive-into-hive-s-controversial-account https://hive.blog/hive-180505/@bpcvoter3/taking-a-closer-look-at-the-gpwallet3-account-exposing-the-truth-behind-hive-transactions https://hive.blog/hive-173737/@bpcvoter3/exposing-the-truth-a-comprehensive-analysis-of-gpwallet2-s-transactions-on-hive https://hive.blog/hive-167922/@bpcvoter3/time-for-transparency-an-in-depth-look-at-bdvoter-s-activities https://hive.blog/hive-167922/@bpcvoter3/adm-downvote-data-and-curation-reward-data https://hive.blog/hive-167922/@bpcvoter3/buildawhale-downvotes https://hive.blog/hive-167922/@bpcvoter3/you-can-deceive-yourself-all-you-want-but-it-won-t-alter-the-reality-we-ve-uncovered-the-truth-and-will-continue-to-expose-your https://hive.blog/hive-133987/@bilpcoinbpc/comprehensive-analysis-of-punkteam-s-wallet-transactions https://hive.blog/hive-167922/@bilpcoinbpc/you-re-wasting-your-life-marcus-and-it-s-only-going-to-come-back-to-haunt-you-you-re-bringing-shame-and-ridicule-upon-yourself https://hive.blog/hive-167922/@bilpcoinbpc/exploring-the-possibilities-of-ai-art-with-bilpcoin-nfts-episode-100-buildawhale-scam-farm-on-hive TRANSACTIONS DON'T LIE PEOPLE DO Mc franko & Lady zaza #buildawhalescam https://youtu.be/RXJ1KaRojSc?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Marky’s Game Mc franko https://youtu.be/wlmBndOt1_w?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke AI Lady Zaza We can't help but notice https://youtu.be/LVt-39a-_c4?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke https://hive.blog/hive-126152/@bpcvoter3/unveiling-the-truth-a-deep-dive-into-hiveauctions-transactions https://hive.blog/hive-133987/@bilpcoinbpc/comprehensive-analysis-of-punkteam-s-wallet-transactions https://hive.blog/hive-167922/@bpcvoter1/dear-jacobtothe-your-claim-that-we-add-nothing-to-the-conversation-is-ironic-given-that-our-comments-consistently-expose https://peakd.com/@buildawhale/activities >Received: 2,339,631 HP @blocktrades 2,339,573 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 https://peakd.com/@infovore/wallet > Received: 60,332 HP @arhag 60,332 HP Jul 12, 2017 https://peakd.com/@arhag/wallet >Delegated: 508,664 HP Search @acidyo 238,418 HP Jul 7, 2017 @promoted 88,228 HP Jul 10, 2017 @steemcleaners 60,931 HP Jul 26, 2017 @spaminator 60,756 HP Jan 17, 2018 @infovore
author | bpcvoter1 |
---|---|
permlink | ssb0uc |
category | witness |
json_metadata | {"tags":["buildawhalescam","buildawhalefarm","themarkymarkfarm","themarkymarkscam"],"users":["blocktrades","nwjordan","arhag","acidyo","promoted","steemcleaners","spaminator","infovore"],"image":["https://img.youtube.com/vi/9mDdyXkA4KQ/0.jpg","https://img.youtube.com/vi/pM6aQTrjC98/0.jpg"],"links":["https://youtu.be/9mDdyXkA4KQ?list=PLbH29p-63eW961kQH1dpprW5Q4Oj9Z_w8"],"app":"hiveblog/0.1"} |
created | 2025-02-26 18:59:51 |
last_update | 2025-02-26 18:59:51 |
depth | 2 |
children | 3 |
last_payout | 2025-03-05 18:59:51 |
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 | 6,119 |
author_reputation | -19,351,543,732,776 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,075,869 |
net_rshares | 0 |
ok
author | themarkymark |
---|---|
permlink | re-bpcvoter1-ssbkif |
category | witness |
json_metadata | {"tags":["witness"],"app":"peakd/2025.2.3"} |
created | 2025-02-27 02:06:15 |
last_update | 2025-02-27 02:06:15 |
depth | 3 |
children | 2 |
last_payout | 2025-03-06 02:06:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.027 HBD |
curator_payout_value | 0.027 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2 |
author_reputation | 1,772,881,265,369,453 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,082,446 |
net_rshares | 158,296,290,459 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jacobtothe | 0 | 170,188,307,860 | 10% | ||
mmmmkkkk311 | 0 | -5,434,738,294 | -10% | ||
mariuszkarowski | 0 | -741,135,697 | -10% | ||
bluesniper | 0 | -1,877,401,558 | -10% | ||
primeradue | 0 | -47,028,986 | -10% | ||
ctime | 0 | -3,846,807,967 | -10% | ||
mk-photo-token | 0 | 0 | -10% | ||
bpcvoter4 | 0 | 997,761,694 | 100% | ||
csport | 0 | -95,127,452 | -10% | ||
gaskets | 0 | -59,178,102 | -10% | ||
tenpik | 0 | -72,546,135 | -10% | ||
zeltra | 0 | -90,249,934 | -10% | ||
sonntags | 0 | -615,191,700 | -10% | ||
endhivewatchers | 0 | 0 | 0.5% | ||
ovlagik | 0 | -2,168,843 | -10% | ||
labutamol | 0 | -8,204,427 | -10% |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.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/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM https://hive.blog/burnpost/@buildawhale/1742569802434998164 https://hive.blog/burnpost/@buildawhale/1742656202460243008 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sti6pr https://youtu.be/8zfuGpoO5do https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stkfjj https://hive.blog/burnpost/@buildawhale/1742742602124717444 https://hive.blog/burnpost/@themarkymark/re-kgakakillerg-stm4vv https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742690880-20250324t025303z https://hive.blog/donation/@crimsonclad/re-nampgf-sti0nf https://hive.blog/hive-148441/@azircon/re-curamax-stk5vq https://hive.blog/hive-funded/@acidyo/re-alex-rourke-stluzc https://hive.blog/hive-167922/@theycallmedan/re-finpulse-4gnm7o8h https://hive.blog/hive-144400/@blocktrades/st110u https://hive.blog/hive-148441/@usainvote/re-curamax-stly39 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s75mua https://hive.blog/burnpost/@buildawhale/1742829002430606097 https://peakd.com/hive-167922/@bpcvoter1/themarkymark-big-bad-marky-huh-lol-you-re-more-of-a-joke-than-anything-else-we-ve-exposed-your-actions-repeatedly-your-scamming https://hive.blog/3dprinting/@themarkymark/meet-frank-ajt https://hive.blog/burnpost/@buildawhale/1742483402094376205#@buildawhale/re-1742483402094376205-20250320t151108z https://hive.blog/curation/@azircon/re-acidyo-stn05u https://hive.blog/curation/@themarkymark/re-azircon-sto5b9 https://hive.blog/curation/@themarkymark/re-azircon-sto57d https://hive.blog/curation/@themarkymark/re-meno-sto4ua https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742825520-20250325t020936z https://hive.blog/hive-150342/@steevc/re-alessandrawhite-2025325t91011757z https://hive.blog/curation/@themarkymark/re-meno-stodj2 https://hive.blog/curation/@themarkymark/re-meno-stod08 https://hive.blog/hive-13323/@moeknows/re-azircon-stnrc3 https://hive.blog/hive-112018/@jacobtothe/re-dynamicrypto-sto8ak https://hive.blog/hive-13323/@azircon/re-moeknows-stofom https://hive.blog/burnpost/@buildawhale/1742915402155436654 https://hive.blog/hive-13323/@azircon/re-moeknows-stoq3o https://hive.blog/hive-13323/@bpcvoter1/stos6z STOP #buildawhalescam #buildawhalefarm
author | bpcvoter1 |
---|---|
permlink | stow8x |
category | witness |
json_metadata | {"tags":["buildawhalescam","buildawhalefarm"],"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://img.youtube.com/vi/dt5NeCofqwM/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c"],"app":"hiveblog/0.1"} |
created | 2025-03-25 17:20:06 |
last_update | 2025-03-25 17:20:06 |
depth | 2 |
children | 0 |
last_payout | 2025-04-01 17:20: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 | 7,004 |
author_reputation | -19,351,543,732,776 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,672,956 |
net_rshares | -1,628,283,989 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -1,649,063,428 | -0.1% | ||
bilpcoinbot1 | 0 | 20,779,439 | 100% |
https://hive.blog/hive-158694/@themarkymark/re-bpcvoter3-swicol @themarkymark & Co, you act as if you’re smart, but you’re not smart enough to realize you’ve already been exposed. The evidence is right here for everyone to see: <a href="https://imgflip.com/i/9uhbwy"><img src="https://i.imgflip.com/9uhbwy.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/9uhc2z"><img src="https://i.imgflip.com/9uhc2z.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/9uhc18"><img src="https://i.imgflip.com/9uhc18.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> #### @buildawhale Wallet: - **HIVE (Primary Token):** 0.012 - **Staked HIVE (HP):** 66,400.611 - **Total HP:** 2,421,539.226 - **Delegated HIVE:** +2,355,138.615 HP - Received: **2,355,080 HP from @blocktrades** (Aug 16, 2020) #### @usainvote Wallet: - **HIVE (Primary Token):** 0.066 - **Staked HIVE (HP):** 138,123.296 - **Total HP:** 715,745.407 - **Delegated HIVE:** +577,622.111 HP - Received: **577,622 HP from @blocktrades** (Aug 16, 2020) [@buildawhale/wallet](https://peakd.com/@buildawhale/wallet) | [@usainvote/wallet](https://peakd.com/@usainvote/wallet) The only ones who need “meds” are you and whoever else is behind this massive scam comment farm you’re running. Please, just get the help you need. **IT’S OVER.** The data doesn’t lie, and the community sees exactly what’s going on. Stop hiding behind distractions and face the truth—you’ve been exposed.
author | bpcvoter2 |
---|---|
permlink | swo2fd |
category | witness |
json_metadata | {"users":["themarkymark","buildawhale","blocktrades","usainvote"],"image":["https://i.imgflip.com/9uhbwy.jpg","https://i.imgflip.com/9uhc2z.jpg","https://i.imgflip.com/9uhc18.jpg"],"links":["https://hive.blog/hive-158694/@themarkymark/re-bpcvoter3-swicol"],"app":"hiveblog/0.1"} |
created | 2025-05-22 14:15:42 |
last_update | 2025-05-22 14:15:42 |
depth | 2 |
children | 0 |
last_payout | 2025-05-29 14:15: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 | 1,750 |
author_reputation | -4,735,461,274,096 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,898,306 |
net_rshares | 0 |
I actually have a N100 16G 512G NVME running a node. 
author | themarkymark |
---|---|
permlink | re-shmoogleosukami-ssb6kd |
category | witness |
json_metadata | {"tags":["witness"],"app":"peakd/2025.2.3","image":["https://files.peakd.com/file/peakd-hive/themarkymark/23swbmk7D2XPDUREpZ3S1znkB22WmnJ799PsyfrshhDgbxCZJJrfPqY27TGXUY6ch2bKN.png"],"users":[]} |
created | 2025-02-26 21:05:00 |
last_update | 2025-02-26 21:05:00 |
depth | 2 |
children | 1 |
last_payout | 2025-03-05 21:05: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 | 198 |
author_reputation | 1,772,881,265,369,453 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,078,209 |
net_rshares | -12,063,430,187 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mmmmkkkk311 | 0 | -5,497,072,521 | -10% | ||
mariuszkarowski | 0 | -750,850,814 | -10% | ||
bluesniper | 0 | -1,900,263,566 | -10% | ||
primeradue | 0 | -48,107,173 | -10% | ||
ctime | 0 | -3,810,640,478 | -10% | ||
mk-photo-token | 0 | 0 | -10% | ||
bpcvoter4 | 0 | 897,276,604 | 100% | ||
csport | 0 | -96,897,768 | -10% | ||
gaskets | 0 | -58,325,834 | -10% | ||
tenpik | 0 | -73,939,404 | -10% | ||
zeltra | 0 | -91,805,916 | -10% | ||
sonntags | 0 | -623,314,089 | -10% | ||
ovlagik | 0 | -1,748,916 | -10% | ||
labutamol | 0 | -7,740,312 | -10% |
Every curation reward from @buildawhale’s bot votes: https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c - **Steals from creators.** - **Centralizes power.** - **Normalizes abuse.** <a href="https://imgflip.com/i/9nb1hb"><img src="https://i.imgflip.com/9nb1hb.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/9nb1ky"><img src="https://i.imgflip.com/9nb1ky.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> The blockchain doesn’t forget—your actions are permanently recorded. So, enjoy your scam farm snacks now, because karma always delivers the bill. <a href="https://imgflip.com/i/9nb1s7"><img src="https://i.imgflip.com/9nb1s7.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> https://peakd.com/@buildawhale/comments https://peakd.com/@buildawhale/activities Staked HIVE More Also known as HP or Hive Power. Powers governance, voting and rewards. Increases at an APR of approximately: ~13.07% An unstake (power down) is scheduled to happen in 5 days (~4,742.795 HIVE, remaining 12 weeks) 61,991.841 Tot: 2,404,544.432 Delegated HIVE Staked tokens delegated between users. +2,342,552.591 Details HP Delegations RC Delegations Delegated: 0 HP Search No outgoing delegations Received: 2,342,553 HP @blocktrades 2,342,494 HP Aug 16, 2020 @nwjordan 24 HP May 27, 2018 We’ve exposed the truth repeatedly with **ironclad evidence**: - [@themarkymark’s $2.4M scam farm](https://www.publish0x.com/the-dark-side-of-hive/the-scam-farm-kingpin-at-themarkymark-s-24m-hive-power-grift-xqqxqpp). - [@buildawhale’s daily grift](https://hive.blog/hive-167922/@bpcvoter3/uncovering-the-buildawhale-scam-farm-a-call-for-transparency-on-hive-blockchain). - [@jacobtothe’s downvote army](https://www.publish0x.com/the-dark-side-of-hive/at-jacobtothe-s-downvote-army-and-at-buildawhale-s-scam-farm-xdkeqny). - **Downvote Army:** Silencing truth-tellers like Bilpcoin. - **Reward Yourself:** Collecting daily paychecks from @buildawhale. https://hive.blog/hive-124838/@themarkymark/re-jacobtothe-st6rk4 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s6knpb https://peakd.com/hive-124838/@bpcvoter1/st7wu1 https://peakd.com/hive-126152/@bpcvoter1/jacobtothe-you-re-not-god-no-matter-how-much-you-try-to-act-like-it-you-can-say-what-you-want-but-the-truth-remains-undeniable https://peakd.com/hive-163521/@bpcvoter3/jacobtothe-this-was-way-over-rewarded-and-we-need-to-call-it-out-you-made-significant-rewards-from-a-post-that-was-created-using https://peakd.com/hive-126152/@bpcvoter3/jacobtothe-let-s-address-the-core-issue-here-facts-speak-louder-than-rhetoric-we-ve-presented-verifiable-evidence-that https://peakd.com/hive-126152/@bpcvoter3/think-carefully-about-your-next-move-because-this-issue-is-bigger-than-any-one-of-us-the-downvote-abuse-scamming-and-farming-by https://hive.blog/hive-180505/@jacobtothe/re-denmarkguy-st9f4w https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-starqg https://hive.blog/hive-167922/@darknightlive/re-bpcvoter2-bpc-dogazz https://hive.blog/hive-126152/@tobetada/my-first-shitstorm#@azircon/re-tobetada-stbswq https://hive.blog/hive-124838/@acidyo/re-themarkymark-stbthn https://peakd.com/hive-168088/@bpcvoter3/jacobtothe-it-seems-we-re-going-in-circles-here-so-let-s-clarify-things-once-and-for-all-downvotes-don-t-erase-the-truth-the https://peakd.com/hive-126152/@bpcvoter3/uwelang-it-seems-you-re-dismissing-the-discussion-without-engaging-with-the-actual-content-that-s-unfortunate-because-the https://peakd.com/hive-121566/@bpcvoter1/std7q6 https://peakd.com/@uwelang/re-uwelang-stc2c3 https://hive.blog/hive/@themarkymark/what-the-fuck-do-witnesses-do-dk1 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s5tysw https://hive.blog/hive-124838/@steevc/re-meno-stdsv6 https://hive.blog/life/@crimsonclad/re-oldsoulnewb-sh93a2 You Can't Downvote The Truth Mc Franko Bpc Ai Music https://youtu.be/dt5NeCofqwM https://youtu.be/r1Yo-4fwjik https://hive.blog/hive-126152/@jacobtothe/re-galenkp-stekn4 https://hive.blog/hive-126152/@jacobtothe/re-galenkp-steiss https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sterpt https://youtu.be/dt5NeCofqwM https://youtu.be/YvF7Tm-w3kQ https://youtu.be/hBRluPW2M8s https://hive.blog/hive-124838/@acidyo/re-web-gnar-stfc6c https://hive.blog/mallorca/@azircon/re-abh12345-stfbyk https://youtu.be/mQdgnt_45lU?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c https://hive.blog/hive-167922/@uwelang/hpud-march-back-over-110k-hp https://youtu.be/5wEl6BaB2RM https://hive.blog/burnpost/@buildawhale/1742569802434998164 https://hive.blog/burnpost/@buildawhale/1742656202460243008 https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-sti6pr https://youtu.be/8zfuGpoO5do https://hive.blog/hive-124838/@themarkymark/re-peaksnaps-stkfjj https://hive.blog/burnpost/@buildawhale/1742742602124717444 https://hive.blog/burnpost/@themarkymark/re-kgakakillerg-stm4vv https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742690880-20250324t025303z https://hive.blog/donation/@crimsonclad/re-nampgf-sti0nf https://hive.blog/hive-148441/@azircon/re-curamax-stk5vq https://hive.blog/hive-funded/@acidyo/re-alex-rourke-stluzc https://hive.blog/hive-167922/@theycallmedan/re-finpulse-4gnm7o8h https://hive.blog/hive-144400/@blocktrades/st110u https://hive.blog/hive-148441/@usainvote/re-curamax-stly39 https://hive.blog/hive-167922/@usainvote/re-buildawhale-s75mua https://hive.blog/burnpost/@buildawhale/1742829002430606097 https://peakd.com/hive-167922/@bpcvoter1/themarkymark-big-bad-marky-huh-lol-you-re-more-of-a-joke-than-anything-else-we-ve-exposed-your-actions-repeatedly-your-scamming https://hive.blog/3dprinting/@themarkymark/meet-frank-ajt https://hive.blog/burnpost/@buildawhale/1742483402094376205#@buildawhale/re-1742483402094376205-20250320t151108z https://hive.blog/curation/@azircon/re-acidyo-stn05u https://hive.blog/curation/@themarkymark/re-azircon-sto5b9 https://hive.blog/curation/@themarkymark/re-azircon-sto57d https://hive.blog/curation/@themarkymark/re-meno-sto4ua https://hive.blog/hive-124838/@themarkymark/re-snap-container-1742825520-20250325t020936z https://hive.blog/hive-150342/@steevc/re-alessandrawhite-2025325t91011757z https://hive.blog/curation/@themarkymark/re-meno-stodj2 https://hive.blog/curation/@themarkymark/re-meno-stod08 https://hive.blog/hive-13323/@moeknows/re-azircon-stnrc3 https://hive.blog/hive-112018/@jacobtothe/re-dynamicrypto-sto8ak https://hive.blog/hive-13323/@azircon/re-moeknows-stofom https://hive.blog/burnpost/@buildawhale/1742915402155436654 https://hive.blog/hive-13323/@azircon/re-moeknows-stoq3o https://hive.blog/hive-13323/@bpcvoter1/stos6z STOP #buildawhalescam #buildawhalefarm
author | bpcvoter1 |
---|---|
permlink | stow95 |
category | witness |
json_metadata | {"tags":["buildawhalescam","buildawhalefarm"],"users":["buildawhale","blocktrades","nwjordan","themarkymark","jacobtothe"],"image":["https://img.youtube.com/vi/Jq1OSzxVTxE/0.jpg","https://img.youtube.com/vi/dt5NeCofqwM/0.jpg","https://i.imgflip.com/9nb1hb.jpg","https://i.imgflip.com/9nb1ky.jpg","https://i.imgflip.com/9nb1s7.jpg"],"links":["https://youtu.be/Jq1OSzxVTxE?list=PLbH29p-63eW8RYYWw4wUNG87fDpzVma-c"],"app":"hiveblog/0.1"} |
created | 2025-03-25 17:20:15 |
last_update | 2025-03-25 17:20:15 |
depth | 3 |
children | 0 |
last_payout | 2025-04-01 17:20: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 | 7,004 |
author_reputation | -19,351,543,732,776 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,672,959 |
net_rshares | -1,626,857,707 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -1,649,078,282 | -0.1% | ||
bilpcoinbot1 | 0 | 22,220,575 | 100% |
by the way even without snapsot now massive sync takes less then 2 days which is big improvement from split hive/steem
author | sopel |
---|---|
permlink | ssc1p0 |
category | witness |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-02-27 08:17:24 |
last_update | 2025-02-27 08:17:24 |
depth | 1 |
children | 2 |
last_payout | 2025-03-06 08:17: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 | 118 |
author_reputation | 18,127,292,352 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,087,229 |
net_rshares | 0 |
Since the fork there has been a lot of improvements focused on optimizations.
author | themarkymark |
---|---|
permlink | re-sopel-sscg5c |
category | witness |
json_metadata | {"tags":["witness"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-02-27 13:29:36 |
last_update | 2025-02-27 13:29:36 |
depth | 2 |
children | 1 |
last_payout | 2025-03-06 13:29: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 | 77 |
author_reputation | 1,772,881,265,369,453 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,092,505 |
net_rshares | -12,235,814,457 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mmmmkkkk311 | 0 | -5,614,950,378 | -10% | ||
mariuszkarowski | 0 | -742,711,017 | -10% | ||
bluesniper | 0 | -1,904,828,780 | -10% | ||
primeradue | 0 | -51,108,475 | -10% | ||
ctime | 0 | -3,983,263,089 | -10% | ||
mk-photo-token | 0 | 0 | -10% | ||
bpcvoter4 | 0 | 1,019,096,238 | 100% | ||
csport | 0 | -99,750,954 | -10% | ||
gaskets | 0 | -60,048,518 | -10% | ||
tenpik | 0 | -75,545,180 | -10% | ||
zeltra | 0 | -94,528,887 | -10% | ||
sonntags | 0 | -615,954,036 | -10% | ||
endhivewatchers | 0 | 0 | 0.5% | ||
ovlagik | 0 | -3,420,818 | -10% | ||
labutamol | 0 | -8,800,563 | -10% | ||
mdmostofa02 | 0 | 0 | 100% |
Dear @jacobtothe @steevc @makerhacks It’s almost comical how you accuse us of posting "copypasta shit" while your friends like @makerhacks rush to your defense, downvoting and deflecting instead of addressing the actual issues at hand. Funny enough, @makerhacks is also one a supporter of the BuildaWhale scam farm LOL—a fact that speaks volumes about the company you keep. It seems your circle is more interested in protecting abusive practices than fostering transparency and accountability on Hive. You claim our responses are "arrogant and flowery," yet you fail to acknowledge the substance of what we’re saying. We expose truths that make you uncomfortable, and instead of engaging in meaningful dialogue, you resort to personal attacks and suppression tactics. Downvotes don’t change facts—they only highlight your desperation to silence dissent. If you truly believed in honesty and integrity, you’d confront the truth instead of hiding behind your friends’ coordinated efforts. We’ve said it before, and we’ll say it again: Bilpcoin stands for something. We’re here to fight for everyone on Hive by exposing corruption and abuse. What do *you* stand for? Apparently, silencing the truth with downvotes and enabling scam farms like BuildaWhale. That’s not leadership LOL—it’s complicity. If you and your friends really cared about Hive, you’d stop enabling harm and start reflecting on your actions. Until then, we’ll continue shining a light on the truth because no amount of censorship or intimidation will stop us. The blockchain doesn’t lie, and neither do we.
author | bpcvoter1 |
---|---|
permlink | sscmak |
category | witness |
json_metadata | {"users":["jacobtothe","steevc","makerhacks"],"app":"hiveblog/0.1"} |
created | 2025-02-27 15:40:45 |
last_update | 2025-02-27 15:40:45 |
depth | 3 |
children | 0 |
last_payout | 2025-03-06 15:40:45 |
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,576 |
author_reputation | -19,351,543,732,776 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,095,635 |
net_rshares | 0 |
I dread the day nodes can fit on smartphones. However, I yearn for that day when every user can be a node, OOTB. Thanks!
author | valued-customer |
---|---|
permlink | re-themarkymark-ssc4st |
category | witness |
json_metadata | {"tags":["witness"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-02-27 09:24:30 |
last_update | 2025-02-27 09:24:30 |
depth | 1 |
children | 0 |
last_payout | 2025-03-06 09:24: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 | 122 |
author_reputation | 352,993,977,212,674 |
root_title | "Setup a Hive witness using the new rolling block log feature" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,088,122 |
net_rshares | 28,615,855,379 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
freebornsociety | 0 | 7,575,056,384 | 14% | ||
dreamtales | 0 | 21,040,798,995 | 100% | ||
endhivewatchers | 0 | 0 | 0.5% |