 I don’t tend to write scripts for the sake of it; they need to accomplish something useful. As the Splinterlands Sets are going to rotate in early December, I noticed players are starting to dump their cards from the '*Dice*' and '*Untamed*' sets. I have had my eye on several legendary cards from the latter set for a while now, and wanted to pick up a few 1 BCX units. I could keep checking but that's too much effort. I wanted to click a shortcut and see all my possible targets easily. <center>  ...***'some of the most powerful summoners are rapidly falling in value, I want to check on these and a few more at the click of a button'...*** </center> @bozz has been asking me a few things regarding Python lately, and this is a little diversion using the Splinterlands API as opposed to the now deprecated BEEM library which he was been using. The lack of examples is typically abysmal on the internet, but I found an old article by @ecko-fresh who appears to have vacated HIVE. His [article]( https://peakd.com/hive-13323/@ecko-fresh/c-tutorial-how-to-use-splinterlands-market-api) amassed a pitiful reward of $0.00.  I dropped a comment on his post, and promised to donate a **FULL** comment vote if he ever comes back and sees this. I note there is a [Python Community]( https://peakd.com/c/hive-129924/created) which I have now joined, hosted by @emrebeyler. I will be posting all my crap in there going forward. My script is simple, it’s not multi-file, has no ‘dunder’ statements, or functions. I know about all these, but if you are trying to lay some basics out, then I say ditch that style for the moment. import requests import os os.system('cls') # Define BCX, Default is set to 1 BCX = 1 # Add More cards to the tuple if desired on new lines shopping_list = ( {"Card": "Cornealus", "ID": "199", "Gold": "false", "Edition": "4"}, {"Card": "Phantom of the Abyss", "ID": "177", "Gold": "false", "Edition": "4"}, {"Card": "Sea Wreck", "ID": "558", "Gold": "false", "Edition": "8"}, {"Card": "Immolation", "ID": "559", "Gold": "false", "Edition": "8"} ) print("--Current Lowest Prices--") print() for card in shopping_list: lowest_buy_price = float('inf') getstring = "https://api.splinterlands.io/market/for_sale_by_card?card_detail_id=" + card["ID"] + "&gold=" + card["Gold"] + "&edition=" + card["Edition"] response = requests.get(getstring) cards = response.json() for foundcard in cards: if foundcard["bcx"] == BCX: buy_price = foundcard["buy_price"] if buy_price < lowest_buy_price: lowest_buy_price = buy_price print("Card:", card["Card"]) print(f'Lowest Buy Price: ${lowest_buy_price}, BCX: {BCX}, Gold Foil: {card["Gold"]}') print() os.system('pause') Thirty eight lines of code including spaces, comments and you have the desired objective. Hopefully @bozz and some others can follow this, and add more content to @emrebeyler’s community. As usual I will go through this and try and explain how it works, with a link to my GitHub repository at the foot of the post. import requests import os os.system('cls') Import statements are adding references to other libraries. ‘requests’ is used to manipulate the JSON data from the Splinterlands API call, and ‘os’ allows us to use commands similar to those in a Windows CMD shell. Eg.. 'cls' clears the screen, easy right? Next we have the user defined areas of the script. # Define BCX, Default is set to 1 BCX = 1 # Add More cards to the tuple if desired on new lines shopping_list = ( {"Card": "Cornealus", "ID": "199", "Gold": "false", "Edition": "4"}, {"Card": "Phantom of the Abyss", "ID": "177", "Gold": "false", "Edition": "4"}, {"Card": "Sea Wreck", "ID": "558", "Gold": "false", "Edition": "8"}, {"Card": "Immolation", "ID": "559", "Gold": "false", "Edition": "8"} ) BCX = 1 means, the script will only look for single cards, not combined. The ‘shopping_list’ tuple contains several dictionary lists within it. Card": "Cornealus" The name of the card you potentially are checking on. "ID": "199" Each Splinterland card has a unique ID. To find the card’s ID, issue this command in a browser. https://api.splinterlands.io/cards/get_details  What you get back is overwhelming but you can search for cards easily within the content. Look at the top left corner and you will see: [{"id":1,"name":"Goblin Shaman" ‘Goblin Shaman’ has the prestigious title of being ID:1. "Gold": "false" Is the card you are searching for a Gold Foil or not? This is a Boolean value and can be toggled to ‘true’. "Edition": "8" Finally, the Edition is the set identifier. Alpha =1, Untamed = 4, RiftWatchers = 8. You can probably figure out the ones in between. print("--Current Lowest Prices--") print() I am not going to explain what ‘print’ does, as it may blow your mind and render you a quivering, gibbering halfwit. for card in shopping_list: lowest_buy_price = float('inf') getstring = "https://api.splinterlands.io/market/for_sale_by_card?card_detail_id=" + card["ID"] + "&gold=" + card["Gold"] + "&edition=" + card["Edition"] response = requests.get(getstring) cards = response.json() for foundcard in cards: if foundcard["bcx"] == BCX: buy_price = foundcard["buy_price"] if buy_price < lowest_buy_price: lowest_buy_price = buy_price The main engine of the script is this For loop. Let's break it down some. lowest_buy_price = float('inf') This is an interesting placeholder, which effectively sets the value of ‘lowest_buy_price’ to positive infinity. We want to set this high value for every search. getstring = "https://api.splinterlands.io/market/for_sale_by_card?card_detail_id=" + card["ID"] + "&gold=" + card["Gold"] + "&edition=" + card["Edition"] The API call, returns a JSON string with ALL the parameters sent to it.  A lot of data and not so useful yet as we are only looking for one return value, the cheapest! response = requests.get(getstring) cards = response.json() These lines make use of the ‘requests’ library and format the data into something a little more usable. You don't need to know the intricacies of other library functions unless you are willing to deep-dive. for foundcard in cards: if foundcard["bcx"] == BCX: buy_price = foundcard["buy_price"] if buy_price < lowest_buy_price: lowest_buy_price = buy_price This routine loops through all the data and adds a single float into the ‘lowest_buy_price’ variable if it's the lowest price for foundcard in cards: if foundcard["bcx"] == BCX: buy_price = foundcard["buy_price"] print(buy_price) if buy_price < lowest_buy_price: lowest_buy_price = buy_price If you want to know what all the prices are, then add a print statement such as this sandwiched in between the other code statements. This is generally how I debug my code. . All we need to do now is present the data to the instigator of this script. print("Card:", card["Card"]) print(f'Lowest Buy Price: ${lowest_buy_price}, BCX: {BCX}, Gold Foil: {card["Gold"]}') print() Using f’ strings, we can mix text with variable data for easy ingestion. os.system('pause') Remember what I said about the 'os' library and shell commands? As we will be running this in a shell then it needs to pause so we can read the screen.  Assign a Shortcut and add it to your other Python Launchers. Mine has the parameters of: E:\Anaconda3\python.exe "E:\Anaconda3\Scripts\FindCheapSPLCards\FindCheapSPLCards.py  ... and there you have it, info with a simple click! All of them are still too bloody expensive for me. I will bide my time and wait a little longer. This is the script in its basic form. A lot more could done such as colour coding the output, recording the values into a file, importing the previous ones on subsequent runs, comparing the prices, separating the data into a separate file and importing it, using dunder main! if __name__ == "__main__": See, you now are all confused. This is the reason I didn’t include it! This and other equally useless code can be found on my personal GitHub [here]( https://github.com/BrynRogersTHG/Easy-Splinterlands-Card-Monitoring)  <center>  </center>
author | slobberchops |
---|---|
permlink | python-libraries-easy-splinterlands-card-monitoring |
category | hive-129924 |
json_metadata | {"app":"peakd/2023.10.1","format":"markdown","image":["https://files.peakd.com/file/peakd-hive/slobberchops/Eo8RMr935HQyfYnqjWzAKipL2a1xsPAAMQVs836moES9mQXbYbQsnNmnCx5iw97EVY6.jpg","https://files.peakd.com/file/peakd-hive/slobberchops/23wgSTMhEhqjuN4wHP94y1gH9gnGzNHZ3fnyCXQy5rUZZhuUWes8N8xfJdaGidUMZvHGA.png","https://files.peakd.com/file/peakd-hive/slobberchops/23uRLAvwRRTuCaJ8F9r4pmmuRvRrZQVy5hbcbpPyvi8LoVELNKratK7kdqMeiokpcBEVh.png","https://files.peakd.com/file/peakd-hive/slobberchops/23tHUiyg5rvv6uPoCTBDm2sGyafdZFa1W8F8oHSs1zs8hYZaum5jvqRTzWhRHJnSTG4ww.png","https://files.peakd.com/file/peakd-hive/slobberchops/23tw5okA2NQZUWQ2zU9qfbeYpKkXGxWkmbKzWZuaCrtL9VeMBvpdRxbKLgm975UCebu94.png","https://files.peakd.com/file/peakd-hive/slobberchops/23xf7FXKTmrHdUxeUfA283KpFAkvVTB3Gdb9qigTwuNxo2Wz6z5eG2rBViAFMQ37QQ7CP.png","https://files.peakd.com/file/peakd-hive/slobberchops/23ynDz8yed7MUJB1U9WG9bTyK1dmEBdVnrQazSyA1Zn3xveEfJXkmYtJjC6FtNUtJQX6N.png","https://files.peakd.com/file/peakd-hive/slobberchops/BqIuXs6C-RedLine.png","https://files.peakd.com/file/peakd-hive/slobberchops/f5zec6UG-CurieCurator.jpg"],"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp","splinterlands"],"users":["bozz","ecko-fresh","emrebeyler.","emrebeyler"]} |
created | 2023-10-18 08:35:57 |
last_update | 2023-10-18 08:38:57 |
depth | 0 |
children | 23 |
last_payout | 2023-10-25 08:35:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 55.234 HBD |
curator_payout_value | 55.128 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,546 |
author_reputation | 2,427,112,030,251,199 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,091,874 |
net_rshares | 248,777,805,744,681 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
adm | 0 | 27,111,194,109,422 | 100% | ||
steemychicken1 | 0 | 3,349,044,308,019 | 100% | ||
leprechaun | 0 | 1,498,174,779 | 19.5% | ||
gerber | 0 | 95,027,091,539 | 30% | ||
daan | 0 | 752,113,990,659 | 100% | ||
ezzy | 0 | 4,976,150,921 | 30% | ||
dwinblood | 0 | 3,486,914,582 | 40% | ||
meesterboom | 0 | 2,848,510,107,955 | 100% | ||
exyle | 0 | 282,152,872,435 | 30% | ||
ace108 | 0 | 488,117,933,822 | 11% | ||
sazbird | 0 | 13,379,547,484 | 100% | ||
alexpmorris | 0 | 372,812,640,290 | 100% | ||
shaka | 0 | 3,345,209,965,299 | 100% | ||
jphamer1 | 0 | 5,812,420,655,344 | 100% | ||
oflyhigh | 0 | 4,476,094,332,124 | 100% | ||
borran | 0 | 1,072,859,849,687 | 100% | ||
lemouth | 0 | 510,001,135,870 | 20% | ||
wisbeech | 0 | 10,736,688,110 | 100% | ||
steevc | 0 | 1,386,531,859,903 | 49% | ||
netaterra | 0 | 246,479,444,930 | 15% | ||
themonetaryfew | 0 | 577,095,443,031 | 100% | ||
esecholo | 0 | 7,514,444,801 | 100% | ||
penguinpablo | 0 | 210,066,700,814 | 14% | ||
uwelang | 0 | 23,228,354,690 | 50% | ||
kommienezuspadt | 0 | 3,993,507,822,997 | 100% | ||
abh12345 | 0 | 1,254,929,514,518 | 30% | ||
gringalicious | 0 | 602,441,651 | 50% | ||
funnyman | 0 | 1,450,674,111 | 5.6% | ||
steemcleaners | 0 | 2,267,135,102,794 | 80% | ||
natubat | 0 | 81,041,442,557 | 60% | ||
clayboyn | 0 | 5,720,428,668 | 12.5% | ||
lloyddavis | 0 | 22,356,298,291 | 75% | ||
rishi556 | 0 | 81,358,060,424 | 100% | ||
funnel | 0 | 6,589,975,719 | 11% | ||
edb | 0 | 37,710,816,638 | 40% | ||
tarotbyfergus | 0 | 413,003,755,005 | 100% | ||
darth-azrael | 0 | 94,366,463,836 | 33% | ||
voter | 0 | 4,602,776,936 | 100% | ||
deadspace | 0 | 141,926,889,045 | 100% | ||
michellectv | 0 | 249,307,692,636 | 100% | ||
darth-cryptic | 0 | 16,626,905,128 | 33% | ||
privex | 0 | 37,426,388,442 | 60% | ||
thereikiforest | 0 | 633,905,614 | 10% | ||
evildeathcore | 0 | 11,796,881,608 | 100% | ||
cosmictriage | 0 | 45,968,786,992 | 80% | ||
trafalgar | 0 | 32,678,689,723,535 | 67% | ||
c0ff33a | 0 | 369,659,843,857 | 10% | ||
lordneroo | 0 | 11,582,173,827 | 100% | ||
preparedwombat | 0 | 532,571,853,128 | 42% | ||
freebornsociety | 0 | 5,271,203,018 | 10% | ||
bcc | 0 | 1,661,270,396,891 | 50% | ||
detlev | 0 | 1,475,556,523,002 | 100% | ||
dickturpin | 0 | 51,409,751,541 | 100% | ||
lizanomadsoul | 0 | 6,961,531,708 | 3% | ||
raindrop | 0 | 505,943,475,142 | 67% | ||
frankk | 0 | 604,723,370 | 50% | ||
choogirl | 0 | 37,201,893,830 | 40% | ||
smasssh | 0 | 917,274,026,847 | 20% | ||
tamaralovelace | 0 | 80,463,060,964 | 100% | ||
grider123 | 0 | 9,582,131,787 | 33% | ||
cryptocurator | 0 | 5,151,796,450 | 25% | ||
holm | 0 | 528,548,331 | 65% | ||
domo | 0 | 491,637,175 | 100% | ||
forykw | 0 | 90,500,372,670 | 15% | ||
xplosive | 0 | 13,250,831,579 | 100% | ||
mobbs | 0 | 444,529,167,508 | 100% | ||
stackin | 0 | 1,841,617,556 | 25% | ||
aleister | 0 | 29,540,428,535 | 10% | ||
drag33 | 0 | 46,744,097,385 | 100% | ||
ampm | 0 | 9,385,271,172 | 100% | ||
ninahaskin | 0 | 238,970,356,647 | 76% | ||
sumatranate | 0 | 565,669,444,925 | 100% | ||
trumpikas | 0 | 8,927,906,765 | 80% | ||
nuagnorab | 0 | 13,667,846,895 | 100% | ||
isaria | 0 | 356,415,727,608 | 25% | ||
cryptoknight12 | 0 | 2,609,860,304 | 9.58% | ||
bitcoinflood | 0 | 267,396,256,502 | 42.2% | ||
alphacore | 0 | 6,851,219,767 | 7.12% | ||
galenkp | 0 | 5,594,017,525,285 | 100% | ||
chinito | 0 | 2,094,578,687 | 40% | ||
krischy | 0 | 603,632,241 | 100% | ||
spectrumecons | 0 | 2,626,673,778,301 | 40% | ||
jayna | 0 | 41,681,697,160 | 6% | ||
dswigle | 0 | 1,893,998,776,673 | 100% | ||
vieanna | 0 | 213,076,092,879 | 100% | ||
joeyarnoldvn | 0 | 4,285,049,998 | 12.27% | ||
vikbuddy | 0 | 42,996,403,172 | 35.8% | ||
papilloncharity | 0 | 2,024,190,049,648 | 80.7% | ||
livinguktaiwan | 0 | 1,533,261,560,879 | 50% | ||
furious-one | 0 | 6,388,577,682 | 100% | ||
geekgirl | 0 | 2,808,550,652,006 | 100% | ||
mcoinz79 | 0 | 1,890,198,171 | 1% | ||
toofasteddie | 0 | 222,414,376,946 | 35% | ||
bluemist | 0 | 20,542,121,549 | 9% | ||
eturnerx | 0 | 175,218,566,570 | 10.2% | ||
captainquack22 | 0 | 66,668,204,755 | 9% | ||
molometer | 0 | 243,727,424,531 | 100% | ||
theguruasia | 0 | 5,524,543,883 | 100% | ||
beautifulbullies | 0 | 10,555,860,303 | 43% | ||
travelgirl | 0 | 186,963,217,636 | 100% | ||
shitsignals | 0 | 5,546,443,834 | 30% | ||
appreciator | 0 | 33,593,272,550,848 | 9% | ||
hairyfairy | 0 | 7,565,448,466 | 10% | ||
stayoutoftherz | 0 | 8,635,532,083,769 | 75% | ||
yanes94 | 0 | 254,039,155,464 | 50% | ||
sanjeevm | 0 | 1,622,982,318,205 | 40% | ||
dine77 | 0 | 14,433,163,473 | 40% | ||
everrich | 0 | 2,041,064,332 | 100% | ||
leaky20 | 0 | 416,522,465,561 | 75% | ||
pocketrocket | 0 | 19,756,402,853 | 100% | ||
nicolemoker | 0 | 2,106,691,739 | 100% | ||
buggedout | 0 | 3,830,241,775,999 | 100% | ||
lizelle | 0 | 256,028,017,725 | 100% | ||
jeanlucsr | 0 | 1,756,921,256 | 3% | ||
shanibeer | 0 | 988,874,478,631 | 50% | ||
nuthman | 0 | 3,766,809,634,416 | 100% | ||
aafeng | 0 | 225,171,363,744 | 25% | ||
noboxes | 0 | 1,302,540,339 | 50% | ||
evernoticethat | 0 | 6,833,198,112 | 100% | ||
ragnarokdel | 0 | 12,234,973,901 | 50% | ||
felander | 0 | 152,485,641,432 | 30% | ||
santigs | 0 | 218,782,329,742 | 50% | ||
sportsgeek | 0 | 2,083,016,054 | 50% | ||
musicgeek | 0 | 929,482,106 | 50% | ||
marketinggeek | 0 | 3,537,608,930 | 100% | ||
zirochka | 0 | 574,251,691,911 | 80% | ||
stoodkev | 0 | 16,462,233,172,012 | 100% | ||
kimzwarch | 0 | 21,418,683,007 | 5% | ||
raj808 | 0 | 23,190,534,651 | 100% | ||
calatorulmiop | 0 | 14,056,356,721 | 10% | ||
yogacoach | 0 | 6,810,906,890 | 30% | ||
joshman | 0 | 216,629,137,530 | 25% | ||
tomiscurious | 0 | 21,741,225,839 | 3.9% | ||
sorin.cristescu | 0 | 2,484,686,439 | 0.5% | ||
openaccount | 0 | 491,626,364 | 20% | ||
fatman | 0 | 9,149,063,559 | 2% | ||
votehero | 0 | 21,840,030,998 | 4.6% | ||
revisesociology | 0 | 2,251,428,035,059 | 100% | ||
silversaver888 | 0 | 356,806,084,631 | 100% | ||
plantstoplanks | 0 | 60,934,427,508 | 14% | ||
jlsplatts | 0 | 126,590,145,796 | 11.25% | ||
martusamak | 0 | 2,399,203,280 | 15% | ||
gtpjfoodbank | 0 | 21,207,121,385 | 90% | ||
dmilliz | 0 | 272,083,768,493 | 100% | ||
steemseph | 0 | 15,042,767,932 | 10% | ||
m-san | 0 | 4,968,489,636 | 100% | ||
andywong31 | 0 | 1,145,408,649 | 100% | ||
investegg | 0 | 53,888,575,019 | 64.5% | ||
vegoutt-travel | 0 | 39,358,945,807 | 40% | ||
japanguide | 0 | 1,589,247,255 | 100% | ||
liverpool-fan | 0 | 802,165,284 | 5% | ||
karinxxl | 0 | 31,155,925,350 | 25% | ||
mrhill | 0 | 25,707,138,463 | 70% | ||
blockbrothers | 0 | 493,692,903 | 15% | ||
sunsea | 0 | 171,711,317,919 | 100% | ||
steemflow | 0 | 445,525,912,764 | 100% | ||
xabi | 0 | 784,166,467 | 20% | ||
travoved | 0 | 12,690,912,467 | 100% | ||
docmarenkristina | 0 | 790,897,589 | 50% | ||
armentor | 0 | 192,969,756,858 | 100% | ||
citizensmith | 0 | 17,593,660,337 | 100% | ||
traf | 0 | 2,745,748,074,153 | 67% | ||
b00m | 0 | 21,096,766,070 | 100% | ||
elderson | 0 | 922,424,041 | 13.5% | ||
prometehum | 0 | 963,593,121 | 100% | ||
nathen007 | 0 | 189,724,107,336 | 100% | ||
sneakyninja | 0 | 3,250,535,371 | 4.79% | ||
wiseagent | 0 | 5,581,922,053 | 20% | ||
cryptonized | 0 | 236,914,965 | 14% | ||
rimicane | 0 | 2,115,725,024 | 100% | ||
fourfourfun | 0 | 582,416,069 | 1.95% | ||
blue.panda | 0 | 609,198,811 | 10% | ||
phortun | 0 | 696,756,023,266 | 100% | ||
abitcoinskeptic | 0 | 4,537,873,971 | 15% | ||
daltono | 0 | 476,228,518,675 | 27% | ||
for91days | 0 | 46,060,650,356 | 100% | ||
kaerpediem | 0 | 710,549,821,345 | 100% | ||
gabrielatravels | 0 | 85,053,248,840 | 100% | ||
insideoutlet | 0 | 1,038,066,933 | 5% | ||
dudeontheweb | 0 | 4,692,207,009 | 4.4% | ||
hijosdelhombre | 0 | 27,160,570,765 | 25% | ||
tryskele | 0 | 1,563,881,724 | 6% | ||
belemo | 0 | 40,714,725,724 | 100% | ||
mermaidvampire | 0 | 2,082,975,812 | 100% | ||
igel2017 | 0 | 50,725,669,925 | 100% | ||
manncpt | 0 | 4,897,443,643 | 3% | ||
soyrosa | 0 | 175,119,059,891 | 50% | ||
chorock | 0 | 338,719,229,595 | 30% | ||
dynamicrypto | 0 | 3,107,239,297 | 1% | ||
ikrahch | 0 | 181,166,561,040 | 49% | ||
jnmarteau | 0 | 1,168,657,399 | 3% | ||
philnewton | 0 | 1,054,301,909 | 15% | ||
shaidon | 0 | 14,996,833,681 | 11% | ||
superstarxtala | 0 | 1,661,555,649 | 100% | ||
zephalexia | 0 | 1,739,886,444 | 100% | ||
lanzjoseg | 0 | 21,069,247,738 | 25% | ||
jazzhero | 0 | 5,760,673,604 | 7.5% | ||
adetorrent | 0 | 263,163,579,490 | 100% | ||
unconditionalove | 0 | 4,026,002,524 | 15% | ||
bet1x2 | 0 | 1,461,911,317 | 100% | ||
mastergerund | 0 | 3,322,697,763 | 9.58% | ||
bigtom13 | 0 | 335,279,130,026 | 50% | ||
moeenali | 0 | 11,389,785,870 | 1% | ||
verhp11 | 0 | 19,207,878,586 | 70% | ||
rubelynmacion | 0 | 29,122,490,497 | 100% | ||
onlavu | 0 | 118,774,576,882 | 100% | ||
aotearoa | 0 | 1,182,264,157 | 100% | ||
bozz | 0 | 1,143,454,578,491 | 80% | ||
bertrayo | 0 | 3,502,904,002 | 4.5% | ||
movement19 | 0 | 3,693,140,520 | 13.25% | ||
lisfabian | 0 | 10,896,472,241 | 50% | ||
jasonwaterfalls | 0 | 755,833,716 | 100% | ||
cryptictruth | 0 | 2,628,656,956 | 0.5% | ||
runningproject | 0 | 40,918,464,001 | 70% | ||
amigoponc | 0 | 6,432,865,180 | 100% | ||
backinblackdevil | 0 | 42,786,231,591 | 100% | ||
teutonium | 0 | 2,188,156,412 | 70% | ||
blockchainyouth | 0 | 19,277,504,012 | 25% | ||
erikah | 0 | 473,660,063,665 | 20% | ||
krasnec | 0 | 402,929,043,308 | 100% | ||
steemitcolombia | 0 | 4,380,490,163 | 100% | ||
immanuel94 | 0 | 419,758,690,112 | 100% | ||
bestboom | 0 | 4,341,621,305 | 30% | ||
deltasteem | 0 | 6,494,690,397 | 100% | ||
ravenmus1c | 0 | 9,578,832,937 | 0.45% | ||
adamada | 0 | 35,429,124,901 | 10% | ||
ronaldoavelino | 0 | 1,372,519,879 | 20% | ||
louis88 | 0 | 422,652,793,041 | 20% | ||
racibo | 0 | 689,990,791 | 1.5% | ||
ablaze | 0 | 319,044,532,100 | 100% | ||
radard | 0 | 188,536,363,337 | 100% | ||
jungch98 | 0 | 244,067,384 | 100% | ||
sd974201 | 0 | 1,411,540,626 | 3% | ||
inciter | 0 | 5,953,011,174 | 9% | ||
asapers | 0 | 2,126,077,198 | 50% | ||
cedricguillas | 0 | 240,995,095,814 | 100% | ||
saboin | 0 | 69,154,850,393 | 11% | ||
el-dee-are-es | 0 | 5,852,971,956 | 10% | ||
we-are-one | 0 | 1,088,465,266 | 100% | ||
bubtforhad | 0 | 3,832,100,832 | 50% | ||
solominer | 0 | 5,145,487,666,132 | 53% | ||
sbi4 | 0 | 856,944,744,246 | 63.62% | ||
leomolina | 0 | 2,286,732,446 | 9% | ||
eii | 0 | 86,667,471,120 | 100% | ||
valentin86 | 0 | 89,212,760,662 | 100% | ||
nateaguila | 0 | 164,344,909,274 | 8% | ||
enforcer48 | 0 | 242,794,569,135 | 20% | ||
crypticat | 0 | 176,007,165,596 | 50% | ||
steemcampuk | 0 | 8,163,814,242 | 100% | ||
spamfarmer | 0 | 1,622,880,784 | 20% | ||
pinas | 0 | 481,597,625 | 50% | ||
fernandosoder | 0 | 8,321,119,363 | 100% | ||
thefoundation | 0 | 50,525,884,884 | 100% | ||
steddyman | 0 | 2,261,138,629 | 100% | ||
cryptoandcoffee | 0 | 671,950,007,816 | 25% | ||
frejafri | 0 | 1,932,991,271 | 5% | ||
ronbong | 0 | 1,269,835,976 | 100% | ||
sgbonus | 0 | 41,946,001,552 | 15% | ||
gabrielrr17 | 0 | 997,809,059 | 5.5% | ||
topbooster | 0 | 788,694,039 | 50% | ||
dses | 0 | 54,113,695,776 | 80% | ||
soma909 | 0 | 727,292,637 | 100% | ||
digital.mine | 0 | 53,264,138,857 | 60% | ||
marenontherun | 0 | 8,599,387,966 | 35% | ||
mirrors | 0 | 7,049,955,037 | 100% | ||
aulia1993 | 0 | 649,931,562 | 11% | ||
blewitt | 0 | 31,011,139,289 | 40% | ||
bingbabe | 0 | 5,581,338,707 | 100% | ||
abacam | 0 | 479,597,632 | 100% | ||
abcor | 0 | 6,817,776,632 | 100% | ||
carl05 | 0 | 2,030,123,293 | 7.5% | ||
soulsdetour | 0 | 12,625,787,468 | 100% | ||
ambiguity | 0 | 43,318,677,687 | 100% | ||
thedailysneak | 0 | 4,417,769,076 | 4.79% | ||
pardinus | 0 | 20,256,465,630 | 10% | ||
sadbear | 0 | 1,055,046,198 | 4.5% | ||
bestofph | 0 | 1,196,878,497 | 10% | ||
steem.craft | 0 | 605,809,368 | 100% | ||
crypt-skip | 0 | 744,138,227,647 | 100% | ||
goblinknackers | 0 | 1,081,216,346,867 | 100% | ||
luciannagy | 0 | 1,336,902,783 | 30% | ||
light-hearted | 0 | 8,064,142,577 | 100% | ||
dlike | 0 | 90,214,186,940 | 30% | ||
randomgoodstuff | 0 | 5,231,853,050 | 50% | ||
bagpuss | 0 | 9,873,911,442 | 100% | ||
pedrocanella | 0 | 596,251,666 | 11% | ||
gubbatv | 0 | 331,647,196,304 | 100% | ||
foodfightfriday | 0 | 12,722,982,415 | 12.5% | ||
chops.support | 0 | 34,851,370,776 | 100% | ||
bobby.madagascar | 0 | 10,452,481,681 | 15% | ||
voter001 | 0 | 53,885,017,223 | 62.1% | ||
voter003 | 0 | 55,946,771,846 | 25.6% | ||
babysavage | 0 | 1,590,031,013 | 9.58% | ||
ravensavage | 0 | 878,200,475 | 9.58% | ||
pet.society | 0 | 14,521,717,105 | 6% | ||
teerawith | 0 | 5,324,091,927 | 100% | ||
javier.dejuan | 0 | 781,291,213 | 100% | ||
blanchy | 0 | 163,114,624,515 | 100% | ||
kuku-splatts | 0 | 14,141,350,519 | 25% | ||
lion200 | 0 | 14,265,929,982 | 50% | ||
gungunkrishu | 0 | 793,534,421,680 | 100% | ||
thrasher666 | 0 | 2,506,635,867 | 60% | ||
vasigo | 0 | 14,738,507,401 | 100% | ||
priyanarc | 0 | 133,245,224,496 | 80% | ||
sanjeev021 | 0 | 16,970,290,411 | 5.5% | ||
marianaemilia | 0 | 105,056,760,282 | 11% | ||
johannpiber | 0 | 212,718,849,707 | 20% | ||
mistia | 0 | 6,964,647,715 | 100% | ||
michealb | 0 | 540,975,954,587 | 100% | ||
cakemonster | 0 | 10,588,699,525 | 15% | ||
misterengagement | 0 | 2,378,278,234 | 30% | ||
gudnius.comics | 0 | 21,082,729,595 | 100% | ||
dismayedworld | 0 | 5,025,334,679 | 100% | ||
retrodroid | 0 | 12,752,753,532 | 33% | ||
wherein | 0 | 4,081,064,040 | 8% | ||
irionet | 0 | 1,536,422,017 | 100% | ||
currentxchange | 0 | 11,385,541,697 | 25% | ||
smon-fan | 0 | 2,177,098,714 | 100% | ||
jacuzzi | 0 | 3,364,056,317 | 1.4% | ||
slothlydoesit | 0 | 1,102,286,360 | 1.12% | ||
brucutu1 | 0 | 4,418,753,166 | 100% | ||
lestrange | 0 | 6,906,635,408 | 90% | ||
thegames | 0 | 760,311,102 | 50% | ||
bolachasmonster | 0 | 542,698,933 | 5.5% | ||
gomster | 0 | 490,433,568 | 5.5% | ||
determine | 0 | 1,857,688,620 | 30% | ||
cnstm | 0 | 11,771,061,221 | 8% | ||
permaculturedude | 0 | 9,890,283,257 | 30% | ||
whiterosecoffee | 0 | 9,273,105,421 | 5% | ||
pocoto | 0 | 4,578,884,513 | 100% | ||
caribehub | 0 | 1,279,465,001 | 100% | ||
cyrillo | 0 | 4,463,404,305 | 100% | ||
goodcontentbot | 0 | 808,257,321 | 15% | ||
skymin | 0 | 2,307,637,981 | 100% | ||
limka | 0 | 213,044,415 | 98.76% | ||
hungrybear | 0 | 619,014,043 | 14% | ||
haikusailor | 0 | 2,355,012,667 | 30% | ||
giftgiver | 0 | 191,088,716,678 | 100% | ||
mary-jane | 0 | 587,868,985 | 100% | ||
hungryharish | 0 | 1,808,448,879 | 7.5% | ||
sophieandhenrik | 0 | 10,298,620,277 | 50% | ||
wolffeys | 0 | 12,298,196,865 | 100% | ||
src3 | 0 | 29,954,193,959 | 25% | ||
kggymlife | 0 | 3,619,984,905 | 20% | ||
russia-btc | 0 | 574,546,189,934 | 48.2% | ||
alenox | 0 | 622,643,577 | 4.5% | ||
rocketpower | 0 | 582,341,583 | 20% | ||
photographercr | 0 | 32,223,344,325 | 13.4% | ||
rodrook | 0 | 6,876,322,061 | 100% | ||
coolsurfer | 0 | 10,069,527,472 | 100% | ||
libertycrypto27 | 0 | 472,068,963,540 | 100% | ||
minigame | 0 | 374,033,933,690 | 100% | ||
anjanida | 0 | 4,920,067,531 | 100% | ||
linita | 0 | 11,999,803,786 | 100% | ||
beerlover | 0 | 132,383,533,732 | 100% | ||
bastter | 0 | 1,289,900,565 | 11% | ||
borjan | 0 | 368,271,946,686 | 22.9% | ||
agmoore2 | 0 | 9,818,941,939 | 100% | ||
philnews.xyz | 0 | 983,307,736 | 12.5% | ||
steemincome | 0 | 1,005,474,483 | 15% | ||
leighscotford | 0 | 52,515,010,099 | 66% | ||
steemindian | 0 | 604,855,784 | 15% | ||
teamashen | 0 | 2,908,363,778 | 4% | ||
astil.codex | 0 | 32,668,172 | 100% | ||
triplea.bot | 0 | 6,595,247,901 | 30% | ||
steem.leo | 0 | 37,730,431,463 | 30% | ||
reggaesteem | 0 | 5,958,448,600 | 55.25% | ||
abh12345.pal | 0 | 802,939,293 | 100% | ||
farm1 | 0 | 675,108,098,757 | 100% | ||
amico.sports | 0 | 14,424,071,242 | 35% | ||
ilias.fragment | 0 | 31,170,702 | 100% | ||
babytarazkp | 0 | 7,496,771,933 | 85% | ||
wrestlingdesires | 0 | 125,562,752,058 | 100% | ||
abh12345.ccoin | 0 | 2,178,034,490 | 100% | ||
the.lazy.panda | 0 | 859,399,139 | 10% | ||
sbi-tokens | 0 | 9,284,152,632 | 9.58% | ||
liaminit1 | 0 | 26,536,840,402 | 90% | ||
brutoken | 0 | 2,153,967,186 | 100% | ||
leo.syndication | 0 | 550,572,084 | 30% | ||
one.life | 0 | 564,815,608 | 29.94% | ||
whangster79 | 0 | 1,459,162,937,366 | 53% | ||
idig | 0 | 2,501,270,807 | 6.25% | ||
lividseagulls | 0 | 613,680,737 | 21% | ||
bilpcoinbot | 0 | 3,660,502,255 | 100% | ||
fixie | 0 | 1,720,159,053,658 | 100% | ||
emeka4 | 0 | 487,067,721 | 4.5% | ||
urtrailer | 0 | 216,044,524,278 | 25% | ||
gigel2 | 0 | 1,000,414,393,622 | 100% | ||
curatorcat.ccc | 0 | 17,840,642,591 | 100% | ||
isaria-ccc | 0 | 935,758,368 | 25% | ||
helpmate | 0 | 533,828,529 | 15% | ||
blocktvnews | 0 | 518,093,018 | 30% | ||
bilpcoin.pay | 0 | 540,455,055 | 10% | ||
tobago | 0 | 1,295,668,566 | 65% | ||
dbfoodbank | 0 | 3,983,589,768 | 76% | ||
karelia | 0 | 2,273,763,592 | 100% | ||
splatts | 0 | 65,515,403,219 | 12.5% | ||
galenkp.aus | 0 | 1,211,381,760 | 100% | ||
invest2learn | 0 | 768,558,785 | 30% | ||
stoodmonsters | 0 | 42,365,319,736 | 100% | ||
bpcvoter | 0 | 944,301,620 | 100% | ||
gmlrecordz | 0 | 745,349,731 | 50% | ||
bpcvoter3 | 0 | 852,796,173 | 50% | ||
oblivioncubed | 0 | 466,033,611,632 | 100% | ||
journeyofanomad | 0 | 11,433,658,183 | 80% | ||
ribary | 0 | 11,141,453,028 | 15% | ||
terminado | 0 | 12,399,823,102 | 25% | ||
sharkthelion | 0 | 865,189,135 | 25% | ||
lacking | 0 | 650,401,357,871 | 100% | ||
gloriaolar | 0 | 15,687,097,158 | 9% | ||
kgsupport | 0 | 704,755,113 | 15% | ||
garlet-68 | 0 | 1,980,332,576 | 50% | ||
mice-k | 0 | 2,815,901,882 | 30% | ||
leeendah | 0 | 86,895,582,411 | 100% | ||
julesquirin | 0 | 4,196,302,473 | 13.4% | ||
grindle | 0 | 383,304,729,752 | 100% | ||
catanknight | 0 | 218,114,892 | 100% | ||
dpend.active | 0 | 2,268,509,611 | 6% | ||
hivebuzz | 0 | 18,701,827,989 | 3% | ||
hivewatchers | 0 | 968,346,916 | 55% | ||
politicalhive | 0 | 910,937,202 | 100% | ||
reggaejahm | 0 | 216,992,587,820 | 65% | ||
ubasi | 0 | 145,189,776,416 | 20% | ||
softworld | 0 | 164,891,185,567 | 49% | ||
travelflower | 0 | 1,373,753,284 | 40% | ||
captainhive | 0 | 978,603,585,638 | 40% | ||
dcityrewards | 0 | 1,000,777,591,586 | 30% | ||
holoferncro | 0 | 2,279,357,758 | 5% | ||
hextech | 0 | 473,779,716,413 | 100% | ||
sketching | 0 | 1,860,405,236 | 15% | ||
ninnu | 0 | 1,180,201,093 | 50% | ||
aquarius.academy | 0 | 17,137,615,634 | 100% | ||
noelyss | 0 | 2,247,703,946 | 4.5% | ||
forkyishere | 0 | 2,443,427,799 | 15% | ||
moneyheist-sl | 0 | 5,432,555 | 100% | ||
lucianav | 0 | 2,352,933,722 | 4.5% | ||
dannewton | 0 | 89,249,628,012 | 20% | ||
dobro2020 | 0 | 1,283,441,502 | 100% | ||
self-help.dev | 0 | 684,670,052 | 100% | ||
gabilan55 | 0 | 562,225,477 | 4.5% | ||
olaunlimited | 0 | 24,325,128,716 | 30.15% | ||
w-splatts | 0 | 14,603,270,256 | 25% | ||
mafia.wallet | 0 | 73,696,828,158 | 100% | ||
earthsea | 0 | 14,948,979,716 | 50% | ||
rashed.ifte | 0 | 10,932,004,651 | 100% | ||
nftmart | 0 | 115,817,425,814 | 100% | ||
recoveryinc | 0 | 17,490,148,704 | 26.5% | ||
brofund-pal | 0 | 2,795,140,967 | 100% | ||
hive-108278 | 0 | 577,153,020 | 33.5% | ||
liz.writes | 0 | 832,497,355 | 39.75% | ||
dying | 0 | 2,000,161,480 | 53% | ||
adedayoolumide | 0 | 23,479,405,690 | 100% | ||
r-nyn | 0 | 116,797,406,392 | 100% | ||
hive-world | 0 | 564,008,126 | 5.5% | ||
katleya | 0 | 22,283,757,283 | 99% | ||
noalys | 0 | 1,614,054,355 | 4.5% | ||
hive-168869 | 0 | 34,375,170,850 | 100% | ||
rima11 | 0 | 101,251,935,441 | 2.7% | ||
bluepluto | 0 | 532,127,244 | 50% | ||
lowlightart | 0 | 910,989,548 | 40% | ||
esecholito | 0 | 46,562,707,516 | 100% | ||
alex-rourke | 0 | 948,575,538,613 | 47% | ||
dalz.shorts | 0 | 992,206,045 | 50% | ||
heruvim1978 | 0 | 27,291,102,951 | 100% | ||
betterdev | 0 | 206,255,958,019 | 100% | ||
netaterra.leo | 0 | 826,825,831 | 13.5% | ||
edwing357 | 0 | 1,738,241,898 | 12.5% | ||
hivechat | 0 | 1,593,030,753 | 15% | ||
rosalestrust | 0 | 5,833,103,772 | 100% | ||
dcrops | 0 | 189,644,900,916 | 15% | ||
carlosro | 0 | 4,638,334,151 | 11% | ||
brucolac | 0 | 842,246,113 | 6.6% | ||
guitarmcy | 0 | 27,184,926,500 | 100% | ||
samrisso | 0 | 18,822,283,332 | 26.5% | ||
ctpx | 0 | 990,794,421 | 20% | ||
yozen | 0 | 3,000,169,532 | 7.5% | ||
brando28 | 0 | 752,876,831 | 5.5% | ||
h-e | 0 | 190,618,880 | 100% | ||
xrayman | 0 | 31,423,339,695 | 100% | ||
coinomite | 0 | 4,006,663,632,967 | 100% | ||
eturnerx-honey | 0 | 37,488,130,894 | 100% | ||
abh12345.archon | 0 | 687,504,338 | 100% | ||
firinmahlazer | 0 | 508,634,851 | 100% | ||
retaliatorr | 0 | 2,851,798,396 | 100% | ||
giemo | 0 | 936,655,764 | 11% | ||
elgatoshawua | 0 | 1,118,678,976 | 4.5% | ||
cvrle | 0 | 3,246,791,638 | 100% | ||
thecouncil | 0 | 21,167,444,399 | 100% | ||
tomtothetom | 0 | 8,127,502,687 | 53% | ||
biglove | 0 | 1,245,870,744 | 25% | ||
mapetoke | 0 | 76,477,568,051 | 100% | ||
melcaya | 0 | 11,982,758,610 | 100% | ||
happyfrog420-new | 0 | 69,329,938,309 | 100% | ||
trouvaille | 0 | 1,219,995,734 | 4.5% | ||
wendyburger | 0 | 56,755,275,184 | 53% | ||
mirrored.lands | 0 | 0 | 100% | ||
emstone | 0 | 4,315,223,791 | 50% | ||
m0rt0nmattd | 0 | 3,339,975,767 | 100% | ||
high8125theta | 0 | 488,786,150 | 0.7% | ||
arc-echo | 0 | 1,201,662,394 | 35% | ||
jane1289 | 0 | 152,965,575,151 | 72.6% | ||
dendendenden | 0 | 6,690,085,551 | 100% | ||
power-kappe | 0 | 617,241,190 | 9% | ||
hive.friends | 0 | 0 | 1% | ||
hjrrodriguez | 0 | 20,124,752,115 | 100% | ||
yeouido.park | 0 | 858,015,923,981 | 40% | ||
farpetrad | 0 | 69,141,151,604 | 100% | ||
fotomaglys | 0 | 2,735,227,605 | 4.5% | ||
mattbrown.art | 0 | 2,667,018,018 | 30% | ||
holovision.stem | 0 | 545,948,178 | 100% | ||
twicejoy | 0 | 951,879,961 | 7% | ||
duwiky | 0 | 5,537,536,760 | 50% | ||
lordb | 0 | 22,190,450,669 | 100% | ||
aguamiel | 0 | 4,922,268,294 | 25% | ||
jimmy406 | 0 | 11,559,653,833 | 100% | ||
flamistan | 0 | 1,194,214,065 | 50% | ||
aprasad2325 | 0 | 1,643,946,632 | 4.5% | ||
celeste413 | 0 | 16,242,640,648 | 100% | ||
speedtuning | 0 | 15,620,860 | 100% | ||
lucimorningstar | 0 | 624,989,428 | 20% | ||
trezzahn | 0 | 23,198,358,897 | 100% | ||
funshee | 0 | 7,653,543,583 | 49% | ||
mjvdc | 0 | 10,509,674,410 | 100% | ||
seattlea | 0 | 668,053,737 | 2.25% | ||
aequi | 0 | 47,821,391,260 | 100% | ||
hyun-soo | 0 | 851,484,292 | 15% | ||
dlmmqb | 0 | 132,645,218,232 | 100% | ||
cugel | 0 | 26,490,225,176 | 26.5% | ||
gamesontheblock | 0 | 146,492,317 | 100% | ||
acantoni | 0 | 8,716,970,032 | 26.5% | ||
antoniojg | 0 | 13,756,777,794 | 100% | ||
lovefallen | 0 | 4,114,947,748 | 100% | ||
hkinuvaime | 0 | 520,940,877 | 5.5% | ||
snaqz | 0 | 4,477,196,960 | 20% | ||
scrubs24 | 0 | 2,820,513,122 | 8.25% | ||
mimi.ruby | 0 | 190,531,553,909 | 100% | ||
kojiri | 0 | 579,450,689 | 5.5% | ||
deveter | 0 | 1,180,374,124 | 50% | ||
irregular-n | 0 | 4,640,337,850 | 80% | ||
we-support-hive | 0 | 583,181,059 | 100% | ||
rishi556.engine | 0 | 347,643,331 | 100% | ||
tengolotodo | 0 | 21,431,404,820 | 25% | ||
orangeandwater | 0 | 2,052,516,510 | 100% | ||
pob.curator | 0 | 1,855,799,019 | 100% | ||
rammargarita | 0 | 80,041,687,080 | 100% | ||
unlikelysurvivor | 0 | 532,256,126 | 5.5% | ||
thebighigg | 0 | 33,069,854,741 | 50% | ||
leodis | 0 | 683,188,804 | 25.5% | ||
zpek | 0 | 1,908,804,767 | 100% | ||
kaale | 0 | 8,789,957,895 | 100% | ||
ssebasv | 0 | 626,326,407 | 100% | ||
onw | 0 | 11,193,485,568 | 100% | ||
waivio.curator | 0 | 1,471,010,783 | 2.81% | ||
violator101 | 0 | 29,921,771,051 | 100% | ||
elfino28 | 0 | 804,928,858 | 7.7% | ||
eddieespino | 0 | 0 | 100% | ||
splitterhands | 0 | 2,351,787,198 | 100% | ||
drexlord | 0 | 3,780,177,073 | 7.5% | ||
privatblog | 0 | 958,229,509,341 | 100% | ||
trostparadox.vyb | 0 | 1,005,836,373 | 50% | ||
vyb.pob | 0 | 2,138,803,085 | 50% | ||
thgaming | 0 | 553,543,468 | 2.25% | ||
crypt0gnome | 0 | 159,204,768,790 | 7.5% | ||
sleemfit | 0 | 36,769,474,544 | 100% | ||
listnerds | 0 | 35,394,923,467 | 20% | ||
reenave | 0 | 6,321,279,567 | 100% | ||
kid.miniatures | 0 | 18,905,689,935 | 80% | ||
hoffmeister84 | 0 | 13,936,495,095 | 100% | ||
vyb.curation | 0 | 1,226,930,711 | 50% | ||
neuro101 | 0 | 1,689,122,395 | 100% | ||
sagarkothari88 | 0 | 85,499,463,748 | 5% | ||
waliphoto | 0 | 9,395,818,876 | 100% | ||
zuun.net | 0 | 6,551,927,266 | 35% | ||
taradraz1 | 0 | 2,081,706,984 | 100% | ||
diehardknocks | 0 | 28,551,516,644 | 100% | ||
killerwot | 0 | 148,488,756,792 | 100% | ||
rafzat | 0 | 3,471,705,070 | 17% | ||
gone-hive | 0 | 462,064,651 | 12.5% | ||
mypathtofire | 0 | 2,952,621,130,427 | 100% | ||
leemah1 | 0 | 460,563,263 | 3.5% | ||
jlinaresp | 0 | 59,874,731,206 | 100% | ||
ryosai | 0 | 573,049,983 | 7.5% | ||
foggwulf101 | 0 | 1,632,912,133 | 100% | ||
foggwulf505 | 0 | 1,568,550,670 | 100% | ||
vyb.fund | 0 | 994,459,329 | 50% | ||
sabosuke | 0 | 4,738,295,028 | 100% | ||
mesk | 0 | 644,841,619 | 5.5% | ||
dragonmk47 | 0 | 7,217,381,490 | 5.5% | ||
isabel-vihu | 0 | 3,833,127,027 | 30% | ||
xarabista | 0 | 650,225,843 | 100% | ||
mdasein | 0 | 6,810,058,069 | 100% | ||
kryptofire | 0 | 1,710,982,753 | 10% | ||
franzpaulie | 0 | 39,663,603,928 | 100% | ||
lightbruce17 | 0 | 1,038,207,874 | 15% | ||
poplar-22 | 0 | 572,344,189 | 0.67% | ||
genepoolcardlord | 0 | 14,881,265,993 | 5.5% | ||
mukadder | 0 | 69,687,589,872 | 100% | ||
becca-mac | 0 | 185,992,010,663 | 100% | ||
growandbow | 0 | 100,298,014,070 | 96% | ||
tzae | 0 | 1,674,561,380 | 100% | ||
ctptips | 0 | 1,685,107,433 | 15% | ||
the13anarchist | 0 | 1,151,583,879 | 6.75% | ||
brutus22 | 0 | 10,999,881,165 | 80% | ||
revise.spk | 0 | 716,372,577 | 100% | ||
owdgibber | 0 | 4,481,004,143 | 100% | ||
belena2128 | 0 | 433,562,493 | 4.5% | ||
maydelvalle | 0 | 22,320,083,028 | 100% | ||
biyaawnur | 0 | 760,998,722 | 100% | ||
hive-152804 | 0 | 493,110,439 | 100% | ||
archives-upfunds | 0 | 6,537,577,954 | 100% | ||
pinkchic | 0 | 1,416,893,958 | 1.8% | ||
roronoa46 | 0 | 7,241,935,670 | 100% | ||
celestegray | 0 | 55,684,944,830 | 50% | ||
aera8 | 0 | 12,482,896,224 | 100% | ||
lordneroo.pob | 0 | 476,143,302 | 100% | ||
lordneroo.vyb | 0 | 476,126,987 | 100% | ||
emma-h | 0 | 92,589,119,127 | 100% | ||
cards4rent | 0 | 44,905,440,593 | 50% | ||
treefrognada | 0 | 1,834,530,889 | 10% | ||
hive-195880 | 0 | 15,714,667,243 | 53% | ||
kryptogeier1 | 0 | 2,748,954,989 | 12% | ||
nanixxx | 0 | 57,209,924,035 | 50% | ||
abu78 | 0 | 957,842,044 | 2.75% | ||
splinterboost | 0 | 219,684,300,341 | 15% | ||
beauty197 | 0 | 579,111,273 | 4.5% | ||
imohmitchel | 0 | 0 | 100% | ||
warofcriptonft | 0 | 1,969,416,214 | 1.35% | ||
hbcpt | 0 | 29,846,590,706 | 100% | ||
naviii | 0 | 2,543,007,209 | 100% | ||
hive-173296 | 0 | 1,075,052,668 | 25% | ||
terracore | 0 | 3,616,581,514 | 7.5% | ||
thiskava | 0 | 1,884,026,150 | 100% | ||
gollumkp | 0 | 16,300,360,337 | 20% | ||
skiptvads | 0 | 88,428,068,042 | 45% | ||
mrbonkers | 0 | 14,495,556,300 | 50% | ||
creativecuisine | 0 | 25,018,971,577 | 25% | ||
strega.azure | 0 | 42,808,091,058 | 100% | ||
foodchunk | 0 | 157,620,149,393 | 50% | ||
michaelklinejr | 0 | 24,003,462,367 | 100% | ||
coinjoe | 0 | 46,176,224,025 | 50% | ||
les90 | 0 | 610,555,889 | 4.5% | ||
queriquera | 0 | 1,365,341,937 | 100% | ||
epiko | 0 | 2,092,228,091 | 100% | ||
kelvinchinedum | 0 | 14,482,034 | 100% | ||
terraboost | 0 | 19,850,863,414 | 1% | ||
syawalularsya | 0 | 2,876,823,592 | 100% | ||
xrox | 0 | 0 | 100% | ||
samuraiscam | 0 | 82,171,378,894 | 5% | ||
emma-h2 | 0 | 111,056,457,036 | 100% | ||
cwow1 | 0 | 2,270,665,417 | 100% | ||
medemr | 0 | 714,499,447 | 100% | ||
medicorez | 0 | 876,742,710 | 100% | ||
boblazar | 0 | 4,670,959,479 | 100% | ||
caleb-marvel | 0 | 586,459,912 | 50% | ||
rak7 | 0 | 2,981,675,417,769 | 100% | ||
cur8 | 0 | 31,501,228,258 | 20% | ||
thisisbaris | 0 | 289,288,312,582 | 30% | ||
masayume8311 | 0 | 0 | 100% |
Yeah, that is really quite over my head right now. I get some of it and I am learning more as I go. This is pretty cool what you did though. It sure does beat scrolling through pages of cards if you are just looking for a couple specific ones!
author | bozz |
---|---|
permlink | re-slobberchops-s2q2f3 |
category | hive-129924 |
json_metadata | {"tags":["hive-129924"],"app":"peakd/2023.10.1"} |
created | 2023-10-18 11:25:51 |
last_update | 2023-10-18 11:25:51 |
depth | 1 |
children | 4 |
last_payout | 2023-10-25 11:25:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.116 HBD |
curator_payout_value | 0.116 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 245 |
author_reputation | 2,239,101,050,116,876 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,094,941 |
net_rshares | 521,009,793,041 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 520,987,999,311 | 10% | ||
astil.codex | 0 | 21,793,730 | 100% |
For the moment, grab the code and add some of your own 'views' to it. I made it as simple as possible, without any fancy stuff that make it 'standard' and digestible for regular coders. I could do a lot more with this, and you could too. Try some experimentation, such as file access, maybe a lookup table to convert the Editions to something more readable.., such as Beta = 2. Make it a function, you can send an Int and get a String back, for the print functions. > I get some of it.. It's a start.
author | slobberchops |
---|---|
permlink | re-bozz-s2q3on |
category | hive-129924 |
json_metadata | {"tags":["hive-129924"],"app":"peakd/2023.10.1"} |
created | 2023-10-18 11:53:12 |
last_update | 2023-10-18 11:53:12 |
depth | 2 |
children | 3 |
last_payout | 2023-10-25 11:53:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 503 |
author_reputation | 2,427,112,030,251,199 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,095,427 |
net_rshares | 84,298,395,382 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stimialiti | 0 | -25,386,820,906 | -100% | ||
fersher | 0 | -1,221,942,484 | -100% | ||
bozz | 0 | 42,740,785,325 | 3% | ||
chops.support | 0 | 33,804,765,806 | 100% | ||
wanker | 0 | 34,361,607,641 | 100% |
Time is the big factor for me right now. This is really cool though. I can definitely see the potential. Can you have it return who the owner of the card is that is being sold? I'm guessing that's probably just another function or something.
author | bozz |
---|---|
permlink | re-slobberchops-s2qala |
category | hive-129924 |
json_metadata | {"tags":["hive-129924"],"app":"peakd/2023.10.1"} |
created | 2023-10-18 14:22:21 |
last_update | 2023-10-18 14:22:21 |
depth | 3 |
children | 2 |
last_payout | 2023-10-25 14:22:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.060 HBD |
curator_payout_value | 0.060 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 244 |
author_reputation | 2,239,101,050,116,876 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,098,552 |
net_rshares | 269,912,160,528 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 269,891,801,477 | 5% | ||
astil.codex | 0 | 20,359,051 | 100% |
Great work and explanation, i ma not a python dev but reading quickly i cand understand what r you doing. :D
author | dobro2020 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | s2qlyx | ||||||||||||
category | hive-129924 | ||||||||||||
json_metadata | {"app":"hiveblog/0.1"} | ||||||||||||
created | 2023-10-18 18:28:09 | ||||||||||||
last_update | 2023-10-18 18:28:09 | ||||||||||||
depth | 1 | ||||||||||||
children | 0 | ||||||||||||
last_payout | 2023-10-25 18:28:09 | ||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||
total_payout_value | 0.023 HBD | ||||||||||||
curator_payout_value | 0.023 HBD | ||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||
promoted | 0.000 HBD | ||||||||||||
body_length | 108 | ||||||||||||
author_reputation | 65,964,136,431,997 | ||||||||||||
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 128,103,905 | ||||||||||||
net_rshares | 106,140,350,369 | ||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 106,128,018,239 | 2% | ||
astil.codex | 0 | 12,332,130 | 100% |
Congratulations @slobberchops! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s) <table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@slobberchops/upvotes.png?202310181441"></td><td>You distributed more than 135000 upvotes.<br>Your next target is to reach 140000 upvotes.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@slobberchops) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>
author | hivebuzz |
---|---|
permlink | notify-slobberchops-20231018t150215 |
category | hive-129924 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2023-10-18 15:02:15 |
last_update | 2023-10-18 15:02:15 |
depth | 1 |
children | 0 |
last_payout | 2023-10-25 15:02: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 | 646 |
author_reputation | 369,244,692,057,835 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,099,524 |
net_rshares | 0 |
Thanks for this👍 !PGM
author | mdasein |
---|---|
permlink | re-slobberchops-20231019t205120371z |
category | hive-129924 |
json_metadata | {"tags":["hive-129924","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp","splinterlands"],"app":"ecency/3.0.42-mobile","format":"markdown+html"} |
created | 2023-10-19 12:51:21 |
last_update | 2023-10-19 12:51:21 |
depth | 1 |
children | 1 |
last_payout | 2023-10-26 12:51: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 | 21 |
author_reputation | 14,966,838,221,313 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,125,577 |
net_rshares | 8,668,846 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
astil.codex | 0 | 8,668,846 | 100% |
<center>Sent 0.1 PGM - 0.1 LVL- 1 STARBITS - 0.05 DEC - 1 SBT - 0.1 THG - 0.000001 SQM - 0.1 BUDS - 0.01 WOO - 0.005 SCRAP tokens </center> <center><sub>remaining commands 3</sub></center> **BUY AND STAKE THE PGM TO SEND A LOT OF TOKENS!** The tokens that the command sends are: 0.1 PGM-0.1 LVL-0.1 THGAMING-0.05 DEC-15 SBT-1 STARBITS-[0.00000001 BTC (SWAP.BTC) only if you have 2500 PGM in stake or more ] 5000 PGM IN STAKE = 2x rewards!  Discord [](https://discord.gg/KCvuNTEjWw) Support the curation account @ pgm-curator with a delegation [10 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiIxMCJ9XQ..) - [50 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MCJ9XQ..) - [100 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhb3RyIiwidmVzdGluZ19zaGFyZXMiOiIxMDAifV0.) - [500 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MDAifV0.) - [1000 HP](https://hivesigner.com/sign/op/WyJ0cmFuc2Zlcl90b192ZXN0aW5nIix7ImZyb20iOiJfX3NpZ25lciIsInRvIjoicGdtLWN1cmF0b3IiLCJhbW91bnQiOiIxMDAwIn1d) Get **potential** votes from @ pgm-curator by paying in PGM, here is a [guide](https://peakd.com/hive-146620/@zottone444/pay-1-pgm-and-get-4-votes-itaegn) <sub>I'm a bot, if you want a hand ask @ zottone444</sub> ***
author | pgm-curator |
---|---|
permlink | pgm-curatormdasein1697719894978 |
category | hive-129924 |
json_metadata | {"tags":[],"app":"pgm/0.1","format":"markdown+html"} |
created | 2023-10-19 12:51:36 |
last_update | 2023-10-19 12:51:36 |
depth | 2 |
children | 0 |
last_payout | 2023-10-26 12:51: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,916 |
author_reputation | 3,409,490,822,394 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,125,582 |
net_rshares | 0 |
I had to leave a comment on this so I can find it for later. Always wanting to read code examples for blockchain interaction
author | michaelklinejr | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | s2qy93 | ||||||||||||||||||
category | hive-129924 | ||||||||||||||||||
json_metadata | {"app":"hiveblog/0.1"} | ||||||||||||||||||
created | 2023-10-18 22:53:27 | ||||||||||||||||||
last_update | 2023-10-18 22:53:27 | ||||||||||||||||||
depth | 1 | ||||||||||||||||||
children | 0 | ||||||||||||||||||
last_payout | 2023-10-25 22:53:27 | ||||||||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||||||||
total_payout_value | 0.022 HBD | ||||||||||||||||||
curator_payout_value | 0.022 HBD | ||||||||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||||||||
promoted | 0.000 HBD | ||||||||||||||||||
body_length | 124 | ||||||||||||||||||
author_reputation | 4,227,486,074,309 | ||||||||||||||||||
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" | ||||||||||||||||||
beneficiaries |
| ||||||||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||||||||
percent_hbd | 10,000 | ||||||||||||||||||
post_id | 128,110,057 | ||||||||||||||||||
net_rshares | 101,090,469,836 | ||||||||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 101,079,383,751 | 2% | ||
astil.codex | 0 | 11,086,085 | 100% |
I can see that you so much love Splinterlands all the time You talk about it so many times and I can see how loyal and dedicated you are to it That's lovely!
author | rafzat |
---|---|
permlink | re-slobberchops-20231018t155350801z |
category | hive-129924 |
json_metadata | {"tags":["hive-129924","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp","splinterlands"],"app":"ecency/3.0.43-mobile","format":"markdown+html"} |
created | 2023-10-18 14:53:51 |
last_update | 2023-10-18 14:53:51 |
depth | 1 |
children | 1 |
last_payout | 2023-10-25 14:53:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 157 |
author_reputation | 183,560,271,702,716 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,099,330 |
net_rshares | 107,859,386,596 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 107,845,782,992 | 2% | ||
astil.codex | 0 | 13,603,604 | 100% |
I have a large investment in it, sometimes I wish I hadn't.
author | slobberchops |
---|---|
permlink | re-rafzat-s2qhjc |
category | hive-129924 |
json_metadata | {"tags":"hive-129924"} |
created | 2023-10-18 16:52:24 |
last_update | 2023-10-18 16:52:33 |
depth | 2 |
children | 0 |
last_payout | 2023-10-25 16:52: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 | 59 |
author_reputation | 2,427,112,030,251,199 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,101,751 |
net_rshares | 0 |
I wholeheartedly agree that more open-source contributions can only benefit the Hive community. It's tools like these that can make the platform more robust and user-friendly.
author | rak7 |
---|---|
permlink | re-slobberchops-s2wddo |
category | hive-129924 |
json_metadata | {"tags":["hive-129924"],"app":"peakd/2023.10.1"} |
created | 2023-10-21 21:08:12 |
last_update | 2023-10-21 21:08:12 |
depth | 1 |
children | 0 |
last_payout | 2023-10-28 21:08:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.024 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 176 |
author_reputation | 152,719,142,321,873 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,189,524 |
net_rshares | 111,569,140,080 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 111,554,239,663 | 2% | ||
astil.codex | 0 | 14,900,417 | 100% |
Your explanation is clear, making it easy for even a newbie to Python to understand the code but to be honest, they went over my head as I'm far far away from Python after I gave HTML a try long ago which seemed like a disaster. I appreciate your dedication to the Splinterlands community and your willingness to help others. This sense of community is what makes blockchain platforms like Hive so special.
author | rashed.ifte |
---|---|
permlink | re-slobberchops-20231018t162938362z |
category | hive-129924 |
json_metadata | {"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp","splinterlands"],"app":"ecency/3.0.36-vision","format":"markdown+html"} |
created | 2023-10-18 10:29:39 |
last_update | 2023-10-18 10:29:39 |
depth | 1 |
children | 1 |
last_payout | 2023-10-25 10:29:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.058 HBD |
curator_payout_value | 0.058 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 407 |
author_reputation | 206,747,041,987,922 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,093,760 |
net_rshares | 264,184,587,876 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 264,167,013,274 | 5% | ||
astil.codex | 0 | 17,574,602 | 100% |
Understanding some of it is a start. It needs to be broken down into parts like everything else. >and your willingness to help others. I would like to see more open source code relating to HIVE, this is the idea.
author | slobberchops |
---|---|
permlink | re-rashedifte-s2q9r4 |
category | hive-129924 |
json_metadata | {"tags":["hive-129924"],"app":"peakd/2023.10.1"} |
created | 2023-10-18 14:04:18 |
last_update | 2023-10-18 14:04:18 |
depth | 2 |
children | 0 |
last_payout | 2023-10-25 14:04: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 | 216 |
author_reputation | 2,427,112,030,251,199 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,098,181 |
net_rshares | 10,792,281,798 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rashed.ifte | 0 | 10,792,281,798 | 100% |
At least we've learned our lesson and stayed away from Rebellion!
author | revisesociology |
---|---|
permlink | re-slobberchops-s2sldb |
category | hive-129924 |
json_metadata | {"tags":["hive-129924"],"app":"peakd/2023.10.1"} |
created | 2023-10-19 20:10:24 |
last_update | 2023-10-19 20:10:24 |
depth | 1 |
children | 1 |
last_payout | 2023-10-26 20:10:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.116 HBD |
curator_payout_value | 0.116 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 2,265,496,662,591,195 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,135,038 |
net_rshares | 511,020,297,970 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stimialiti | 0 | -22,620,670,812 | -100% | ||
galenkp | 0 | 180,464,307,261 | 3% | ||
fersher | 0 | -1,166,058,243 | -100% | ||
slobberchops | 0 | 354,342,719,764 | 7% |
You talked me into it, 100 packs my arse! 
author | slobberchops |
---|---|
permlink | re-revisesociology-s2slhl |
category | hive-129924 |
json_metadata | {"tags":"hive-129924"} |
created | 2023-10-19 20:12:57 |
last_update | 2023-10-19 20:13:15 |
depth | 2 |
children | 0 |
last_payout | 2023-10-26 20:12: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 | 184 |
author_reputation | 2,427,112,030,251,199 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,135,079 |
net_rshares | 0 |
thanks !pizza
author | speedtuning |
---|---|
permlink | re-slobberchops-s2w7vm |
category | hive-129924 |
json_metadata | {"tags":["hive-129924"],"app":"peakd/2023.10.1"} |
created | 2023-10-21 19:09:24 |
last_update | 2023-10-21 19:09:24 |
depth | 1 |
children | 0 |
last_payout | 2023-10-28 19:09: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 | 14 |
author_reputation | 25,959,515,151,196 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,186,210 |
net_rshares | 7,496,664 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
astil.codex | 0 | 7,496,664 | 100% |
<center> This post has been supported by @Splinterboost with a 15% upvote! Delagate HP to Splinterboost to Earn Daily HIVE rewards for supporting the @Splinterlands community!</center> <center> [ Delegate HP ](https://peakd.com/@splinterboost) | [Join Discord](https://discord.gg/RK4ZHKmgcX) </center>
author | splinterboost |
---|---|
permlink | python-libraries-easy-splinterlands-card-monitoring |
category | hive-129924 |
json_metadata | {"app":"splinterboost/0.1"} |
created | 2023-10-18 08:36:03 |
last_update | 2023-10-18 08:36:03 |
depth | 1 |
children | 0 |
last_payout | 2023-10-25 08:36: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 | 306 |
author_reputation | 13,745,874,350,846 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,091,876 |
net_rshares | 0 |
I didn't know that you are also a code writer except exploring urban areas :)
author | videoaddiction |
---|---|
permlink | re-slobberchops-20231018t12401310z |
category | hive-129924 |
json_metadata | {"type":"comment","tags":["hive-129924","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp","splinterlands"],"app":"ecency/3.0.44-mobile","format":"markdown+html"} |
created | 2023-10-18 09:40:12 |
last_update | 2023-10-18 09:40:12 |
depth | 1 |
children | 1 |
last_payout | 2023-10-25 09:40: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 | 77 |
author_reputation | 165,539,973,605,358 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,093,012 |
net_rshares | 9,865,559 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
astil.codex | 0 | 9,865,559 | 100% |
Exploring is an attempt to stop me getting too fat, this is what I do professionally, though code development is only part of it.
author | slobberchops |
---|---|
permlink | re-videoaddiction-s2pxys |
category | hive-129924 |
json_metadata | {"tags":["hive-129924"],"app":"peakd/2023.10.1"} |
created | 2023-10-18 09:49:42 |
last_update | 2023-10-18 09:49:42 |
depth | 2 |
children | 0 |
last_payout | 2023-10-25 09:49: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 | 129 |
author_reputation | 2,427,112,030,251,199 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,093,157 |
net_rshares | 0 |
> some of the most powerful summoners are rapidly falling in value The player base of Splinterlands also rapidly fallen in the recent past. This results in less demand for the cards. Currently I am in the top 40 000 Bronze players. I remember the time, when the top 100 000 was hard to reach. By the way, I also stopped playing it for a long time. I returned to the game in the previous week. > The lack of examples is typically abysmal on the internet, but I found an old article by @ecko-fresh who appears to have vacated HIVE. His [article](https://ecency.com/hive-13323/@ecko-fresh/c-tutorial-how-to-use-splinterlands-market-api) amassed a pitiful reward of $0.00. This is a very sad example that both in the past and nowadays too are too many content creators, and too little content consumers on the Hive blockchain. Most people focus on posting. Many people post, and a lot of content gets ignored/overlooked. Some people say that I am negative if I mention this. But I am not negative. I am realistic. And this is obvious. It can be backed up by a lot of examples. The Hive blockchain needs a lot more content consumers. And to reach that, a proper marketing, which is not focused on money earning. Either way, good luck and have fun in Splinterlands.
author | xplosive |
---|---|
permlink | re-slobberchops-20231018t11211163z |
category | hive-129924 |
json_metadata | {"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp","splinterlands"],"app":"ecency/3.0.36-vision","format":"markdown+html"} |
created | 2023-10-18 09:21:12 |
last_update | 2023-10-18 09:22:30 |
depth | 1 |
children | 1 |
last_payout | 2023-10-25 09:21:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.058 HBD |
curator_payout_value | 0.058 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,265 |
author_reputation | 206,122,303,797,123 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,092,648 |
net_rshares | 263,373,103,065 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 263,356,878,759 | 5% | ||
astil.codex | 0 | 16,224,306 | 100% |
> And to reach that, a proper marketing, which is not focused on money earning. I think we all know what happened to that attempt. >This is a very sad example that both in the past and nowadays too are too many content creators If I had known about this author, I would have sent some support. The search facilities on HIVE are as good as they were in the Steemit days. >The player base of Splinterlands also rapidly fallen in the recent past. This results in less demand for the cards. Currently I am in the top 40 000 Bronze players. I remember the time, when the top 100 000 was hard to reach. By the way, I also stopped playing it for a long time. I returned to the game in the previous week. The fact you returned shows promise. Modern = No BOTS. It's still a tough game though, in Bronze. I have tried.
author | slobberchops |
---|---|
permlink | re-xplosive-s2pxba |
category | hive-129924 |
json_metadata | {"tags":["hive-129924"],"app":"peakd/2023.10.1"} |
created | 2023-10-18 09:35:36 |
last_update | 2023-10-18 09:35:36 |
depth | 2 |
children | 0 |
last_payout | 2023-10-25 09:35: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 | 814 |
author_reputation | 2,427,112,030,251,199 |
root_title | "Python Libraries - Easy Splinterlands Card Monitoring" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,092,951 |
net_rshares | 0 |