<center> </center> Well, well... I had a little chat with @enginewitty about a few things that would make Hive as a whole a little more cohesive. So again I'm onto @thecrazygm and the Hive-Nectar (@nectarflower) API over the older BEEM API, which is great by the way and works just the same, it's just a little dated. I do however use Beem API on an older PC that I have difficulties upgrading Python to 3.12 on...fuckin' Raspberry Pi's "I tell ya what..." <center></center> My whole concept was that I'm an active @Ecency user, and if you're not familiar with it, you get points for utilizing the platform, which is super neat. Those are, however, only used on the Ecency Platform. So my thoughts were, what do we do to be able to make those things an actual asset for Hive's chain? I'm literally sitting here coding a headless interface that allows users to transfer Ecency Points for @PeakeCoin as well as the reverse. I am using an alt account of @Peakecoin.bnb that I use for most coding inquiries as to not shall we say "screw the pooch"... I hope that's not your thing. I have not yet put this code into use. I am trying to secure a free server for some of this stuff, and I believe I have found one, so we'll see how that goes after I get it up and running. import time import csv from selenium import webdriver from selenium.webdriver.chrome.options import Options from selenium.webdriver.common.by import By from selenium.webdriver.chrome.service import Service from nectar.hive import Hive from nectar.account import Account from nectar.transactionbuilder import TransactionBuilder from nectarbase.operations import Custom_json # ---- CONFIG ---- # HIVE_NODES = ["https://api.hive.blog", "https://anyx.io"] HIVE_ACCOUNT = "peakecoin.bnb" ACTIVE_KEY = "your_active_key_here" # <-- INSERT YOUR ACTIVE KEY HERE PEK_TOKEN = "PEK" SWAP_RATE = 0.001 ECENCY_POINTS_URL = "https://ecency.com/@peakecoin.bnb/points" CHECK_INTERVAL = 60 # seconds between page checks # ---- SETUP ---- # # Setup Hive connection hive = Hive(node=HIVE_NODES, keys=[ACTIVE_KEY]) account = Account(HIVE_ACCOUNT, blockchain_instance=hive) # Setup Headless Chromium on Raspberry Pi chrome_options = Options() chrome_options.add_argument("--headless") chrome_options.add_argument("--disable-gpu") chrome_options.add_argument("--no-sandbox") chrome_options.add_argument("--window-size=1920x1080") chromedriver_path = "/usr/lib/chromium-browser/chromedriver" driver = webdriver.Chrome(service=Service(chromedriver_path), options=chrome_options) # Ensure swap log exists LOG_FILE = "swap_log.csv" try: with open(LOG_FILE, "x", newline="") as f: writer = csv.writer(f) writer.writerow(["timestamp", "username", "points", "pek_sent"]) except FileExistsError: pass # File already exists # Load processed usernames to avoid double swaps processed = set() with open(LOG_FILE, newline="") as f: reader = csv.reader(f) next(reader, None) # skip header for row in reader: if len(row) > 1: processed.add(row[1]) # ---- FUNCTIONS ---- # def send_pek(to_account, points_amount): pek_amount = points_amount * SWAP_RATE payload = { "contractName": "tokens", "contractAction": "transfer", "contractPayload": { "symbol": PEK_TOKEN, "to": to_account, "quantity": str(round(pek_amount, 8)), "memo": "Ecency Points Swap" } } tx = TransactionBuilder(blockchain_instance=hive) op = Custom_json( required_auths=[HIVE_ACCOUNT], required_posting_auths=[], id="ssc-mainnet-hive", json=payload ) tx.appendOps(op) tx.appendSigner(HIVE_ACCOUNT, "active") tx.sign() tx.broadcast() print(f"✅ Sent {pek_amount} {PEK_TOKEN} to {to_account}") return pek_amount def monitor_swaps(): print("🚀 Starting Ecency Points Swap Bot...") while True: try: driver.get(ECENCY_POINTS_URL) time.sleep(5) # let the page load notifications = driver.find_elements(By.CLASS_NAME, "items-center") for note in notifications: text = note.text.lower() if "points" in text and "peakecoin transfer" in text: # Extract username and points try: parts = text.split(" ") from_index = parts.index("from") username = parts[from_index + 1].lstrip("@").strip() points = int([p for p in parts if p.isdigit()][0]) if username not in processed: print(f"🔍 Swap found: {username} sent {points} Points") pek_sent = send_pek(username, points) with open(LOG_FILE, "a", newline="") as f: writer = csv.writer(f) writer.writerow([time.strftime("%Y-%m-%d %H:%M:%S"), username, points, pek_sent]) processed.add(username) except Exception as e: print(f"⚠️ Error parsing notification: {e}") except Exception as e: print(f"❌ Error during page check: {e}") time.sleep(CHECK_INTERVAL) # ---- RUN ---- # if __name__ == "__main__": monitor_swaps() I'm not overly familiar with how a headless Chromium and Selenium's API will work if at all. This is the closest I have gotten, and it seems like it should logically work. As always, I'm looking for critiques. I appreciate all views, votes, shares, and forks of the code.
author | paulmoon410 | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | selenium-hive-nectar-turning-ecency | ||||||||||||||||||
category | hive-167922 | ||||||||||||||||||
json_metadata | "{"app":"ecency/4.0.3-vision","tags":["hive-167922","pimp","neoxian","palnet","waivio","proofofbrain","leo","ctp","creativecoin","bee","ecency"],"format":"markdown+html","image":["https://images.ecency.com/DQmWW3LQLHrdW16ZpCVZidXgDCRo3CrbatPXueDSrhD9qkd/image.png","https://images.ecency.com/DQmUBAL99HHJdyGVdsNqkHADeHdHKAAQebsPYo5cLDr3Ee9/image.png"],"thumbnails":["https://images.ecency.com/DQmWW3LQLHrdW16ZpCVZidXgDCRo3CrbatPXueDSrhD9qkd/image.png"],"description":"So again I'm onto @thecrazygm and the Hive-Nectar (@nectarflower) API over the older BEEM API, which is great by the way and works just the same, it's just a little dated. I do however use Beem API on","image_ratios":["0.9600","1.0000"]}" | ||||||||||||||||||
created | 2025-04-29 23:59:06 | ||||||||||||||||||
last_update | 2025-04-29 23:59:06 | ||||||||||||||||||
depth | 0 | ||||||||||||||||||
children | 8 | ||||||||||||||||||
last_payout | 2025-05-06 23:59:06 | ||||||||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||||||||
total_payout_value | 2.414 HBD | ||||||||||||||||||
curator_payout_value | 2.469 HBD | ||||||||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||||||||
promoted | 0.000 HBD | ||||||||||||||||||
body_length | 6,036 | ||||||||||||||||||
author_reputation | 40,583,385,514,311 | ||||||||||||||||||
root_title | "Selenium/Hive-Nectar Turning Ecency Points into PeakePoints" | ||||||||||||||||||
beneficiaries |
| ||||||||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||||||||
percent_hbd | 0 | ||||||||||||||||||
post_id | 142,406,158 | ||||||||||||||||||
net_rshares | 14,785,866,107,619 | ||||||||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
canadian-coconut | 0 | 3,625,612,146,181 | 25% | ||
phusionphil | 0 | 11,718,085,709 | 95% | ||
ana-maria | 0 | 87,893,902,556 | 50% | ||
eforucom | 0 | 22,915,314,403 | 100% | ||
dylanhobalart | 0 | 65,831,714,231 | 11% | ||
da-dawn | 0 | 30,996,289,515 | 8% | ||
thecrazygm | 0 | 30,577,245,321 | 100% | ||
mes | 0 | 417,781,262,438 | 24% | ||
mvd | 0 | 549,021,677 | 50% | ||
jznsamuel | 0 | 391,623,839,092 | 100% | ||
enginewitty | 0 | 85,405,483,273 | 100% | ||
ecoinstant | 0 | 145,727,219,865 | 100% | ||
cryptoknight12 | 0 | 38,159,070,189 | 100% | ||
joeyarnoldvn | 0 | 453,256,685 | 1.47% | ||
eturnerx | 0 | 272,979,157,981 | 20.9% | ||
dante31 | 0 | 1,999,747,009 | 55% | ||
likedeeler | 0 | 235,883,946,427 | 100% | ||
killerwhale | 0 | 50,899,102,237 | 100% | ||
accelerator | 0 | 50,977,163,675 | 60% | ||
rumplestiltskin | 0 | 28,917,870,463 | 100% | ||
artlover | 0 | 1,512,581,120 | 100% | ||
tomiscurious | 0 | 26,616,283,654 | 4.6% | ||
futurethinker | 0 | 1,490,913,746 | 100% | ||
podanrj | 0 | 1,216,488,645 | 55% | ||
fatman | 0 | 9,232,148,276 | 2% | ||
votehero | 0 | 27,011,013,477 | 5.5% | ||
silvergoldbotty | 0 | 86,842,762,781 | 100% | ||
buttcoins | 0 | 854,842,706,827 | 23% | ||
steemitcomics | 0 | 1,457,233,002 | 100% | ||
new-world-steem | 0 | 66,799,006,232 | 23% | ||
anomallies | 0 | 10,020,340,577 | 100% | ||
diverse | 0 | 163,135,238,031 | 100% | ||
steveconnor | 0 | 98,600,839,286 | 50% | ||
jozefkrichards | 0 | 4,883,880,849 | 50% | ||
irisworld | 0 | 922,342,627 | 7.5% | ||
bengy | 0 | 2,577,298,190 | 3% | ||
osarueseosato | 0 | 654,854,518 | 100% | ||
aakom | 0 | 480,660,796 | 100% | ||
psyborg | 0 | 10,904,482,154 | 100% | ||
antdroid | 0 | 11,209,557,964 | 100% | ||
hazem91 | 0 | 9,733,712,576 | 40% | ||
katrina-ariel | 0 | 36,381,842,274 | 100% | ||
promo-mentors | 0 | 709,302,503 | 100% | ||
abrockman | 0 | 1,392,076,610,818 | 100% | ||
memepress | 0 | 1,637,388,521 | 47.5% | ||
monchhichi23 | 0 | 977,790,152 | 100% | ||
bajadera | 0 | 1,646,036,672 | 25% | ||
tuisada | 0 | 13,786,301,503 | 40% | ||
cubapl | 0 | 3,843,263,174 | 30% | ||
voxmortis | 0 | 11,335,628,682 | 6% | ||
thesummoner | 0 | 10,781,562,181 | 100% | ||
a-bot | 0 | 15,291,764,101 | 30% | ||
voter001 | 0 | 27,036,901,522 | 28.5% | ||
lunamoon | 0 | 48,095,062,854 | 100% | ||
khaldeesi | 0 | 47,186,415,155 | 100% | ||
freyamber | 0 | 47,815,792,267 | 100% | ||
cliffagreen | 0 | 24,634,259,693 | 50% | ||
ecoinstats | 0 | 1,565,738,723,735 | 100% | ||
chain.games | 0 | 21,528,665,179 | 100% | ||
r-e-d | 0 | 7,729,100,717 | 100% | ||
synergized | 0 | 4,383,400,311 | 50% | ||
lord-of-the-d | 0 | 10,752,309,643 | 100% | ||
steemforsteem | 0 | 979,226,766 | 100% | ||
toonuts | 0 | 2,242,250,883 | 100% | ||
twonuts | 0 | 2,279,611,501 | 100% | ||
letlove | 0 | 2,890,769,008 | 100% | ||
allied-mafia | 0 | 8,425,209,140 | 100% | ||
bigmoneyman | 0 | 520,953,231 | 30% | ||
steemforschool | 0 | 976,706,539 | 100% | ||
steemforschools | 0 | 1,176,058,453 | 100% | ||
itwasme | 0 | 1,463,209,274 | 100% | ||
steemvpn | 0 | 29,665,551,246 | 95% | ||
tinyhousecryptos | 0 | 462,255,065 | 5% | ||
mind.force | 0 | 3,608,560,114 | 25% | ||
x40l1n | 0 | 52,842,986,160 | 100% | ||
theblooded | 0 | 990,610,716 | 100% | ||
blooded | 0 | 990,676,095 | 100% | ||
theclan | 0 | 1,994,867,615 | 100% | ||
lrekt01 | 0 | 5,572,038,655 | 80% | ||
everythingsmgirl | 0 | 8,036,536,512 | 50% | ||
angeltree | 0 | 2,012,861,106 | 100% | ||
christmasclub | 0 | 2,213,198,414 | 100% | ||
freedomring | 0 | 1,256,946,365 | 25% | ||
publicview | 0 | 22,824,062,592 | 100% | ||
urun | 0 | 17,497,008,434 | 100% | ||
sandymeyer | 0 | 39,279,208,510 | 12.5% | ||
birthdaywishes | 0 | 997,534,615 | 100% | ||
youdo | 0 | 2,427,460,285 | 100% | ||
bi0digital | 0 | 10,226,163,500 | 100% | ||
wittys.angels | 0 | 1,004,913,183 | 100% | ||
wittysangels | 0 | 1,004,919,663 | 100% | ||
ecobanker | 0 | 124,932,775,285 | 100% | ||
treasure.hoard | 0 | 142,195,801,803 | 100% | ||
locolombia | 0 | 3,020,748,073 | 100% | ||
hive-127039 | 0 | 856,184,426 | 25% | ||
dpend.active | 0 | 3,744,187,423 | 10% | ||
zelegations | 0 | 10,944,116,690 | 95% | ||
ykretz | 0 | 1,403,978,289 | 15% | ||
janaliana | 0 | 701,709,562 | 12.5% | ||
timhorton | 0 | 10,612,651,735 | 95% | ||
cerberus-dji | 0 | 2,408,884,277 | 95% | ||
sketching | 0 | 6,417,010,926 | 50% | ||
hivecannabis | 0 | 4,037,650,590 | 42% | ||
archon-gov | 0 | 87,994,855,458 | 50% | ||
newigennity | 0 | 158,767,760,549 | 100% | ||
angiel | 0 | 23,971,188,112 | 100% | ||
sassafrass | 0 | 3,384,707,677 | 100% | ||
hive-vpn | 0 | 2,157,409,393 | 95% | ||
alex-rourke | 0 | 2,199,856,973,422 | 75% | ||
bellelynn | 0 | 1,478,052,622 | 100% | ||
tehox | 0 | 100,255,531,398 | 100% | ||
dr460n3y3 | 0 | 4,639,883,736 | 100% | ||
b34w0lf | 0 | 8,292,290,719 | 100% | ||
pokerarema | 0 | 456,876,431,453 | 100% | ||
timmy-turnip | 0 | 1,932,621,576 | 50% | ||
trezzahn | 0 | 30,979,978,284 | 100% | ||
mirroredspork | 0 | 22,940,702,021 | 100% | ||
mxm0unite | 0 | 1,574,387,439 | 50% | ||
marshmellowman | 0 | 8,247,625,718 | 55% | ||
karla129 | 0 | 1,440,331,529 | 40% | ||
dstampede | 0 | 1,148,410,877 | 100% | ||
arc7icwolf | 0 | 205,322,203,469 | 50% | ||
txracer | 0 | 2,288,995,746 | 100% | ||
hive-165007 | 0 | 3,902,667,674 | 100% | ||
thebigfish | 0 | 179,273,156,586 | 100% | ||
mmoonn | 0 | 1,537,309,430 | 100% | ||
dr-animation | 0 | 1,427,668,244 | 100% | ||
ryosai | 0 | 4,940,754,608 | 24% | ||
tokencav | 0 | 51,404,155,294 | 50% | ||
w1tty | 0 | 6,459,689,058 | 100% | ||
monsterrerentals | 0 | 31,107,423,005 | 100% | ||
pakgeusyik | 0 | 3,458,135,881 | 100% | ||
vocup | 0 | 129,650,514,759 | 40% | ||
willendorfia | 0 | 8,489,669,763 | 100% | ||
peakecoin | 0 | 1,233,169,166 | 100% | ||
pof.archon | 0 | 465,361,211 | 50% | ||
vetfunding | 0 | 17,488,184,185 | 50% | ||
mithrildestiny | 0 | 134,933,899,568 | 100% | ||
karina.yana | 0 | 1,847,054,741 | 100% | ||
cryptodom151 | 0 | 1,130,876,101 | 40% | ||
nism | 0 | 35,527,829,603 | 100% | ||
thetradecenter | 0 | 19,366,801,606 | 100% | ||
learn2code | 0 | 550,207,785 | 25% | ||
peakecoin.bnb | 0 | 969,392,984 | 100% | ||
strangedad | 0 | 1,664,581,958 | 100% | ||
blemish | 0 | 1,905,497,093 | 100% | ||
thecrazygm.bank | 0 | 2,444,720,478 | 100% | ||
vocup.pob | 0 | 3,021,253,490 | 100% | ||
peakecoin.matic | 0 | 564,433,519 | 100% |
Hmm. What do you want to do with the Peakecoin compared to Ecency Points? !pakx
author | cwow2 |
---|---|
permlink | re-paulmoon410-sviijr |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2025.4.6","image":[],"users":[]} |
created | 2025-04-30 03:47:51 |
last_update | 2025-04-30 03:47:51 |
depth | 1 |
children | 1 |
last_payout | 2025-05-07 03:47:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.096 HBD |
curator_payout_value | 0.095 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 208,690,518,984,185 |
root_title | "Selenium/Hive-Nectar Turning Ecency Points into PeakePoints" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,408,909 |
net_rshares | 571,311,458,130 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ecoinstant | 0 | 175,803,526,062 | 100% | ||
eturnerx | 0 | 271,561,053,087 | 20.5% | ||
fatman | 0 | 9,222,190,036 | 2% | ||
votehero | 0 | 26,829,419,276 | 5.4% | ||
investegg | 0 | 27,214,727,377 | 14.5% | ||
paulmoon410 | 0 | 30,649,372,412 | 100% | ||
voter002 | 0 | 27,413,775,235 | 63.7% | ||
dr-animation | 0 | 1,380,822,765 | 100% | ||
peakecoin | 0 | 1,236,571,880 | 100% | ||
endhivewatchers | 0 | 0 | -0.01% |
Can you be more concise?
author | paulmoon410 |
---|---|
permlink | re-cwow2-2025430t53046474z |
category | hive-167922 |
json_metadata | {"type":"comment","tags":["hive-167922"],"app":"ecency/3.3.2-mobile","format":"markdown+html"} |
created | 2025-04-30 09:30:48 |
last_update | 2025-04-30 09:30:48 |
depth | 2 |
children | 0 |
last_payout | 2025-05-07 09:30: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 | 24 |
author_reputation | 40,583,385,514,311 |
root_title | "Selenium/Hive-Nectar Turning Ecency Points into PeakePoints" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,413,013 |
net_rshares | 28,848,206,562 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -1,857,835,687 | -0.25% | ||
paulmoon410 | 0 | 30,706,042,249 | 100% |
Honestly, tokenizing a broker-coin for ecency points is an amazing idea!!! Talk about utility, these can be used for HP delegations! In terms of tokenomics, are you going to take like a 1% fee / "value rake" on these in and outs? Free work doesnt work, long term - it never does.
author | ecoinstant |
---|---|
permlink | re-paulmoon410-svif6k |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2025.4.6","image":[],"users":[]} |
created | 2025-04-30 02:35:09 |
last_update | 2025-04-30 02:35:09 |
depth | 1 |
children | 1 |
last_payout | 2025-05-07 02:35: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 | 282 |
author_reputation | 847,614,012,647,141 |
root_title | "Selenium/Hive-Nectar Turning Ecency Points into PeakePoints" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,408,148 |
net_rshares | 77,710,629,275 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thecrazygm | 0 | 31,086,348,474 | 100% | ||
paulmoon410 | 0 | 31,031,722,765 | 100% | ||
dustbunny | 0 | 12,670,564,451 | 3.87% | ||
mmoonn | 0 | 1,526,677,507 | 100% | ||
dr-animation | 0 | 1,395,316,078 | 100% |
I really haven't even gotten there yet. I have only debugged the code, I've yet to implement it. A fee would probably be charged, something that can't be built and maintained for free. It's just like you say, anything can be done for free... but it's going to maintain a lower quality effort.
author | paulmoon410 |
---|---|
permlink | re-ecoinstant-2025429t22436876z |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"ecency/4.0.3-vision","format":"markdown+html"} |
created | 2025-04-30 02:43:06 |
last_update | 2025-04-30 02:43:06 |
depth | 2 |
children | 0 |
last_payout | 2025-05-07 02:43:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.056 HBD |
curator_payout_value | 0.055 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 292 |
author_reputation | 40,583,385,514,311 |
root_title | "Selenium/Hive-Nectar Turning Ecency Points into PeakePoints" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,408,234 |
net_rshares | 334,942,581,388 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ecoinstant | 0 | 147,281,680,002 | 100% | ||
votehero | 0 | 26,636,735,581 | 5.4% | ||
msp-makeaminnow | 0 | 26,850,896,445 | 29.4% | ||
paulmoon410 | 0 | 36,551,001,508 | 100% | ||
thefoundation | 0 | 26,690,235,943 | 51.3% | ||
we-are-lucky | 0 | 44,148,567,480 | 100% | ||
voter002 | 0 | 26,783,464,429 | 64% |
What version of python is on the raspberry pi? I only set it to 3.12 as that is the standard stable version of python at the moment, but I do not believe it's making use of anything specific to the later versions. I could drop the requirement version if you think that's the only thing stopping it from working right, I do think even 3.10 is still considered "in play" as in not depreciated.
author | thecrazygm |
---|---|
permlink | re-paulmoon410-svivf2 |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2025.4.6","image":[],"users":[]} |
created | 2025-04-30 08:25:51 |
last_update | 2025-04-30 08:25:51 |
depth | 1 |
children | 3 |
last_payout | 2025-05-07 08:25:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.094 HBD |
curator_payout_value | 0.094 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 391 |
author_reputation | 88,578,967,128,712 |
root_title | "Selenium/Hive-Nectar Turning Ecency Points into PeakePoints" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,412,281 |
net_rshares | 575,052,466,207 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ecoinstant | 0 | 179,365,752,385 | 100% | ||
eturnerx | 0 | 271,330,149,053 | 20.4% | ||
fatman | 0 | 9,225,513,465 | 2% | ||
votehero | 0 | 26,857,343,897 | 5.4% | ||
paulmoon410 | 0 | 31,275,592,903 | 100% | ||
thefoundation | 0 | 27,270,067,867 | 51.7% | ||
voter001 | 0 | 27,055,194,958 | 28% | ||
dr-animation | 0 | 1,410,023,230 | 100% | ||
peakecoin | 0 | 1,262,828,449 | 100% |
I have an older Pi that doesn't like it. The Pis operate on 3.10 basically.
author | paulmoon410 |
---|---|
permlink | re-thecrazygm-2025430t5291610z |
category | hive-167922 |
json_metadata | {"type":"comment","tags":["hive-167922"],"app":"ecency/3.3.2-mobile","format":"markdown+html"} |
created | 2025-04-30 09:29:03 |
last_update | 2025-04-30 09:29:03 |
depth | 2 |
children | 2 |
last_payout | 2025-05-07 09:29:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.101 HBD |
curator_payout_value | 0.100 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 75 |
author_reputation | 40,583,385,514,311 |
root_title | "Selenium/Hive-Nectar Turning Ecency Points into PeakePoints" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,412,992 |
net_rshares | 609,541,915,933 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thecrazygm | 0 | 31,718,149,591 | 100% | ||
ecoinstant | 0 | 183,019,692,310 | 100% | ||
eturnerx | 0 | 26,566,173,602 | 2% | ||
spaminator | 0 | -1,857,835,687 | -0.25% | ||
tomiscurious | 0 | 275,442,147,430 | 47.5% | ||
fatman | 0 | 9,229,031,690 | 2% | ||
votehero | 0 | 26,885,866,979 | 5.4% | ||
paulmoon410 | 0 | 31,332,824,688 | 100% | ||
voter001 | 0 | 27,205,865,330 | 28% |
I'll bump the requirements down to 3.10 for version 0.0.7 (which should be in the next day or so, as soon as i'm done bug testing) so you should be able to use it on the pi after that.
author | thecrazygm |
---|---|
permlink | re-paulmoon410-svj1vc |
category | hive-167922 |
json_metadata | {"tags":["hive-167922"],"app":"peakd/2025.4.6","image":[],"users":[]} |
created | 2025-04-30 10:45:15 |
last_update | 2025-04-30 10:45:15 |
depth | 3 |
children | 1 |
last_payout | 2025-05-07 10:45:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.100 HBD |
curator_payout_value | 0.098 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 184 |
author_reputation | 88,578,967,128,712 |
root_title | "Selenium/Hive-Nectar Turning Ecency Points into PeakePoints" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,413,827 |
net_rshares | 598,075,538,123 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ecoinstant | 0 | 186,748,202,437 | 100% | ||
eturnerx | 0 | 26,576,454,350 | 2% | ||
tomiscurious | 0 | 273,352,040,948 | 46.7% | ||
fatman | 0 | 9,232,615,811 | 2% | ||
votehero | 0 | 26,914,420,898 | 5.4% | ||
we-are-one | 0 | 1,083,599,875 | 100% | ||
we-are-lucky | 0 | 44,592,878,503 | 100% | ||
voter002 | 0 | 27,102,019,682 | 62.2% | ||
projectdignity | 0 | 2,473,305,619 | 100% |