create account

Claiming & Creating Discounted Hive Accounts | Showcase Monday by geekgirl

View this thread on: hive.blogpeakd.comecency.com
· @geekgirl ·
$166.20
Claiming & Creating Discounted Hive Accounts | Showcase Monday
![hiveaccounts.png](https://images.hive.blog/DQmXVtKzkbrJD8eXBogzTmesun5MgwuavXDx8gWNH2HbBcK/hiveaccounts.png)

Hive accounts are not free. Currently, it costs 3 Hive to create a Hive account. The account registration fee is set by witnesses, and this can change based on what witnesses set this parameter to. As Hive prices fluctuate, the cost for creating Hive accounts in USD change too. When Hive prices are high, the USD value of account creating goes up too. In such situations witnesses can act to change to registration fee and still keep Hive account creation fees affordable.

Hive also has discounted account creation tokens. Anybody who has decent amount of RC, can claim these tokens. Transactions on Hive aren't free either. They cost resource credits. The more Hive Power the account has, the more resource credits are available for the account. Since interacting with the blockchain doesn't require too much of resource credits, most of the time resource credits get unused. One of the ways to use them is to claim account creation tokens. 

Some front-end apps like peakD provide options to claim these tokens. We can also claim account creation tokens using Beem. After claiming available tokens, resource credits get depleted and takes few days for RC fully recharge. One RC is full again, we can claim tokens again. Some may choose to automate this process. 

Let's take a look how we can claim accounts using Beem.

```
from beem import Hive
from beem.nodelist import NodeList
from beem.account import Account
from beem.rc import RC
import pprint
import getpass
import time

if __name__ == "__main__":

    nodelist = NodeList()
    nodelist.update_nodes()
    nodes = nodelist.get_hive_nodes()

    wif = getpass.getpass(prompt='Enter your Hive active key:')
    hive = Hive(node=nodes, keys=[wif])

    creator = hive.wallet.getAccountFromPrivateKey(wif)
    creator = Account(creator)

    rc = RC(blockchain_instance=hive)
    current_costs = hive.get_rc_cost(rc.get_resource_count(tx_size=250, new_account_op_count=1, execution_time_count=1))
    current_mana = creator.get_rc_manabar()["current_mana"]
    last_mana = current_mana
    print("Current costs %.2f G RC - current mana %.2f G RC" % (current_costs / 1e9, current_mana / 1e9))
  
    while current_costs + 10 < last_mana:
        hive.claim_account(creator)
        time.sleep(10)
        creator.refresh()
        current_mana = creator.get_rc_manabar()["current_mana"]
        print("Account claimed and %.2f G RC paid." % ((last_mana - current_mana) / 1e9))
        last_mana = current_mana
    
    print("Not enough RC for a claim!")
```

The code will calculate the current resource credits and keeps claiming account creation tokens until there aren't enough resource credits left to claim a token. This way we can claim multiple account creation tokens. 

After having account creation tokens in the account, we can create accounts using these tokens. Let's see how that can be done using Beem.


```
from beem import Hive
from beem.nodelist import NodeList
from beem.account import Account
from beem.rc import RC
import pprint
import getpass
import time

if __name__ == "__main__":

    new_account_name = 'mynewhiveaccount'
    new_account_pass = 'XXXXXXXXXXXXXXXXXXXXXXXXX'

    #if account already exists, throws account exists exception.

    nodelist = NodeList()
    nodelist.update_nodes()
    nodes = nodelist.get_hive_nodes()

    wif = getpass.getpass(prompt="Enter your account creator's Hive active key:")
    hive = Hive(node=nodes, keys=[wif])

    creator = hive.wallet.getAccountFromPrivateKey(wif)
    creator = Account(creator)

    result = hive.create_claimed_account(new_account_name, creator=creator, password=new_account_pass)
    print(result)

    time.sleep(10)

    new_account = Account(new_account_name)
    new_account.print_info()
    
```

As you can see creating claimed accounts is even easier than claiming tokens. Using discounted or free account creation tokens can help apps and front-ends with onboarding new participants without a need to spend a lot of Hive.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@geekgirl/claiming-and-creating-discounted-hive-accounts-or-showcase-monday)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 409 others
properties (23)
authorgeekgirl
permlinkclaiming-and-creating-discounted-hive-accounts-or-showcase-monday
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive","account","rc","beem","python","vyb","proofofbrain","neoxian","ctp","palnet","leofinance"],"canonical_url":"https://leofinance.io/@geekgirl/claiming-and-creating-discounted-hive-accounts-or-showcase-monday","image":["https://images.hive.blog/DQmXVtKzkbrJD8eXBogzTmesun5MgwuavXDx8gWNH2HbBcK/hiveaccounts.png"]}
created2022-02-21 17:05:03
last_update2022-02-21 17:05:03
depth0
children40
last_payout2022-02-28 17:05:03
cashout_time1969-12-31 23:59:59
total_payout_value83.201 HBD
curator_payout_value83.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,237
author_reputation1,586,488,611,824,452
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,681,531
net_rshares144,155,921,223,975
author_curate_reward""
vote details (473)
@alente ·
$0.10
Wow there is always something new to learn. It will take me alittle knowledge on coding to understand this. I am learning about right now. hopefully i can take advantage of this in the future.
Thanks for the great post
👍  
properties (23)
authoralente
permlinkre-geekgirl-r7odcz
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.01.2"}
created2022-02-21 22:05:24
last_update2022-02-21 22:05:24
depth1
children0
last_payout2022-02-28 22:05:24
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.051 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length218
author_reputation3,984,955,344,775
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,690,025
net_rshares88,832,372,913
author_curate_reward""
vote details (1)
@chinito ·
$0.10
That is some good advice and solution to getting more hive accounts created. I would think that 3 HIVE cost would really add up.
👍  
properties (23)
authorchinito
permlinkre-geekgirl-r7od3m
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.01.2"}
created2022-02-21 21:59:45
last_update2022-02-21 21:59:45
depth1
children0
last_payout2022-02-28 21:59:45
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.051 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation185,491,974,675,438
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,689,885
net_rshares88,517,302,551
author_curate_reward""
vote details (1)
@donpapy ·
$0.10
Thank you for explaining this in a digestible way for noobs like me 😄
The more I read people's posts the more I learn, hive is amazing.
👍  
properties (23)
authordonpapy
permlinkre-geekgirl-r7ox5a
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.01.2"}
created2022-02-22 05:12:45
last_update2022-02-22 05:12:45
depth1
children0
last_payout2022-03-01 05:12:45
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.052 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length135
author_reputation1,288,736,587,517
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,699,029
net_rshares91,624,182,865
author_curate_reward""
vote details (1)
@drceeyou ·
$0.10
@geekgirl 

I am a newbie here. I don't think I understand how to claim these tokens you talk about. I am not familiar with code, and those codes have left me confused. Could you shed some more light, please 🥺?
👍  
properties (23)
authordrceeyou
permlinkre-geekgirl-r7o1bk
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.01.2"}
created2022-02-21 17:45:24
last_update2022-02-21 17:45:24
depth1
children2
last_payout2022-02-28 17:45:24
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.050 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation11,549,373,457,481
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,682,673
net_rshares89,110,274,964
author_curate_reward""
vote details (1)
@geekgirl ·
You would need at least about 4-5k HP to claim at least one account claim token. The purpose of these is to let Apps create accounts for free based on how much HP they have.
properties (22)
authorgeekgirl
permlinkr7oqmt
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-02-22 02:52:06
last_update2022-02-22 02:52:06
depth2
children0
last_payout2022-03-01 02:52:06
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_length173
author_reputation1,586,488,611,824,452
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,696,383
net_rshares0
@typebox ·
Same here honestly
properties (22)
authortypebox
permlinkr7o3bs
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-02-21 18:28:42
last_update2022-02-21 18:28:42
depth2
children0
last_payout2022-02-28 18:28: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_length18
author_reputation37,478,817,260,304
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,683,614
net_rshares0
@gratitudemine ·
$0.15
This is quite an education on claiming accounts using Beem. Hive creates opportunities to learn new things and with time, this coding and all will no longer be new, thanks.
👍  
properties (23)
authorgratitudemine
permlinkre-geekgirl-r7q2mu
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.01.2"}
created2022-02-22 20:09:09
last_update2022-02-22 20:09:09
depth1
children0
last_payout2022-03-01 20:09:09
cashout_time1969-12-31 23:59:59
total_payout_value0.076 HBD
curator_payout_value0.076 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation648,545,667,159
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,719,903
net_rshares129,498,111,087
author_curate_reward""
vote details (1)
@harlowjourney ·
You are full of so much interesting information!  I knew there was a software way to create/claim accounts, but, so far, I only made this one and my Splinterlands account for free using ecency, which requires email verification.

I have a comp sci degree from the year *cough*.  I am currently learning Python.  Early days, but, you know, when you know a few languages...

properties (22)
authorharlowjourney
permlinkre-geekgirl-2022223t181756606z
categoryhive-167922
json_metadata{"tags":["hive-167922","hive","account","rc","beem","python","vyb","proofofbrain","neoxian","ctp","palnet","leofinance"],"app":"ecency/3.0.25-mobile","format":"markdown+html"}
created2022-02-24 01:17:57
last_update2022-02-24 01:17:57
depth1
children0
last_payout2022-03-03 01:17:57
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_length373
author_reputation28,179,866,256,451
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,757,410
net_rshares0
@heskay ·
Thanks for sh6this initiative
properties (22)
authorheskay
permlinkre-geekgirl-2022221t183653424z
categoryhive-167922
json_metadata{"tags":["hive","account","rc","beem","python","vyb","proofofbrain","neoxian","ctp","palnet","leofinance"],"app":"ecency/3.0.21-vision","format":"markdown+html"}
created2022-02-21 17:36:54
last_update2022-02-21 17:36:54
depth1
children0
last_payout2022-02-28 17:36: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_length29
author_reputation81,253,609,298,220
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,682,434
net_rshares0
@india-leo ·
Indiaunited Curation 1645463340115
This post has been manually curated by @bhattg from Indiaunited community. Join us on our [Discord Server](https://discord.gg/bGmS2tE). 

Do you know that you can earn a passive income by delegating your Leo power to @india-leo account? We share 100 % of the curation rewards with the delegators. 

<sub>**Please contribute to the community by upvoting this comment and posts made by @indiaunited.**</sub>
properties (22)
authorindia-leo
permlinkindiaunited-1645463340115
categoryhive-167922
json_metadata{"app":"hiveblog/0.1","tags":["hive","account","rc","beem","python","vyb","proofofbrain","neoxian","ctp","palnet","leofinance"]}
created2022-02-21 17:09:00
last_update2022-02-21 17:09:00
depth1
children0
last_payout2022-02-28 17:09:00
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_length405
author_reputation7,347,862,495,964
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,681,641
net_rshares0
@jaydr ·
$0.15
This post is a whole class itself. 
Something New I have to learn.
Thanks @geekgirl 
👍  
properties (23)
authorjaydr
permlinkre-geekgirl-r7psy2
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.01.2"}
created2022-02-22 16:39:42
last_update2022-02-22 16:39:42
depth1
children0
last_payout2022-03-01 16:39:42
cashout_time1969-12-31 23:59:59
total_payout_value0.076 HBD
curator_payout_value0.076 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation142,482,547,816,915
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,713,791
net_rshares129,680,602,773
author_curate_reward""
vote details (1)
@jfang003 ·
$0.21
Just wondering but are the costs of claiming tokens a fixed RC amount or is it variable based on how many people are claiming? Also do you know how much HP is needed to claim an account right now?

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@jfang003/re-geekgirl-4kgt4u)
👍  
properties (23)
authorjfang003
permlinkre-geekgirl-4kgt4u
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@jfang003/re-geekgirl-4kgt4u"}
created2022-02-21 22:56:48
last_update2022-02-21 22:56:48
depth1
children1
last_payout2022-02-28 22:56:48
cashout_time1969-12-31 23:59:59
total_payout_value0.103 HBD
curator_payout_value0.103 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length291
author_reputation630,933,624,767,303
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,691,287
net_rshares177,663,747,414
author_curate_reward""
vote details (1)
@geekgirl ·
Yes, the cost in RC changes. I normally can claim between 9 and 12 tokens. I just ran the script and this is what is showed:
`Current cost 11908.37 G RC - current mana 107380.56 G RC`

I have 58K HP, and looks like that equals to 107380.56 G RC.
properties (22)
authorgeekgirl
permlinkr7or2m
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-02-22 03:01:36
last_update2022-02-22 03:01:36
depth2
children0
last_payout2022-03-01 03:01:36
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_length245
author_reputation1,586,488,611,824,452
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,696,573
net_rshares0
@jimmy.adames ·
$0.22
I learn something new everyday on HIVE, because honestly; I'm noob-centric with a lot of this stuff. Hey, if anyone can show us ways to save some of our HIVE; that's a WIN! Thanks @geekgirl for the knowledge.

![Shared this Post on ListNerds](https://affiliatemarketingparadox.com/pix/SharedOnListNerds2.png)
👍  ,
properties (23)
authorjimmy.adames
permlinkre-geekgirl-r7obv7
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.01.2"}
created2022-02-21 21:33:09
last_update2022-02-21 21:33:09
depth1
children1
last_payout2022-02-28 21:33:09
cashout_time1969-12-31 23:59:59
total_payout_value0.108 HBD
curator_payout_value0.108 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length308
author_reputation321,317,451,537,530
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,689,199
net_rshares188,909,454,824
author_curate_reward""
vote details (2)
@geekgirl ·
$0.03
Thank you Jimmy!
👍  
properties (23)
authorgeekgirl
permlinkr7oqhl
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-02-22 02:48:57
last_update2022-02-22 02:48:57
depth2
children0
last_payout2022-03-01 02:48:57
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation1,586,488,611,824,452
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,696,307
net_rshares24,957,292,333
author_curate_reward""
vote details (1)
@manniman ·
$0.10
So, you just run this python in an IDE?
👍  
properties (23)
authormanniman
permlinkre-geekgirl-r7o7zg
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.01.2"}
created2022-02-21 20:08:45
last_update2022-02-21 20:08:45
depth1
children1
last_payout2022-02-28 20:08:45
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.051 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation77,790,724,868,389
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,686,003
net_rshares88,342,492,821
author_curate_reward""
vote details (1)
@geekgirl ·
$0.04
anywhere the python can be run.
👍  
properties (23)
authorgeekgirl
permlinkr7oquw
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-02-22 02:56:57
last_update2022-02-22 02:56:57
depth2
children0
last_payout2022-03-01 02:56: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_length31
author_reputation1,586,488,611,824,452
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,696,498
net_rshares31,852,208,540
author_curate_reward""
vote details (1)
@manniman ·
$0.15
> creator = hive.wallet.getAccountFromPrivateKey(wif) 

So he's pulling the account by himself. Interesting.
👍  
properties (23)
authormanniman
permlinkre-geekgirl-r7o861
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.01.2"}
created2022-02-21 20:12:42
last_update2022-02-21 20:12:42
depth1
children3
last_payout2022-02-28 20:12:42
cashout_time1969-12-31 23:59:59
total_payout_value0.075 HBD
curator_payout_value0.075 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation77,790,724,868,389
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,686,090
net_rshares130,298,119,729
author_curate_reward""
vote details (1)
@geekgirl ·
$0.04
getting the account based on a private key.
👍  
properties (23)
authorgeekgirl
permlinkr7oqu6
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-02-22 02:56:33
last_update2022-02-22 02:56:33
depth2
children2
last_payout2022-03-01 02:56:33
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_length43
author_reputation1,586,488,611,824,452
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,696,491
net_rshares31,821,364,834
author_curate_reward""
vote details (1)
@manniman ·
That's a very interesting way of doing it. So if you lose your private KEY, your Attacker just has your account as well at the same time.
properties (22)
authormanniman
permlinkre-geekgirl-r7ptry
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.01.2"}
created2022-02-22 16:57:36
last_update2022-02-22 16:57:36
depth3
children1
last_payout2022-03-01 16:57:36
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_length137
author_reputation77,790,724,868,389
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,714,326
net_rshares0
@mimismartypants ·
$0.15
Awesome! I have been wanting to claim extra account tokens for a while now but never have enough RC's I should check again now! Thanks for the reminder!
👍  
properties (23)
authormimismartypants
permlinkre-geekgirl-2022222t102638123z
categoryhive-167922
json_metadata{"tags":["hive-167922","hive","account","rc","beem","python","vyb","proofofbrain","neoxian","ctp","palnet","leofinance"],"app":"ecency/3.0.25-mobile","format":"markdown+html"}
created2022-02-22 08:26:39
last_update2022-02-22 08:26:39
depth1
children0
last_payout2022-03-01 08:26:39
cashout_time1969-12-31 23:59:59
total_payout_value0.076 HBD
curator_payout_value0.075 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length152
author_reputation81,104,231,720,459
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,702,495
net_rshares130,091,951,050
author_curate_reward""
vote details (1)
@nkechi ·
$0.10
Informative post.. I never knew about Beem before now.
👍  
properties (23)
authornkechi
permlinkre-geekgirl-r7ocrh
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.01.2"}
created2022-02-21 21:52:33
last_update2022-02-21 21:52:33
depth1
children0
last_payout2022-02-28 21:52:33
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.051 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation6,183,721,709,496
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,689,720
net_rshares88,429,480,933
author_curate_reward""
vote details (1)
@pele23 ·
$0.10
I have always wondered why people claimed accounts, I did not know there was an earning model behind it. Thanks for the wrap up 
👍  
properties (23)
authorpele23
permlinkre-geekgirl-2022221t203439983z
categoryhive-167922
json_metadata{"tags":["hive-167922","hive","account","rc","beem","python","vyb","proofofbrain","neoxian","ctp","palnet","leofinance"],"app":"ecency/3.0.25-mobile","format":"markdown+html"}
created2022-02-21 19:34:39
last_update2022-02-21 19:34:39
depth1
children0
last_payout2022-02-28 19:34:39
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.050 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length128
author_reputation346,823,305,304,459
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,685,182
net_rshares88,963,351,131
author_curate_reward""
vote details (1)
@rcaine ·
$0.19
I didn't know that.  I have been telling people it is free to join the Hive.  Nobody has ever told me I was wrong.  Thanks for the info.
👍  
properties (23)
authorrcaine
permlinkre-geekgirl-r7qdbe
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.02.2"}
created2022-02-22 23:59:39
last_update2022-02-22 23:59:39
depth1
children1
last_payout2022-03-01 23:59:39
cashout_time1969-12-31 23:59:59
total_payout_value0.095 HBD
curator_payout_value0.095 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation71,492,578,717,582
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,725,707
net_rshares161,419,600,522
author_curate_reward""
vote details (1)
@geekgirl ·
It is free for most people, because others provide services to create accounts. Not sure who is creating accounts for free these days.
properties (22)
authorgeekgirl
permlinkr7qsrx
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-02-23 05:33:33
last_update2022-02-23 05:33:33
depth2
children0
last_payout2022-03-02 05:33: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_length134
author_reputation1,586,488,611,824,452
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,731,947
net_rshares0
@readthisplease ·
$0.15
New day, new information 

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@readthisplease/re-geekgirl-3wsp49)
👍  
properties (23)
authorreadthisplease
permlinkre-geekgirl-3wsp49
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@readthisplease/re-geekgirl-3wsp49"}
created2022-02-22 13:05:36
last_update2022-02-22 13:05:36
depth1
children0
last_payout2022-03-01 13:05:36
cashout_time1969-12-31 23:59:59
total_payout_value0.076 HBD
curator_payout_value0.076 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation728,305,423,576,823
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,708,308
net_rshares129,886,112,240
author_curate_reward""
vote details (1)
@rilo ·
$0.10
Whats the minimum amount needed to start claiming?
👍  
properties (23)
authorrilo
permlinkre-geekgirl-2022221t133817127z
categoryhive-167922
json_metadata{"tags":["hive","account","rc","beem","python","vyb","proofofbrain","neoxian","ctp","palnet","leofinance"],"app":"ecency/3.0.21-vision","format":"markdown+html"}
created2022-02-21 19:38:18
last_update2022-02-21 19:38:18
depth1
children1
last_payout2022-02-28 19:38:18
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.050 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation6,792,842,671,007
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,685,261
net_rshares88,892,979,888
author_curate_reward""
vote details (1)
@geekgirl ·
About 5K HP. Maybe a little more. The cost in RC changes from time to time.
properties (22)
authorgeekgirl
permlinkr7oqsa
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-02-22 02:55:24
last_update2022-02-22 02:55:24
depth2
children0
last_payout2022-03-01 02:55: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_length75
author_reputation1,586,488,611,824,452
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,696,461
net_rshares0
@rocket47 ·
$0.21
This is cool! Could you explain how to generate random "new_account_pass"? Thanks!
👍  ,
properties (23)
authorrocket47
permlinkr7oqc0
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-02-22 02:45:36
last_update2022-02-22 02:45:36
depth1
children2
last_payout2022-03-01 02:45:36
cashout_time1969-12-31 23:59:59
total_payout_value0.106 HBD
curator_payout_value0.104 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation32,091,796,105,847
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,696,255
net_rshares181,227,949,657
author_curate_reward""
vote details (2)
@geekgirl ·
When using above code to create an account, for `new_account_pass" you come up with your own password and it serves as a master key and a phrase to generate the other private keys. The other private keys are generated for you.
properties (22)
authorgeekgirl
permlinkr7or97
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-02-22 03:05:33
last_update2022-02-22 03:05:33
depth2
children1
last_payout2022-03-01 03:05: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_length226
author_reputation1,586,488,611,824,452
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,696,644
net_rshares0
@rocket47 ·
I see. Thank you so much!
properties (22)
authorrocket47
permlinkr7owle
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-02-22 05:00:51
last_update2022-02-22 05:00:51
depth3
children0
last_payout2022-03-01 05:00: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_length25
author_reputation32,091,796,105,847
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,698,811
net_rshares0
@tobetada ·
$0.10
cool!

@tipu curate
👍  
properties (23)
authortobetada
permlinkre-geekgirl-r7o0kp
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2022.01.2"}
created2022-02-21 17:29:09
last_update2022-02-21 17:29:09
depth1
children1
last_payout2022-02-28 17:29:09
cashout_time1969-12-31 23:59:59
total_payout_value0.050 HBD
curator_payout_value0.050 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation596,841,127,072,980
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,682,193
net_rshares88,257,828,749
author_curate_reward""
vote details (1)
@tipu ·
<a href="https://tipu.online/hive_curator?tobetada" target="_blank">Upvoted  &#128076;</a> (Mana: 0/80) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
properties (22)
authortipu
permlinkre-re-geekgirl-r7o0kp-20220221t172919z
categoryhive-167922
json_metadata"{"app": "beem/0.24.26"}"
created2022-02-21 17:29:18
last_update2022-02-21 17:29:18
depth2
children0
last_payout2022-02-28 17:29: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_length215
author_reputation55,902,105,514,997
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,682,203
net_rshares0
@wrestlingdesires ·
$0.10
This is awesome ❤️ Does it need to be run from a vps, or does Beem host the script?
👍  
properties (23)
authorwrestlingdesires
permlinkre-geekgirl-2022221t10532506z
categoryhive-167922
json_metadata{"tags":["hive","account","rc","beem","python","vyb","proofofbrain","neoxian","ctp","palnet","leofinance"],"app":"ecency/3.0.21-vision","format":"markdown+html"}
created2022-02-21 19:05:33
last_update2022-02-21 19:05:33
depth1
children3
last_payout2022-02-28 19:05:33
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.050 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation202,688,216,355,345
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,684,424
net_rshares89,032,299,954
author_curate_reward""
vote details (1)
@geekgirl ·
You can run the code on any computer that can run python. Dependencies would need to be installed first thought.
properties (22)
authorgeekgirl
permlinkr7oqpr
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-02-22 02:53:51
last_update2022-02-22 02:53:51
depth2
children2
last_payout2022-03-01 02:53: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_length112
author_reputation1,586,488,611,824,452
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,696,436
net_rshares0
@wrestlingdesires ·
I've always been curious about python, I might look into it when things settle down for me :) ... But my coding skills are **very** limited 😂
!PIZZA !ALIVE !LOL
properties (22)
authorwrestlingdesires
permlinkre-geekgirl-2022223t82616393z
categoryhive-167922
json_metadata{"tags":["ecency"],"app":"ecency/3.0.21-vision","format":"markdown+html"}
created2022-02-23 17:26:18
last_update2022-02-23 17:26:18
depth3
children1
last_payout2022-03-02 17:26: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_length160
author_reputation202,688,216,355,345
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,747,442
net_rshares0
@ziabutt3836 ·
$0.15
How i can input these codes in beem ?
beem.io website or beem dapp

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@ziabutt3836/re-geekgirl-3yvhtu)
👍  
properties (23)
authorziabutt3836
permlinkre-geekgirl-3yvhtu
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@ziabutt3836/re-geekgirl-3yvhtu"}
created2022-02-22 16:58:36
last_update2022-02-22 16:58:36
depth1
children1
last_payout2022-03-01 16:58:36
cashout_time1969-12-31 23:59:59
total_payout_value0.076 HBD
curator_payout_value0.076 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length164
author_reputation28,677,209,954,943
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,714,362
net_rshares129,293,222,422
author_curate_reward""
vote details (1)
@geekgirl ·
Beem is a python library. You need to know python.
properties (22)
authorgeekgirl
permlinkr7qsp6
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-02-23 05:31:54
last_update2022-02-23 05:31:54
depth2
children0
last_payout2022-03-02 05:31: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_length50
author_reputation1,586,488,611,824,452
root_title"Claiming & Creating Discounted Hive Accounts | Showcase Monday"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id110,731,916
net_rshares0