create account

Python Libraries: Splinterlands SPS Auto-Staker v.1.2 by slobberchops

View this thread on: hive.blogpeakd.comecency.com
· @slobberchops · (edited)
$101.71
Python Libraries: Splinterlands SPS Auto-Staker v.1.2
![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23t76bthV5NpMjKJm8kBLfa3zX68FnVZipA9byXZwZXE4BXw3zLwQ6YxJNmsfx4Abn8mu.png)

In my quest to write something that would make me richer, the thought of compounding my SPS Stake automatically came to mind.

Long ago, the Splinterlands team mentioned they may make this a feature of their site, but it never happened. Before I wrote this, I was manually staking my SPS several times a day, and frankly, it was a pain in the arse.

<center>
![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23tRxJ5KfL9dQWkZTPuHvtxFGd7urGFbZqyepWhHoeoZpmszozhc1xextpm8FBtcMezHS.png)
...***'no need to click 'CLAIM' anymore, though you do need to install Python on your local computer to finally be done with all that'...***
</center>

What better way to get rich than stake my SPS every minute? Think of the compounding, think of yesterday when your SPS was more valuable than today, think of watching the figures decrease over time making you bang your head on the nearest wall and have suicidal thoughts enter your head.

That's a bear market for you. If you can't stand all that shit, then you shouldn't be here. Since writing SPS Stake I have seen the value of my SPS daily income decrease from $9 to around $6. 

It may well go lower, that's life and my head is slightly sore.

	def get_balance(login_resp: dict, currency_token: str):
	    balance: float = 0
	    try:
	        for entry in login_resp.get("balances"):
        	    if currency_token == entry.get("token"):
                	balance = entry.get("balance")
	                break
	    except TypeError:
        	print(Bcolors.RED + f"Node error getting balance, pausing for {delay} seconds.." + Bcolors.END)
	        return 0
	    return balance

<center>***...'@bauloewe's get_balance routine with a little extra improvisation from yours truly'...***</center>

There’s little point in re-inventing the wheel so I looked on GitHub to see if anyone had already written an SPS-Auto Staker. I found some code from @bauloewe from which I extracted some of his routines.

@bauloewe’s and another one I found were written in the days when the Airdrop was active and contained a lot more code than I needed. After wading through the code, I found the parts I needed and merged them into my own.


![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23t7BBrdzmGi6wnSXX46vXkgo23rueE9egbFfj2gqBwpGcGQdDmDDYr9ogL9qiLqkQbDi.png)


I contacted @bauloewe on discord and he kindly allowed me to use his routines after an explanation of what I was doing. I will add @bauloewe as a beneficiary of this post as '*compensation*' although he told me the code was Open Source.

SPS Auto-Staker v.1.2 allows the SPS holder to claim their SPS every xx seconds. I have mine set to 60 which is every minute. Every claim will require Resource Credits (RC’s), so bear this in mind if you want to use the script, have lots of SPS but little Hive Power (HP).

	from pycoingecko import CoinGeckoAPI
	cg = CoinGeckoAPI()

The script is not perfect in any way and gets the SPS price from the hive.engine buybook, while it retrieves the HIVE price using the free CoinGecko API. I wanted to try both methods, and show usage examples of both.

	spsprice = cg.get_price(ids='splinterlands', vs_currencies='usd', include_market_cap='true')
	usdspsprice = spsprice['splinterlands']['usd']

I did find it odd that CoinGecko list SPS as Splinterlands. That threw me off for a while!

After editing the script and changing some variables to your own parameters, run it and it will show you several things. I like my scripts to be colourful, and show lots of data.

![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23tRon8SivKbNCV3DuWMpCZM16cnq5sTQX3iBsRKjWnUVggxyUXphJCEU1FjxinMwSUpz.png)

You will see the total value of your SPS Stake (which could result in severe depression), the approximate value of SPS you can claim per day (in HIVE), and the USD amount based on the HIVE value.

![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23tRr9PkNh5KhPG9vuy1fC9SmaA7MHRJa22ZocNHNPcSxjD9WXNhgtHzrYYLCqHLffoHX.png)
<center>***...'node problems are now caught and will display in the console window. After a minute, the script will resume'...***</center>

I was getting node problems which resulted in frequent TypeError errors when running this script and was forced to add a try: in the Get_Balance function. This seems to have fixed it, and I find it works for hours now.

I am still not convinced that the below code works, and auto-switches if there are node issues.

	nodes = ['https://api.hive.blog', 'https://api.deathwing.me', 'https://anyx.io']
	hive = Hive(node=nodes, keys=[posting_key])
	set_shared_blockchain_instance(hive)

However, most problems go away if you simply re-try. It could be down to the first node in the list being hammered. I still get timeouts and errors with the above so added a try: in one of @bauloewe's routines.

The script is ready to download and run after modifying the variables as follows:

	delay = 60
	posting_key = '5xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
	username = 'your_username'

Ensure that the delay variable is set to how often you want to claim and stake your SPS. As I have a large SPS stash, I can manage around 0.191 SPS every minute.

While that's peanuts now when SPS was 50c a pop that was a mean 9c per minute. Those were the days, and I feel they may never return.


![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23wrC6WuF3giEsmy72mJoSHhntddy7QbWJDkVEJ8dtGBR3JsrcYmWdHTMpSXQe65KaK2S.png)


SPS Auto-Staker v.1.2 can be found on my personal GitHub Repository [here](https://github.com/BrynRogersTHG/HIVE-Blockchain---Hive.Engine-SPS-AutoStake).

Please feel free to comment and criticize my code. I am a beginner Python coder, so don't expect perfection.

**FOOTNOTE:** - Forgot to add @bauloewe as beneficiary and now it won't let me, how annoying. Will send him some HIVE after this pays out.

![RedLine.png](https://files.peakd.com/file/peakd-hive/slobberchops/BqIuXs6C-RedLine.png)

<H6>
 - Earn currency while you play brewing virtual beer with [CryptoBrewMaster](https://www.cryptobrewmaster.io/game/invite?ref=9846a8af82df4dd0bc23192a135df232&code=AlphaBonus)
 - Earn currency while you play and become a global Rock Star with [Rising Star](https://www.risingstargame.com?referrer=slobberchops)
</H6>

<center>
![CurieCurator.jpg](https://files.peakd.com/file/peakd-hive/slobberchops/f5zec6UG-CurieCurator.jpg)
</center>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 729 others
πŸ‘Ž  , , , , ,
properties (23)
authorslobberchops
permlinkpython-libraries-splinterlands-sps-auto-staker-v12
categoryhive-163521
json_metadata{"app":"peakd/2022.12.1","format":"markdown","tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"users":["bauloewe"],"image":["https://files.peakd.com/file/peakd-hive/slobberchops/23t76bthV5NpMjKJm8kBLfa3zX68FnVZipA9byXZwZXE4BXw3zLwQ6YxJNmsfx4Abn8mu.png","https://files.peakd.com/file/peakd-hive/slobberchops/23tRxJ5KfL9dQWkZTPuHvtxFGd7urGFbZqyepWhHoeoZpmszozhc1xextpm8FBtcMezHS.png","https://files.peakd.com/file/peakd-hive/slobberchops/23t7BBrdzmGi6wnSXX46vXkgo23rueE9egbFfj2gqBwpGcGQdDmDDYr9ogL9qiLqkQbDi.png","https://files.peakd.com/file/peakd-hive/slobberchops/23tRon8SivKbNCV3DuWMpCZM16cnq5sTQX3iBsRKjWnUVggxyUXphJCEU1FjxinMwSUpz.png","https://files.peakd.com/file/peakd-hive/slobberchops/23tRr9PkNh5KhPG9vuy1fC9SmaA7MHRJa22ZocNHNPcSxjD9WXNhgtHzrYYLCqHLffoHX.png","https://files.peakd.com/file/peakd-hive/slobberchops/23wrC6WuF3giEsmy72mJoSHhntddy7QbWJDkVEJ8dtGBR3JsrcYmWdHTMpSXQe65KaK2S.png","https://files.peakd.com/file/peakd-hive/slobberchops/BqIuXs6C-RedLine.png","https://files.peakd.com/file/peakd-hive/slobberchops/f5zec6UG-CurieCurator.jpg"]}
created2023-01-05 17:54:00
last_update2023-01-05 17:58:24
depth0
children60
last_payout2023-01-12 17:54:00
cashout_time1969-12-31 23:59:59
total_payout_value50.913 HBD
curator_payout_value50.800 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,557
author_reputation2,426,841,777,894,379
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,639,764
net_rshares247,585,414,632,699
author_curate_reward""
vote details (799)
@bitcoinflood ·
$0.07
Alright this is pretty dope. Auto claim for SPS and as some mentioned GLX is a good time saver but also since each block is 3 seconds it does actully help to continue to stake often! 
πŸ‘  , , , , ,
properties (23)
authorbitcoinflood
permlinkre-slobberchops-202315t13153817z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.30-vision","format":"markdown+html"}
created2023-01-05 18:15:03
last_update2023-01-05 18:15:03
depth1
children2
last_payout2023-01-12 18:15:03
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.034 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation1,645,024,977,979,240
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,640,165
net_rshares169,583,034,363
author_curate_reward""
vote details (6)
@slobberchops ·
$0.07
If it helps me get slightly richer, then I am for it!
πŸ‘  , , , ,
πŸ‘Ž  ,
properties (23)
authorslobberchops
permlinkre-bitcoinflood-ro10bl
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 18:50:09
last_update2023-01-05 18:50:09
depth2
children1
last_payout2023-01-12 18:50:09
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation2,426,841,777,894,379
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,640,879
net_rshares161,513,567,081
author_curate_reward""
vote details (7)
@bitcoinflood ·
properties (23)
authorbitcoinflood
permlinkre-slobberchops-202315t135340786z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/3.0.30-vision","format":"markdown+html"}
created2023-01-05 18:53:42
last_update2023-01-05 18:53:42
depth3
children0
last_payout2023-01-12 18:53:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation1,645,024,977,979,240
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,640,996
net_rshares739,967,292
author_curate_reward""
vote details (4)
@bozz ·
$0.06
Several times a day!  That's nuts!  Who makes that much SPS that they need to claim multiple times per day?  I claim like once per week if that.  Sometimes it's per month.
πŸ‘  , , , ,
properties (23)
authorbozz
permlinkre-slobberchops-ro0y5z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 18:05:00
last_update2023-01-05 18:05:00
depth1
children4
last_payout2023-01-12 18:05:00
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation2,228,855,235,093,369
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,639,950
net_rshares143,272,255,835
author_curate_reward""
vote details (5)
@slobberchops ·
$0.02
Once a minute! Compounding is seriously powerful, if you can do it that frequently (and not be concerned about RC's), then do so.
πŸ‘  , , , , ,
πŸ‘Ž  ,
properties (23)
authorslobberchops
permlinkre-bozz-ro0yd0
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 18:07:48
last_update2023-01-05 18:07:48
depth2
children3
last_payout2023-01-12 18:07:48
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length129
author_reputation2,426,841,777,894,379
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,640,013
net_rshares63,226,646,565
author_curate_reward""
vote details (8)
@bozz ·
$0.04
I don't think my 50 SPS per day is really going to make that big of an impact in the grand scheme of things.  Maybe back when the interest rate was closer to 100% versus 20%.
πŸ‘  , , , ,
properties (23)
authorbozz
permlinkre-slobberchops-ro0z3q
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 18:25:15
last_update2023-01-05 18:25:15
depth3
children2
last_payout2023-01-12 18:25:15
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length174
author_reputation2,228,855,235,093,369
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,640,382
net_rshares96,038,463,631
author_curate_reward""
vote details (5)
@claudio83 ·
$0.04
So far I used the splex.gg tool which has a claim of no less than every hour. Having a claim with shorter times is certainly more convenient. Thank you
πŸ‘  
properties (23)
authorclaudio83
permlinkre-slobberchops-ro32vl
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-06 21:40:36
last_update2023-01-06 21:40:36
depth1
children0
last_payout2023-01-13 21:40:36
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length151
author_reputation1,839,543,038,449,902
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,670,920
net_rshares93,257,454,723
author_curate_reward""
vote details (1)
@eniolw ·
$0.04
Very well!
πŸ‘  
properties (23)
authoreniolw
permlinkre-slobberchops-202315t15463878z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.30-vision","format":"markdown+html"}
created2023-01-05 19:46:09
last_update2023-01-05 19:46:09
depth1
children0
last_payout2023-01-12 19:46:09
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation253,221,053,548,834
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,642,147
net_rshares88,634,302,735
author_curate_reward""
vote details (1)
@felixxx ·
$0.12
Code looks good.
I looked at it for a moment and could not improve anything substantial.

Just to be a smartass:

https://github.com/BrynRogersTHG/HIVE-Blockchain---Hive.Engine-SPS-AutoStake/blob/main/StakeSPS_1.2.py#L130

So, the line 131 is only to print a new line?
Add a ``\n`` for newline, maybe... saves 1 line of code :P

``print(f' - Waiting {delaymins} minutes before staking again...\n')``

As for the the values, that a user would need to configure, I use a ``config.py``.
Then in the main you can ``import config`` and use for example ``config.username``.

Makes the code longer but easier to use for an outsider.

Also maybe mention the requirements (beem, hiveengine, pycoingecko) in the description.

Anyways: If it works, it works.

πŸ‘  , , , , , ,
properties (23)
authorfelixxx
permlinkre-slobberchops-ro1ekf
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 23:57:54
last_update2023-01-05 23:57:54
depth1
children1
last_payout2023-01-12 23:57:54
cashout_time1969-12-31 23:59:59
total_payout_value0.062 HBD
curator_payout_value0.061 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length749
author_reputation214,424,157,741,799
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,647,697
net_rshares296,193,694,616
author_curate_reward""
vote details (7)
@slobberchops ·
>Add a \n for newline, maybe... saves 1 line of code :P

Sad to say I have been doing an intensive Udemy course and have come across this, so I do know about. The printing a blank line is old conventions.

>As for the the values, that a user would need to configure, I use a config.py.
Then in the main you can import config and use for example config.username.

Yes, am familiar with multi-files and importing. The next open source project I will be adding to GitHub is my RandomVoter project. This currently has all the accounts in a single script, but would be better formatted in what you describe above.

>Also maybe mention the requirements (beem, hiveengine, pycoingecko) in the description.

Yes, need to add these to the Readme.MD file.
πŸ‘  
properties (23)
authorslobberchops
permlinkre-felixxx-ro22ie
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-06 08:35:03
last_update2023-01-06 08:35:03
depth2
children0
last_payout2023-01-13 08:35:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length745
author_reputation2,426,841,777,894,379
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,655,294
net_rshares17,556,373
author_curate_reward""
vote details (1)
@hamza-art ·
$0.04
I'm not interested in coding and really don't know something but still enjoyed reading your blog. @saif-ul-wahab I guess its something for you.
πŸ‘  , , , ,
properties (23)
authorhamza-art
permlinkre-slobberchops-ro1a63
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 22:21:12
last_update2023-01-05 22:21:12
depth1
children0
last_payout2023-01-12 22:21:12
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length144
author_reputation3,089,345,137,293
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,645,766
net_rshares97,212,392,669
author_curate_reward""
vote details (5)
@hivebuzz ·
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/payout.png?202301051608"></td><td>You received more than 108000 HP as payout for your posts, comments and curation.<br>Your next payout target is 110000 HP.<br><sub>The unit is Hive Power equivalent because post and comment rewards can be split into HP and HBD</sub></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>


To support your work, I also upvoted your post!


**Check out our last posts:**
<table><tr><td><a href="/hive-122221/@hivebuzz/pum-202212-delegations"><img src="https://images.hive.blog/64x128/https://i.imgur.com/fg8QnBc.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202212-delegations">Our Hive Power Delegations to the December PUM Winners </a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pud-202301-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/xQGM37X.png"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202301-feedback">Feedback from the January Hive Power Up Day</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202212-result"><img src="https://images.hive.blog/64x128/https://i.imgur.com/mzwqdSL.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202212-result">Hive Power Up Month Challenge 2022-12 - Winners List</a></td></tr><tr><td><a href="/hive-139531/@hivebuzz/proposal-2324"><img src="https://images.hive.blog/64x128/https://i.imgur.com/RNIZ1N6.png"></a></td><td><a href="/hive-139531/@hivebuzz/proposal-2324">The Hive Gamification Proposal Renewal</a></td></tr></table>

###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22248%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/248)!
properties (22)
authorhivebuzz
permlinknotify-slobberchops-20230105t182250
categoryhive-163521
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2023-01-05 18:22:51
last_update2023-01-05 18:22:51
depth1
children0
last_payout2023-01-12 18:22:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,120
author_reputation369,203,081,481,287
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,640,309
net_rshares0
@manniman ·
$0.04
Is there a reason for switching between the Hive Engine price of SPS and the CoinGecko price?
πŸ‘  
properties (23)
authormanniman
permlinkre-slobberchops-rokqg5
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.1.1"}
created2023-01-16 10:28:54
last_update2023-01-16 10:28:54
depth1
children0
last_payout2023-01-23 10:28:54
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation77,790,724,868,389
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,920,547
net_rshares69,793,325,929
author_curate_reward""
vote details (1)
@meesterboom ·
$0.09
Every minute!?! That's nuts!

I am going to report you to the Irresponsible JSON police 🀣
πŸ‘  , , , ,
πŸ‘Ž  
properties (23)
authormeesterboom
permlinkro12hi
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2023-01-05 19:36:57
last_update2023-01-05 19:36:57
depth1
children2
last_payout2023-01-12 19:36:57
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.046 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation1,787,715,416,300,742
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,642,014
net_rshares222,112,590,468
author_curate_reward""
vote details (6)
@slobberchops ·
$0.11
LOL, I had it on 2 mins to start, but what the hell. Quicker staking and compounding might offset the massive fall this token has seen in recent months.
πŸ‘  , , , , ,
πŸ‘Ž  ,
properties (23)
authorslobberchops
permlinkre-meesterboom-ro151d
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 20:32:00
last_update2023-01-05 20:32:00
depth2
children1
last_payout2023-01-12 20:32:00
cashout_time1969-12-31 23:59:59
total_payout_value0.056 HBD
curator_payout_value0.056 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length152
author_reputation2,426,841,777,894,379
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,643,227
net_rshares270,544,001,752
author_curate_reward""
vote details (8)
@meesterboom ·
$0.05
It has plummeted a fair whack. I don't think current market sentiment in general for crypto and the splinterlands shenanigans in general have helped!
πŸ‘  , , , ,
πŸ‘Ž  
properties (23)
authormeesterboom
permlinkre-slobberchops-ro17hq
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 21:25:03
last_update2023-01-05 21:25:03
depth3
children0
last_payout2023-01-12 21:25:03
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.027 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation1,787,715,416,300,742
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,644,577
net_rshares132,071,652,877
author_curate_reward""
vote details (6)
@mypathtofire ·
Nice to make your own programs to do that. I know Splex has it built in there too along with GLX.
πŸ‘  , , , ,
properties (23)
authormypathtofire
permlinkre-slobberchops-202315t194425756z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.30-vision","format":"markdown+html"}
created2023-01-05 18:44:24
last_update2023-01-05 18:44:24
depth1
children2
last_payout2023-01-12 18:44:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation606,042,474,505,907
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,640,748
net_rshares48,321,850,834
author_curate_reward""
vote details (5)
@slobberchops ·
>I know Splex has it built in there too along with GLX.

Not sure if this is just for subscribers. I am not a fan of SPLEX, too costly for me. Looks good though.


πŸ‘  , , ,
properties (23)
authorslobberchops
permlinkre-mypathtofire-ro10dn
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 18:51:24
last_update2023-01-05 18:51:24
depth2
children1
last_payout2023-01-12 18:51:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation2,426,841,777,894,379
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,640,914
net_rshares729,490,659
author_curate_reward""
vote details (4)
@mypathtofire ·
I know what you mean, the fees can only increase from here too.
πŸ‘  , , ,
properties (23)
authormypathtofire
permlinkre-slobberchops-202315t195946633z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/3.0.30-vision","format":"markdown+html"}
created2023-01-05 18:59:45
last_update2023-01-05 18:59:45
depth3
children0
last_payout2023-01-12 18:59:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation606,042,474,505,907
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,641,164
net_rshares730,415,677
author_curate_reward""
vote details (4)
@revisesociology ·
$0.09
Have you decided it's not worth selling ATM then?!?
πŸ‘  , , , ,
properties (23)
authorrevisesociology
permlinkre-slobberchops-ro14fo
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 20:19:00
last_update2023-01-05 20:19:00
depth1
children3
last_payout2023-01-12 20:19:00
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.046 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation2,258,699,527,070,784
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,642,856
net_rshares223,538,019,787
author_curate_reward""
vote details (5)
@slobberchops ·
$0.09
Well yes, I considered it and @azircon's comments kind of dissuaded me in the end. I am too invested to sell out, I think that goes for many of us.
πŸ‘  , , , ,
πŸ‘Ž  ,
properties (23)
authorslobberchops
permlinkre-revisesociology-ro153n
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 20:33:21
last_update2023-01-05 20:33:21
depth2
children2
last_payout2023-01-12 20:33:21
cashout_time1969-12-31 23:59:59
total_payout_value0.043 HBD
curator_payout_value0.043 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation2,426,841,777,894,379
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,643,277
net_rshares210,229,457,355
author_curate_reward""
vote details (7)
@revisesociology ·
$0.06
I know what you mean, I'm skimming about 20% out out and then about 20% into Hive and in those pools, but that's waiting to go back into the game. 

I'd be insane not to take something out even now, it's a minor hedge, with 80% being ploughed back in, I mean the whole think could just stay flat, after all. 
πŸ‘  
properties (23)
authorrevisesociology
permlinkre-slobberchops-ro24tf
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-06 09:24:51
last_update2023-01-06 09:24:51
depth3
children1
last_payout2023-01-13 09:24:51
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.028 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length308
author_reputation2,258,699,527,070,784
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,656,078
net_rshares137,053,352,825
author_curate_reward""
vote details (1)
@riccc96 ·
$0.07
Very cool! something similar would be great for GLX too considering the current APR, thank you so much for sharing!
πŸ‘  , , , , ,
properties (23)
authorriccc96
permlinkre-slobberchops-ro0y6n
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 18:04:00
last_update2023-01-05 18:04:00
depth1
children1
last_payout2023-01-12 18:04:00
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation36,328,152,216,671
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,639,928
net_rshares168,625,555,490
author_curate_reward""
vote details (6)
@slobberchops ·
I could and it probably would't take a lot to convert it. In the first thing I would try would be:

	mytoken = 'GLX'

Of course, there are hard-coded references in it for SPS, they would need to be modified. 
πŸ‘  , , ,
properties (23)
authorslobberchops
permlinkre-riccc96-ro0yh7
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 18:10:18
last_update2023-01-05 18:10:18
depth2
children0
last_payout2023-01-12 18:10:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length208
author_reputation2,426,841,777,894,379
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,640,065
net_rshares733,203,167
author_curate_reward""
vote details (4)
@riccc96 ·
Has anyone encountered this error and managed to solve it?
> UnhandledRPCError: missing required posting authority:Missing Posting Authority riccc96Transaction failed to validate using both new (hf26) and legacy serialization
properties (22)
authorriccc96
permlinkre-slobberchops-ro1kkv
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-06 02:07:42
last_update2023-01-06 02:07:42
depth1
children2
last_payout2023-01-13 02:07:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length225
author_reputation36,328,152,216,671
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,649,701
net_rshares0
@felixxx ·
``missing required posting authority`` 

Looks like you are using the wrong key, or username.
πŸ‘  
properties (23)
authorfelixxx
permlinkre-riccc96-ro1ypc
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-06 07:12:54
last_update2023-01-06 07:12:54
depth2
children1
last_payout2023-01-13 07:12:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length93
author_reputation214,424,157,741,799
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,653,965
net_rshares5,886,944,700
author_curate_reward""
vote details (1)
@riccc96 · (edited)
I have no idea why but I think it was related to the version of beem, just ported to 0.24.26 it works perfectly
properties (22)
authorriccc96
permlinkre-felixxx-ro29tw
categoryhive-163521
json_metadata{"tags":"hive-163521"}
created2023-01-06 11:13:09
last_update2023-01-06 11:14:24
depth3
children0
last_payout2023-01-13 11:13:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation36,328,152,216,671
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,657,863
net_rshares0
@riccc96 · (edited)
$0.04
A subtlety that may come in handy for those who, like me, have set a longer delay, or are planning to change it from the basic setting of 60, is the substitution of line 120

> dailyincome = round(price * sps_balance * (24*delay), 2)

with the following

> dailyincome = round(price * sps_balance * (1440/delaymins), 2)
πŸ‘  
properties (23)
authorriccc96
permlinkre-slobberchops-ro2gp9
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-06 13:41:33
last_update2023-01-06 13:43:15
depth1
children0
last_payout2023-01-13 13:41:33
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length319
author_reputation36,328,152,216,671
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,660,640
net_rshares94,141,789,816
author_curate_reward""
vote details (1)
@sm-silva ·
$0.04
Very nice! I changed it a little and now I'm using it in glx
πŸ‘  
properties (23)
authorsm-silva
permlinkro2ttd
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2023-01-06 18:24:51
last_update2023-01-06 18:24:51
depth1
children1
last_payout2023-01-13 18:24:51
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation1,540,305,234,889
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,666,826
net_rshares94,112,014,247
author_curate_reward""
vote details (1)
@slobberchops ·
Awesome, I may add GLX as well as SPS to a future version.
properties (22)
authorslobberchops
permlinkre-sm-silva-ro2wrw
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-06 19:28:45
last_update2023-01-06 19:28:45
depth2
children0
last_payout2023-01-13 19:28:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation2,426,841,777,894,379
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,668,339
net_rshares0
@sperosamuel15 ·
Wow... coding and programming.
Definitely the things I would like to have an idea about but it all gets jabbed in my head that I get as confused as ever seeing them..... Maybe it's because my full interest isn't there. YetπŸ˜“
properties (22)
authorsperosamuel15
permlinkre-slobberchops-202316t3299410z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.30-vision","format":"markdown+html"}
created2023-01-06 02:29:09
last_update2023-01-06 02:29:09
depth1
children0
last_payout2023-01-13 02:29:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length223
author_reputation123,486,466,931,356
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,650,023
net_rshares0
@steevc ·
$0.08
I'm still claiming manually. The amount I could earn on the daily income in a day means it would not make a significant difference to claim more often. With your bigger stake it may be different. It is fun to code this stuff though.

I use the Coingecko API to generate some graphs. I hadn't tried passing multiple nodes to beem though. I have had some node issues, so I ought to try that.

I put my account name and key in a file that I load at the start. As long as I exclude that from Githib it reduces the chances of accidentally exposing my key. 

There's always something to learn.
πŸ‘  , , , ,
πŸ‘Ž  ,
properties (23)
authorsteevc
permlinkre-slobberchops-ro19dr
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 22:05:51
last_update2023-01-05 22:05:51
depth1
children10
last_payout2023-01-12 22:05:51
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.042 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length587
author_reputation1,368,671,974,292,917
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,645,414
net_rshares203,020,898,241
author_curate_reward""
vote details (7)
@slobberchops ·
$0.06
>It is fun to code this stuff though.

That's part of it, to create something semi-useful. RandomVoter is the best thing I have created. I will release it in time.

>I hadn't tried passing multiple nodes to beem though. I have had some node issues, so I ought to try that.

I have been having a lot of node issues recently. Voting, and comments not working. Seems you need to do everything twice.

>As long as I exclude that from Githib it reduces the chances of accidentally exposing my key.

I almost did that earlier. Lucky the code was 'Private' at the time.
πŸ‘  , , , ,
πŸ‘Ž  ,
properties (23)
authorslobberchops
permlinkre-steevc-ro19ql
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 22:13:33
last_update2023-01-05 22:13:33
depth2
children9
last_payout2023-01-12 22:13:33
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.030 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length562
author_reputation2,426,841,777,894,379
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,645,571
net_rshares146,837,952,554
author_curate_reward""
vote details (7)
@sm-silva ·
> I almost did that earlier. Lucky the code was 'Private' at the time.

i have a bad news to you, it's better if you change the posting key
properties (22)
authorsm-silva
permlinkro3es6
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2023-01-07 01:57:45
last_update2023-01-07 01:57:45
depth3
children4
last_payout2023-01-14 01:57:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation1,540,305,234,889
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,675,934
net_rshares0
@steevc ·
$0.08
I have slipped up with exposing other passwords in code before, but nothing bad happened. I think people actually look out for cases of that, so you need to be careful. Got to be security-minded, especially with crypto accounts.

I may try running this some time and see if there's anything I would tweak.
πŸ‘  , , , ,
πŸ‘Ž  ,
properties (23)
authorsteevc
permlinkre-slobberchops-ro1a33
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 22:21:03
last_update2023-01-05 22:21:03
depth3
children3
last_payout2023-01-12 22:21:03
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.041 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length305
author_reputation1,368,671,974,292,917
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,645,759
net_rshares200,785,747,400
author_curate_reward""
vote details (7)
@stemsocial ·
re-slobberchops-python-libraries-splinterlands-sps-auto-staker-v12-20230105t194633835z
<div class='text-justify'> <div class='pull-left'>
 <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div>

Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us!

Please consider delegating to the @stemsocial account (85% of the curation rewards are returned).

You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support.&nbsp;<br />&nbsp;<br />
</div>
properties (22)
authorstemsocial
permlinkre-slobberchops-python-libraries-splinterlands-sps-auto-staker-v12-20230105t194633835z
categoryhive-163521
json_metadata{"app":"STEMsocial"}
created2023-01-05 19:46:33
last_update2023-01-05 19:46:33
depth1
children0
last_payout2023-01-12 19:46:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length565
author_reputation22,903,676,462,363
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,642,154
net_rshares0
@theguruasia ·
$WINE
properties (22)
authortheguruasia
permlinkre-slobberchops-ro1psp
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-06 04:00:18
last_update2023-01-06 04:00:18
depth1
children1
last_payout2023-01-13 04:00:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation72,541,003,040,813
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,651,448
net_rshares0
@wine.bot ·
<center>
<sup>Congratulations, @theguruasia You Successfully Shared <b>0.800</b> <b>WINEX</b> With @slobberchops.</sup>
<sup>You Earned <b>0.800</b> <b>WINEX</b> As Curation Reward.</sup>
<sup>You Utilized <b>4/4</b> Successful Calls.</sup>

<img src="https://images.hive.blog/DQmSWfbie9MTC172sENiA16bsMaz1ofT6AAyTo1ishasrcX/winexcomment.png" alt="wine_logo">

---
<sup>Contact Us : [WINEX Token Discord Channel](https://discord.gg/rS3KzjJDCx)</sup>
<sup>[WINEX Current Market Price](https://hive-engine.com/?p=market&t=WINEX) : <b>0.160</b></sup>
---
<sup>Swap Your <b>Hive <=> Swap.Hive</b> With Industry <b>Lowest Fee (0.1%)</b> : [Click This Link](https://swaphive.github.io/swap/)</sup>
<sup>[Read Latest Updates](https://peakd.com/@hiveupme/posts) Or [Contact Us](https://discord.gg/rS3KzjJDCx)</sup>
</center>
properties (22)
authorwine.bot
permlink20230106t040146178z
categoryhive-163521
json_metadata{"tags":["wine","token","winebot"],"app":"wine-bot/4.0","format":"markdown"}
created2023-01-06 04:01:45
last_update2023-01-06 04:01:45
depth2
children0
last_payout2023-01-13 04:01:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length831
author_reputation8,092,913,767,308
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,651,473
net_rshares0
@themarkymark ·
I setup something similar to auto claim/stake for SPS and GLX.  It also claims SPS Node rewards.  I couldn't imagine clicking those buttons all the time.
πŸ‘  ,
πŸ‘Ž  , , , , , , ,
properties (23)
authorthemarkymark
permlinkre-slobberchops-ro21i1
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-06 08:13:12
last_update2023-01-06 08:13:12
depth1
children10
last_payout2023-01-13 08:13:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length153
author_reputation1,772,876,059,799,861
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,654,932
net_rshares-753,539,924,582
author_curate_reward""
vote details (10)
@slobberchops ·
I don't suppose you know how to claim accumulated SPS in the Tribeldex pools? I can't find any info about it, or find any API info.

![image.png](https://files.peakd.com/file/peakd-hive/slobberchops/23u5XKqV5NY2moaFdzKuKVPwdrMM6tbgg95FitwHJ886WCbeAAP5ZRHXwYsKBBdmRvh6p.png)
πŸ‘  
properties (23)
authorslobberchops
permlinkre-themarkymark-ro22mr
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-06 08:37:39
last_update2023-01-06 08:37:39
depth2
children9
last_payout2023-01-13 08:37:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length274
author_reputation2,426,841,777,894,379
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,655,326
net_rshares14,883,508
author_curate_reward""
vote details (1)
@holoz0r ·
$0.74
I wrote something using Selenium (with Python) which is a library that can interact with webpages. The only problematic element is logging in reliably, and closing all the various pop-up windows that change each and every time there's a new feature. 

Worth a go if you're learning new Python things. 
πŸ‘  , , ,
properties (23)
authorholoz0r
permlinkre-slobberchops-ro5k79
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-08 05:49:57
last_update2023-01-08 05:49:57
depth3
children2
last_payout2023-01-15 05:49:57
cashout_time1969-12-31 23:59:59
total_payout_value0.372 HBD
curator_payout_value0.372 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length301
author_reputation519,068,400,262,069
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,703,339
net_rshares1,745,596,464,487
author_curate_reward""
vote details (4)
@themarkymark ·
I don't have anything in any of the pools, so no I don't.  Have you check for any related custom json broadcasts after you do it manually?
πŸ‘  ,
πŸ‘Ž  , , , , , , , , ,
properties (23)
authorthemarkymark
permlinkre-slobberchops-ro23wd
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-06 09:05:03
last_update2023-01-06 09:05:03
depth3
children5
last_payout2023-01-13 09:05:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation1,772,876,059,799,861
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,655,807
net_rshares-852,605,801,676
author_curate_reward""
vote details (12)
@wwwiebe ·
$0.04
A very efficient and acceptable use of python!
πŸ‘  , , , ,
properties (23)
authorwwwiebe
permlinkre-slobberchops-ro15rw
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2022.12.1"}
created2023-01-05 20:47:57
last_update2023-01-05 20:47:57
depth1
children0
last_payout2023-01-12 20:47:57
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation344,170,916,911,802
root_title"Python Libraries: Splinterlands SPS Auto-Staker v.1.2"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id119,643,709
net_rshares89,401,347,048
author_curate_reward""
vote details (5)