Following up on my previous libraries like [`nectarflower-js`](https://github.com/TheCrazyGM/nectarflower-js) (which I wrote about [here](/@thecrazygm/use-nectar-without-using-hive-nectar)) and the more recent [`nectarflower-go`](https://github.com/TheCrazyGM/nectarflower-go) (written about [here](/@thecrazygm/nectarflower-go-nectar-without-nectar-2)), I wanted to tackle this useful concept from yet another language perspective, probably the most difficult, imho. It's Rust's turn! The main point I keep wanting to demonstrate is just how **incredibly useful** it is that `@nectarflower` keeps their Hive node benchmark data updated hourly and stores it right in their account's JSON metadata. Seriously, having this reliable list of passing nodes available on-chain is an amazing thing for developers. It makes getting good API endpoints so much easier, no matter what language you're building with. So, here's my attempt at making this accessible for Rust developers: [`nectarflower-rs`](https://github.com/TheCrazyGM/nectarflower-rs). The goal is the same: provide a simple way to fetch and use that valuable node data stored in the metadata. Getting the list of passing nodes within your Rust code is pretty straightforward: ```rust use nectarflower_rs::Client; fn main() { // Create a client just to fetch nodes let client = Client::new(); // Get nodes from account match client.get_nodes_from_account("nectarflower") { Ok(node_data) => { // Display passing nodes println!("Passing nodes:"); for node in node_data.nodes { println!("{}", node); } // Display failing nodes println!("\nFailing nodes:"); if node_data.failing_nodes.is_empty() { println!("None"); } else { for (node, reason) in node_data.failing_nodes { println!("{} - Reason: {}", node, reason); } } }, Err(e) => eprintln!("Error fetching nodes: {}", e), } } ```  Now, just like the Go version, to actually pull the account info containing the metadata, the library needs some basic Hive client functionality baked in. It's fairly minimal right now, but it gets the job done. Hereโs a quick example of the client part fetching something basic, like a block near the head block: ```rust //! Example usage for nectarflower-rs use nectarflower_rs::Client; use serde_json::Value; fn main() { // Create a new Hive client with default node let mut client = Client::new(); println!("Default client initialized with: {:?}", client.nodes); // Account to fetch nodes from let account_name = "nectarflower"; // Get nodes from account println!("\nFetching nodes from account {}...", account_name); match client.get_nodes_from_account(account_name) { Ok(node_data) => { println!("Found {} nodes in account metadata", node_data.nodes.len()); println!("Nodes: {:?}", node_data.nodes); if !node_data.failing_nodes.is_empty() { println!( "Found {} failing nodes in account metadata\nFailing nodes: {:?}", node_data.failing_nodes.len(), node_data.failing_nodes ); } // Update client with new nodes println!("\nUpdating client with new nodes..."); client.set_nodes(node_data.nodes.clone(), node_data.failing_nodes.clone()); println!("Updated client initialized with: {:?}", client.nodes); } Err(e) => { eprintln!("Error fetching nodes: {e}"); return; } } // Test the updated client with a simple query println!("\nTesting updated client with a query..."); let props: Result<Value, _> = client.call::<(), Value>("database_api.get_dynamic_global_properties", ()); match props { Ok(props) => { let block_num = props.get("head_block_number").and_then(|v| v.as_i64()); if let Some(num) = block_num { println!("Query successful! Current block number: {}", num); } else { println!( "Query successful! Current block number: {:?}", props.get("head_block_number") ); } } Err(e) => { eprintln!("Error fetching global properties: {e}"); return; } } // Demonstrate the all-in-one function println!("\nDemonstrating the all-in-one UpdateNodesFromAccount function..."); let mut new_client = Client::new(); match new_client.update_nodes_from_account(account_name) { Ok(()) => println!( "One-step update complete. Client initialized with: {:?}", new_client.nodes ), Err(e) => { eprintln!("Error updating nodes: {e}"); return; } } // Example: Fetch a recent block println!("\nFetching a recent block..."); // First get the current block number let block_props: Result<Value, _> = client.call::<(), Value>("database_api.get_dynamic_global_properties", ()); let current_block_num = match block_props { Ok(props) => props.get("head_block_number").and_then(|v| v.as_i64()), Err(_) => None, }; if let Some(block_num) = current_block_num { // Fetch a block that's a few blocks behind the head to ensure it's available let target_block_num = block_num - 10; println!("Fetching block #{}", target_block_num); // Create parameters for get_block method let block_params = serde_json::json!({ "block_num": target_block_num }); // Fetch the block let block: Result<Value, _> = client.call("block_api.get_block", block_params); match block { Ok(block) => { // Extract block data if let Some(block_data) = block.get("block") { // Print block details println!("Block details:"); println!( " Block ID: {}", block_data .get("block_id") .and_then(|v| v.as_str()) .unwrap_or("N/A") ); println!( " Previous: {}", block_data .get("previous") .and_then(|v| v.as_str()) .unwrap_or("N/A") ); println!( " Timestamp: {}", block_data .get("timestamp") .and_then(|v| v.as_str()) .unwrap_or("N/A") ); // Print transaction count if let Some(transactions) = block_data.get("transactions").and_then(|v| v.as_array()) { println!(" Transaction count: {}", transactions.len()); // If there are transactions, print details of the first one if !transactions.is_empty() { let tx_ids = block_data.get("transaction_ids").and_then(|v| v.as_array()); let tx_id = tx_ids .and_then(|ids| ids.get(0)) .and_then(|id| id.as_str()) .unwrap_or("unknown"); println!("\nFirst transaction details:"); println!(" Transaction ID: {}", tx_id); // Pretty print the first transaction if let Some(tx) = transactions.get(0) { let tx_json = serde_json::to_string_pretty(tx) .unwrap_or_else(|_| "Error formatting transaction".to_string()); println!(" Transaction data:\n{}", tx_json); } } } } else { eprintln!("Error extracting block data"); } } Err(e) => eprintln!("Error fetching block: {e}"), } } else { eprintln!("Could not determine current block number"); } } ```  ----- You can check out the full example code and the library itself over in the [GitHub repository](https://github.com/TheCrazyGM/nectarflower-rs). It's really cool how this approach of storing benchmark data directly in account metadata lowers the barrier for developers across different ecosystems. Hopefully, this Rust version proves useful to someone out there exploring Hive development with Rust. Plus, any excuse to dive deeper into Rust is always fun, right? As usual, Michael Garcia a.k.a. TheCrazyGM
author | thecrazygm | ||||||
---|---|---|---|---|---|---|---|
permlink | nectarflower-rs-using-nectar-without-hive-nectar-part-3 | ||||||
category | hive-186392 | ||||||
json_metadata | {"app":"peakd/2025.4.6","format":"markdown","tags":["dev","income","tribes","archon","proofofbrain","rust","nectar"],"users":["thecrazygm","nectarflower"],"image":["https://files.peakd.com/file/peakd-hive/thecrazygm/23tRqtSRaWxH9MQusscZeMU9YJTFr9fnRmTWuNhpxT8Q3ao931znNoVQ7zxAkctFz1bXN.png","https://files.peakd.com/file/peakd-hive/thecrazygm/23t72p6hrtPGvLcp6HV1nTWH7fv6Mv9AiZJofHjvFwZHqq4xhyuLU3pB7nbAn1NThW9oa.png"]} | ||||||
created | 2025-04-18 17:11:30 | ||||||
last_update | 2025-04-18 17:11:30 | ||||||
depth | 0 | ||||||
children | 1 | ||||||
last_payout | 2025-04-25 17:11:30 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 8.220 HBD | ||||||
curator_payout_value | 9.631 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 9,542 | ||||||
author_reputation | 104,038,979,497,749 | ||||||
root_title | "Nectarflower-rs, using nectar without hive-nectar part 3 " | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 142,175,776 | ||||||
net_rshares | 55,935,006,262,237 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kevinwong | 0 | 23,259,518,639 | 11% | ||
roelandp | 0 | 7,803,089,540 | 0.37% | ||
jacor | 0 | 2,793,287,116 | 5.5% | ||
jeffjagoe | 0 | 413,092,192 | 0.55% | ||
arcange | 0 | 553,743,240,316 | 5% | ||
fiveboringgames | 0 | 638,646,285 | 11% | ||
netaterra | 0 | 2,043,284,330 | 5.5% | ||
penguinpablo | 0 | 140,122,323,082 | 14% | ||
ebargains | 0 | 2,868,554,313 | 10.45% | ||
funnyman | 0 | 1,465,733,187 | 5.6% | ||
eforucom | 0 | 22,145,887,725 | 100% | ||
gamer00 | 0 | 19,467,948,673 | 5% | ||
alexisvalera | 0 | 614,417,720 | 5.5% | ||
discovereurovelo | 0 | 1,135,333,216 | 0.75% | ||
oleg326756 | 0 | 757,983,690 | 2.75% | ||
justinw | 0 | 17,545,932,576 | 3.44% | ||
walterjay | 0 | 83,843,295,130 | 3.3% | ||
askari | 0 | 1,907,242,660 | 11% | ||
amariespeaks | 0 | 486,624,945 | 4.18% | ||
steemitboard | 0 | 5,596,867,530 | 5% | ||
torkot | 0 | 1,689,967,282 | 5.5% | ||
borislavzlatanov | 0 | 17,107,091,545 | 100% | ||
freebornsociety | 0 | 2,928,388,716 | 5.07% | ||
detlev | 0 | 39,784,089,222 | 1.65% | ||
lizanomadsoul | 0 | 3,766,456,692 | 1.5% | ||
ma1neevent | 0 | 20,169,086,674 | 15% | ||
mes | 0 | 367,046,732,234 | 25% | ||
batman0916 | 0 | 954,095,408 | 5.22% | ||
eliel | 0 | 4,229,805,042 | 5.5% | ||
rt395 | 0 | 2,102,546,239 | 2.5% | ||
newsflash | 0 | 505,930,356 | 8.25% | ||
ecoinstant | 0 | 316,326,704,652 | 100% | ||
cryptoknight12 | 0 | 47,599,844,955 | 100% | ||
rawselectmusic | 0 | 2,202,329,203 | 5.5% | ||
juancar347 | 0 | 44,065,089,106 | 5.5% | ||
jayna | 0 | 16,968,196,409 | 2.2% | ||
guchtere | 0 | 579,907,214 | 5.22% | ||
techken | 0 | 1,158,831,634 | 1.3% | ||
princessmewmew | 0 | 2,082,998,646 | 0.75% | ||
joeyarnoldvn | 0 | 453,991,274 | 1.47% | ||
decomoescribir | 0 | 1,682,454,495 | 5.5% | ||
eturnerx | 0 | 26,539,476,267 | 2% | ||
diegoameerali | 0 | 569,991,986 | 3.3% | ||
felt.buzz | 0 | 9,688,265,575 | 1.62% | ||
howo | 0 | 207,226,013,330 | 11% | ||
abnerpantoja | 0 | 507,622,891 | 5.5% | ||
pixelfan | 0 | 53,538,263,089 | 5.8% | ||
ocd | 0 | 846,478,999,407 | 11% | ||
likedeeler | 0 | 241,681,649,376 | 100% | ||
jasonbu | 0 | 980,504,311 | 2.5% | ||
zyx066 | 0 | 2,838,020,592 | 3.3% | ||
etblink | 0 | 2,310,653,124 | 0.27% | ||
noloafing | 0 | 3,012,763,993 | 49.76% | ||
kimzwarch | 0 | 16,052,356,867 | 4% | ||
niallon11 | 0 | 760,560,754,502 | 100% | ||
nurhayati | 0 | 473,738,786 | 11% | ||
accelerator | 0 | 56,587,538,378 | 60% | ||
aidefr | 0 | 553,108,536 | 2.6% | ||
artlover | 0 | 1,673,669,390 | 100% | ||
estream.studios | 0 | 470,834,271 | 10.45% | ||
cesinfenianos | 0 | 500,150,524 | 5.5% | ||
taskmaster4450 | 0 | 41,527,585,458 | 2.09% | ||
fatman | 0 | 9,220,650,207 | 2% | ||
msp-makeaminnow | 0 | 26,841,508,673 | 29.5% | ||
jlsplatts | 0 | 26,079,906,556 | 2% | ||
eonwarped | 0 | 7,645,260,631 | 3.3% | ||
emrebeyler | 0 | 89,854,462,822 | 1.1% | ||
xsasj | 0 | 2,257,827,529 | 1.5% | ||
anli | 0 | 1,803,150,517 | 11% | ||
jozefkrichards | 0 | 5,027,390,867 | 50% | ||
kernelillo | 0 | 1,805,409,275 | 50% | ||
itchyfeetdonica | 0 | 5,866,620,294 | 0.75% | ||
nathen007 | 0 | 592,851,728,707 | 100% | ||
robotics101 | 0 | 971,584,627 | 3.25% | ||
sneakyninja | 0 | 18,458,842,259 | 24.88% | ||
steembasicincome | 0 | 7,182,425,384,413 | 100% | ||
cryptonized | 0 | 236,384,537 | 14% | ||
tomatom | 0 | 1,167,431,932 | 5.5% | ||
spydo | 0 | 22,136,944,908 | 5.5% | ||
r00sj3 | 0 | 510,604,455 | 5.5% | ||
deepresearch | 0 | 898,134,276,898 | 21% | ||
for91days | 0 | 916,682,387 | 0.82% | ||
juecoree | 0 | 494,627,108 | 5.5% | ||
carsonroscoe | 0 | 11,472,411,825 | 5.5% | ||
gabrielatravels | 0 | 10,740,849,032 | 4.4% | ||
irisworld | 0 | 780,126,374 | 7.5% | ||
oscarina | 0 | 739,255,728 | 10% | ||
bengy | 0 | 20,131,494,902 | 25% | ||
davemccoy | 0 | 1,664,828,180 | 10.45% | ||
piotrgrafik | 0 | 987,236,316,323 | 80% | ||
mciszczon | 0 | 1,279,079,528 | 5.5% | ||
manncpt | 0 | 3,406,704,031 | 1.5% | ||
ricardo993 | 0 | 1,336,104,833 | 6.6% | ||
aakom | 0 | 427,294,061 | 100% | ||
jnmarteau | 0 | 681,343,532 | 1.5% | ||
ocd-witness | 0 | 152,746,565,991 | 11% | ||
sandracabrera | 0 | 1,788,571,627 | 5.5% | ||
madefrance | 0 | 2,542,876,617 | 5.5% | ||
anikys3reasure | 0 | 2,718,038,336 | 50% | ||
lesiopm | 0 | 28,369,562,054 | 2.75% | ||
antisocialist | 0 | 424,512,659,871 | 50% | ||
abrockman | 0 | 1,634,548,804,423 | 100% | ||
sanderjansenart | 0 | 23,387,805,775 | 11% | ||
sbi2 | 0 | 4,944,253,991,198 | 100% | ||
tibfox | 0 | 114,135,694,301 | 100% | ||
racibo | 0 | 707,661,440 | 0.55% | ||
awesomegames007 | 0 | 1,288,651,445 | 50% | ||
gadrian | 0 | 426,676,194,677 | 30% | ||
voitaksoutache | 0 | 463,421,236 | 5.5% | ||
achimmertens | 0 | 19,584,980,344 | 5.5% | ||
el-dee-are-es | 0 | 3,665,721,928 | 10% | ||
indigoocean | 0 | 2,684,704,914 | 5.5% | ||
sbi3 | 0 | 2,384,259,604,488 | 100% | ||
browery | 0 | 19,616,878,630 | 5.5% | ||
veteranforcrypto | 0 | 680,259,200 | 3.3% | ||
sbi4 | 0 | 1,521,862,217,934 | 100% | ||
friendsofgondor | 0 | 36,504,076,618 | 10.45% | ||
steem.services | 0 | 10,359,067,579 | 10.45% | ||
netzisde | 0 | 4,173,223,985 | 100% | ||
pladozero | 0 | 9,401,485,645 | 10% | ||
nateaguila | 0 | 60,216,256,543 | 5% | ||
crypticat | 0 | 2,969,709,598 | 0.75% | ||
hmayak | 0 | 521,099,617 | 5.5% | ||
bububoomt | 0 | 6,360,330,679 | 100% | ||
occhiblu | 0 | 465,623,654 | 100% | ||
konradxxx3 | 0 | 591,592,737 | 5.5% | ||
sbi5 | 0 | 1,217,987,383,277 | 100% | ||
haccolong | 0 | 2,147,147,255 | 5.5% | ||
gaottantacinque | 0 | 0 | 100% | ||
nathyortiz | 0 | 2,117,607,230 | 5.5% | ||
sbi6 | 0 | 943,540,417,867 | 100% | ||
talentclub | 0 | 6,940,652,785 | 5.5% | ||
thedailysneak | 0 | 25,136,560,006 | 24.88% | ||
ocdb | 0 | 19,551,464,855,950 | 10.45% | ||
marivic10 | 0 | 453,818,595 | 2.5% | ||
dalz | 0 | 1,559,763,401,752 | 100% | ||
hoaithu | 0 | 871,503,328 | 4.67% | ||
sbi7 | 0 | 702,577,315,134 | 100% | ||
gasaeightyfive | 0 | 811,686,850 | 100% | ||
tdas0 | 0 | 2,001,746,965 | 50% | ||
voxmortis | 0 | 11,377,798,119 | 6% | ||
rayshiuimages | 0 | 476,261,744 | 5.5% | ||
javyeslava.photo | 0 | 1,423,263,143 | 6.6% | ||
marcocasario | 0 | 72,575,375,405 | 12.1% | ||
a-bot | 0 | 15,399,743,391 | 30% | ||
voter002 | 0 | 26,797,655,347 | 56.6% | ||
voter000 | 0 | 26,959,873,214 | 55.1% | ||
babysavage | 0 | 9,238,015,232 | 49.76% | ||
ravensavage | 0 | 4,878,471,335 | 49.76% | ||
cribbio | 0 | 2,743,682,218 | 100% | ||
ecoinstats | 0 | 1,775,511,262,391 | 100% | ||
athunderstruck | 0 | 2,188,345,776 | 5.5% | ||
sbi8 | 0 | 517,340,484,651 | 100% | ||
piestrikesback | 0 | 727,018,561 | 100% | ||
sbi9 | 0 | 370,154,946,928 | 100% | ||
buildingpies | 0 | 51,408,008,156 | 100% | ||
multifacetas | 0 | 6,989,314,185 | 5.5% | ||
sbi10 | 0 | 284,439,068,009 | 100% | ||
variedades | 0 | 1,489,134,741 | 4.18% | ||
kennybobs | 0 | 497,451,403 | 10.45% | ||
khan.dayyanz | 0 | 2,478,886,009 | 5% | ||
jacuzzi | 0 | 619,856,945 | 1.4% | ||
synergized | 0 | 4,324,476,151 | 50% | ||
pl-travelfeed | 0 | 1,912,132,734 | 1.37% | ||
instagram-models | 0 | 27,726,403,651 | 5.5% | ||
hungrybear | 0 | 617,279,084 | 14% | ||
hozn4ukhlytriwc | 0 | 1,238,332,834 | 10% | ||
kggymlife | 0 | 3,979,225,706 | 20% | ||
squareonefarms | 0 | 1,094,290,862 | 5.5% | ||
bigmoneyman | 0 | 507,151,867 | 30% | ||
helgalubevi | 0 | 539,176,458 | 2.2% | ||
beerlover | 0 | 2,213,697,408 | 1.65% | ||
qwerrie | 0 | 12,152,976,628 | 0.82% | ||
shauner | 0 | 560,403,111 | 50% | ||
quintaesencia | 0 | 99,429,489,494 | 100% | ||
kittykate | 0 | 100,184,525,495 | 100% | ||
queengaga | 0 | 1,262,024,895 | 11% | ||
imbartley | 0 | 458,692,337 | 15% | ||
kgswallet | 0 | 532,006,403 | 10% | ||
lrekt01 | 0 | 4,384,146,017 | 80% | ||
everythingsmgirl | 0 | 8,154,110,998 | 50% | ||
empoderat | 0 | 25,327,481,378 | 11% | ||
sbi-tokens | 0 | 53,100,454,057 | 49.76% | ||
elianaicgomes | 0 | 10,467,098,759 | 5% | ||
urun | 0 | 19,689,653,685 | 100% | ||
therealyme | 0 | 6,088,936,127 | 0.82% | ||
chris-uk | 0 | 1,888,165,395 | 5.5% | ||
qwertm | 0 | 5,363,464,049 | 50% | ||
an-sich-wachsen | 0 | 1,145,043,504 | 10% | ||
kaeserotor | 0 | 1,427,733,452 | 7.7% | ||
unpopular | 0 | 57,620,500,442 | 4.12% | ||
neoxvoter | 0 | 2,929,685,844 | 25% | ||
gloriaolar | 0 | 621,035,033 | 0.62% | ||
keys-defender | 0 | 2,902,350,627 | 100% | ||
nerdvana | 0 | 716,018,184 | 5.5% | ||
danielhuhservice | 0 | 1,153,201,277 | 10% | ||
prize.hoard | 0 | 10,431,890,602 | 100% | ||
ecobanker | 0 | 106,700,265,130 | 100% | ||
treasure.hoard | 0 | 141,725,739,175 | 100% | ||
locolombia | 0 | 3,093,634,913 | 100% | ||
dpend.active | 0 | 3,795,466,459 | 10% | ||
hivebuzz | 0 | 9,047,577,126 | 3% | ||
pinmapple | 0 | 835,114,759 | 1.5% | ||
laruche | 0 | 5,505,537,888 | 3.25% | ||
ykretz | 0 | 1,408,294,861 | 15% | ||
ciderjunkie | 0 | 9,181,326,412 | 5.22% | ||
sketching | 0 | 6,792,955,074 | 50% | ||
kiemis | 0 | 9,061,953,933 | 2.5% | ||
iameden | 0 | 455,673,066 | 5.5% | ||
actioncats | 0 | 1,620,618,337 | 8.36% | ||
evelynchacin | 0 | 3,868,149,429 | 5.5% | ||
balvinder294 | 0 | 2,472,296,958 | 20% | ||
lesiopm2 | 0 | 483,156,470 | 2.75% | ||
archon-gov | 0 | 94,493,313,736 | 50% | ||
gabilan55 | 0 | 812,724,641 | 5.5% | ||
perceval | 0 | 487,865,029 | 11% | ||
anafae | 0 | 795,947,872 | 1.1% | ||
issymarie2 | 0 | 1,537,567,055 | 2.75% | ||
scriptkittie | 0 | 756,611,021 | 11% | ||
trangbaby | 0 | 565,935,205 | 10.45% | ||
hive-world | 0 | 577,473,008 | 5.5% | ||
evagavilan2 | 0 | 1,744,791,621 | 2.75% | ||
paolazun | 0 | 622,821,390 | 5.5% | ||
dhedge | 0 | 11,921,580,942 | 2.2% | ||
meritocracy | 0 | 680,898,521,706 | 5.22% | ||
tehox | 0 | 108,928,729,468 | 100% | ||
yayogerardo | 0 | 1,406,431,995 | 50% | ||
he-index | 0 | 17,151,116,458 | 10% | ||
lbi-token | 0 | 10,574,091,555 | 4.4% | ||
merthin | 0 | 642,937,117 | 0.68% | ||
godfather.ftw | 0 | 3,217,724,651 | 5% | ||
dcrops | 0 | 46,682,998,876 | 5.5% | ||
cielitorojo | 0 | 4,488,634,906 | 7.31% | ||
babeltrips | 0 | 2,584,331,235 | 5.22% | ||
szukamnemo | 0 | 35,185,990,874 | 10.5% | ||
solymi | 0 | 52,550,522,543 | 5.5% | ||
eturnerx-dbuzz | 0 | 26,810,371,305 | 71.4% | ||
traderhive | 0 | 1,891,698,285 | 11% | ||
tawadak24 | 0 | 9,010,038,477 | 5.5% | ||
emsenn0 | 0 | 1,971,453,600 | 9.95% | ||
elgatoshawua | 0 | 1,414,249,677 | 5.22% | ||
dodovietnam | 0 | 815,462,479 | 5.22% | ||
drricksanchez | 0 | 32,492,067,472 | 5.5% | ||
hexagono6 | 0 | 596,765,502 | 5.22% | ||
khushboo108 | 0 | 757,330,075 | 5.5% | ||
soychalbed | 0 | 466,572,073 | 11% | ||
key-defender.shh | 0 | 20,253,949 | 100% | ||
brujita18 | 0 | 2,343,322,810 | 5.5% | ||
egistar | 0 | 599,569,249 | 2.5% | ||
mariaser | 0 | 4,368,012,759 | 7.31% | ||
partiesjohall | 0 | 2,022,522,614 | 11% | ||
musicandreview | 0 | 577,281,646 | 0.75% | ||
josdelmi | 0 | 1,069,246,213 | 5.5% | ||
aprasad2325 | 0 | 1,904,894,512 | 5.22% | ||
menzo | 0 | 573,075,787 | 1.1% | ||
ivycrafts | 0 | 4,144,913,282 | 5.5% | ||
ikigaidesign | 0 | 1,101,559,509 | 5.5% | ||
onewolfe | 0 | 453,594,069 | 50% | ||
princekham | 0 | 34,951,708,072 | 5.5% | ||
tub3r0 | 0 | 739,097,957 | 10% | ||
mxm0unite | 0 | 1,590,937,435 | 50% | ||
lynnnguyen | 0 | 803,930,121 | 10.45% | ||
kimloan | 0 | 786,932,638 | 5.22% | ||
dora381 | 0 | 4,029,699,132 | 10.45% | ||
techguard | 0 | 693,932,213 | 10.5% | ||
sephiwolf | 0 | 568,873,681 | 9.9% | ||
txracer | 0 | 2,270,798,327 | 100% | ||
chaosmagic23 | 0 | 648,033,396 | 5.5% | ||
herman-german | 0 | 6,702,853,953 | 50% | ||
hyhy93 | 0 | 492,823,923 | 10.45% | ||
crypto-shots | 0 | 293,247,249 | 100% | ||
tristan.todd | 0 | 645,347,750 | 11% | ||
noctury | 0 | 1,934,417,092 | 5.5% | ||
poliac | 0 | 4,206,490,831 | 5.5% | ||
ivypham | 0 | 2,041,872,432 | 10.45% | ||
liveofdalla | 0 | 5,135,912,421 | 5.5% | ||
sam9999 | 0 | 513,085,836 | 5.5% | ||
killerwot | 0 | 4,534,611,235 | 15% | ||
mario89 | 0 | 1,432,282,067 | 6.27% | ||
jerusa777 | 0 | 884,068,546 | 11% | ||
kheldar1982 | 0 | 25,305,389,069 | 10.45% | ||
dlizara | 0 | 479,288,291 | 5.5% | ||
ryosai | 0 | 4,420,851,252 | 24% | ||
cryptoshots.nft | 0 | 7,106,146 | 100% | ||
pgm-curator | 0 | 2,076,379,933 | 5.5% | ||
kam5iz | 0 | 517,602,790 | 4.4% | ||
fasacity | 0 | 508,866,771 | 5.5% | ||
bigorna1 | 0 | 629,017,820 | 2.75% | ||
cryptoshots.play | 0 | 0 | 10% | ||
myegoandmyself | 0 | 161,052,593,897 | 8% | ||
itsmikyhere | 0 | 467,834,805 | 0.75% | ||
psyberwhale | 0 | 6,749,874,198 | 25% | ||
monsterrerentals | 0 | 32,328,352,737 | 100% | ||
cryptoshotsdoom | 0 | 0 | 10% | ||
stream4fun | 0 | 723,431,610 | 30% | ||
nhaji01 | 0 | 2,030,828,062 | 5.5% | ||
twosomesup | 0 | 2,068,637,104 | 5.22% | ||
minas-glory | 0 | 722,588,248 | 5.5% | ||
the-burn | 0 | 3,312,925,458 | 5.5% | ||
humbe | 0 | 7,788,931,627 | 2% | ||
whitneyalexx | 0 | 1,927,877,703 | 5.5% | ||
pof.archon | 0 | 464,026,800 | 50% | ||
hd-treasury | 0 | 1,310,937,408 | 5.5% | ||
karina.gpt | 0 | 0 | 100% | ||
e-sport-gamer | 0 | 923,312,924 | 10% | ||
susieisclever | 0 | 1,237,679,943 | 5.5% | ||
aunty-tosin | 0 | 673,886,400 | 5.5% | ||
javedkhan1989 | 0 | 524,856,009 | 5.5% | ||
nabbas0786 | 0 | 497,216,536 | 90% | ||
briefmarken | 0 | 48,862,269,926 | 100% | ||
e-sport-girly | 0 | 776,650,560 | 10% | ||
mithrildestiny | 0 | 143,688,286,322 | 100% | ||
flourishandflora | 0 | 511,608,953 | 5.5% | ||
empo.voter | 0 | 379,871,931,018 | 11% | ||
luisarrazola | 0 | 588,726,901 | 5.5% | ||
blessskateshop | 0 | 671,586,809 | 12% | ||
hive-156436 | 0 | 684,532,824 | 5.5% | ||
ifhy | 0 | 775,290,804 | 5.5% | ||
hive.helps | 0 | 25,378,278,835 | 10.45% | ||
lolz.byte | 0 | 0 | 100% | ||
dreamtales | 0 | 3,081,959,086 | 9% | ||
calebmarvel24 | 0 | 1,169,348,273 | 10% | ||
imx.center | 0 | 2,646,916,058 | 11% | ||
michael561 | 0 | 2,673,076,919 | 9.95% | ||
francismary | 0 | 660,952,210 | 5.5% | ||
thecrazygm.bank | 0 | 2,073,028,657 | 100% | ||
magic.byte | 0 | 0 | 100% |
Rusty Flowers - I LIKE!
author | ecoinstant |
---|---|
permlink | re-thecrazygm-suxho0 |
category | hive-186392 |
json_metadata | {"tags":["hive-186392"],"app":"peakd/2025.4.6","image":[],"users":[]} |
created | 2025-04-18 19:19:15 |
last_update | 2025-04-18 19:19:15 |
depth | 1 |
children | 0 |
last_payout | 2025-04-25 19:19:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.012 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 862,987,279,350,291 |
root_title | "Nectarflower-rs, using nectar without hive-nectar part 3 " |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,177,638 |
net_rshares | 76,989,737,599 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thecrazygm | 0 | 22,497,607,102 | 100% | ||
dustbunny | 0 | 54,492,130,497 | 16.6% | ||
endhivewatchers | 0 | 0 | 0.5% |