create account

Finding out how does HBD interest work by reviewing code by themarkymark

View this thread on: hive.blogpeakd.comecency.com
· @themarkymark · (edited)
$63.07
Finding out how does HBD interest work by reviewing code
![image.png](https://images.hive.blog/DQmZJmiRFmJARF43xwbN1Zsm5Mk5enHJVEq4DNj9q6bU1R6/image.png)

I mentioned in yesterday's [post](https://leofinance.io/@themarkymark/hbd-now-paying-out-3-interest), you now earn interest (currently 3%) on HBD & HBD savings.

There hasn't been any interest for HBD since I have joined, so I'm going to dive deep into how it works and what you need to know about it by reviewing the code associated with it.  

Hived is the software behind Hive nodes and is what is responsible for calculating and distributing interest.

You can find the Github repo [here](https://gitlab.syncad.com/hive/hive).

Our goal is to answer a few questions to get a better understanding of how HBD interest works.

Some questions off the top of my head 

* Do you earn interest on just savings or both liquid and savings?
* Can you buy a lot of HBD before interest payout?
* How often is interest paid out?
* Do I have to claim interest like rewards?
* What if you don't do any HBD transactions in 30 days?

There are likely other questions, but let's focus on these for now.

These are great questions and are easily answered by looking at the code.  I did a search for **interest** and looked for the portion of the code that handled paying out interest.  It was pretty easy to find and answers our question well.

https://i.imgur.com/lO5JkSn.png

In the libraries/chain/database.cpp file we can see there is a section of code that does pretty much the same thing twice, once for HBD and once for HBD Savings.  It is clear the interest is paid out on both.

---

Let's review the code presented above and see if we can't figure it out.

```
          if( acnt.hbd_seconds > 0 &&
              (acnt.hbd_seconds_last_update - acnt.hbd_last_interest_payment).to_seconds() > HIVE_HBD_INTEREST_COMPOUND_INTERVAL_SEC )
          {
            auto interest = acnt.hbd_seconds / HIVE_SECONDS_PER_YEAR;
            interest *= get_dynamic_global_properties().get_hbd_interest_rate();
            interest /= HIVE_100_PERCENT;
            asset interest_paid(interest.to_uint64(), HBD_SYMBOL);
            acnt.hbd_balance += interest_paid;
            acnt.hbd_seconds = 0;
            acnt.hbd_last_interest_payment = head_block_time();

            if(interest > 0)
              push_virtual_operation( interest_operation( a.name, interest_paid ) );

            modify( get_dynamic_global_properties(), [&]( dynamic_global_property_object& props)
            {
              props.current_hbd_supply += interest_paid;
              props.virtual_supply += interest_paid * get_feed_history().current_median_history;
            } );
          }
```

I'm not going to get too deep here, but I will quickly run through what's happening.

The code first sees if the account has a value greater than 0 in the account's hbd_seconds.  If there is, it further checks if the hbd_seconds_last_update is greater than HIVE_HBD_INTEREST_COMPOUND_INTERVAL_SEC.  

HIVE_HBD_INTEREST_COMPOUND_INTERVAL_SEC is a constant, this means it is not expected to change throughout the code and why it is in capitals.  Let's find this constant in the code and this will answer another one of our questions.

https://i.imgur.com/fD1Tc3J.png

In libraries/protocol/include/hive/protocol/config.hpp we can see HIVE_HBD_INTEREST_COMPOUND_INTERVAL_SEC is defined to `60*60*24*30`.  As this variable represents seconds, we can see we are multiplying by 60 to get minutes, then by 60 to get hours, then by 24 to get days, then finally 30 to get a total of 30 days worth of seconds.

The first statement requires both criteria to be true to continue.  In other words, there has to be more than 0 hbd_seconds on the account and there hasn't been an HBD update in 30 days.

This logic is commonly referred to as a gate, if these two criteria are not met, no further progress in the code is made.

The next section divides the hbd_seconds by another constant that represents how many seconds in a year.  At this point we don't know what hbd_seconds represents.  Let's try to figure this out.

https://i.imgur.com/tQvnphT.png

This portion of the code gives us a good understanding of what hbd_seconds represents.  It is a little difficult to understand, but on line 5215 we can see hbd_seconds gets added to hbd_seconds + hbd balance * how many seconds since the last block update.  This might be a little confusing, so I will use an example.

Let's say you have 100 HBD.  The last update to your HBD balance was 1 hour ago.  You now make another HBD transaction which forces an update to your hbd_seconds field.

Let's say you hbd_seconds is 0 to make things simple.

The code above will take your current hbd_seconds (0) and add to the result of 100 (your hbd balance) * seconds since your last update.  

You can think of this as a timer that keeps track of how much HBD you own and how long you held.  If you held 100 HBD for 29 days, then added 1000 HBD on day 29, your hbd_seconds would largely represent holding 100 HBD for 29 days.  When it is time to pay interest on day 30, you would be paid interest on 100 HBD for 29 days and 1100 HBD for something around 1 day.

This means buying and selling right before an interest payout has little affect on your interest.  We can also deduce that inactive accounts still are earning interest even if they do not do a HBD transaction within the 30 days, the interest will be paid since the last update once a transaction triggers an interest payout.

Continuing on from the main code, we take the interest variable, which represents the fraction of seconds of the year since your last interest, and multiply it by the current hbd interest rate set by witnesses.

This is then turned into a percentage and then an asset object.  This asset (an object that represents a Hive currency) is added to your hbd balance.  Your hbd_seconds counter is reset to 0 and the hbd_last_update time is stamped with the current head block timestamp.

Another gate is defined (also called conditional) to check if you are due any interest.  If so, a virtual operation is created to payout the interest and broadcast it to the blockchain.

The code finally updates the blockchain hbd_supply and virtual supply counters.

Let's review our questions.

### Do you earn interest on just savings or both?

As we discussed, interest is paid out on both.

### Can you buy a lot of HBD before interest payout?

Because both the balance and time held is tracked, you cannot buy HBD before interest payouts and sell it after to game the system.

### How often is interest paid out?

We can see in the code it is set to 30 days, but this can be easily changed with a hard fork.

### Do I have to claim interest like rewards?

As you can see from the code, it is done automatically, what may not have been clear is this is handled whenever you transact with HBD.  If you do not do any HBD transactions your interest will continue to build up and payout when a transaction is made.

### What if you don't do any HBD transactions in 30 days?

All interest owed will be paid out when an HBD transaction is made.  If it is longer than 30 days, you will receive your fair share based on the total time since the last payout.

You can look at hiveblocks.com to find out the current interest rate by looking in the right hand side.  Peakd and Condenser will likely be updated soon to reflect the current interest rate on the wallet page.

https://i.imgur.com/hDgSkdG.png

You can review your hbd balance and interest fields for your account on hiveblocks.com as well.

https://i.imgur.com/RUikmPG.png

I should receive an hbd interest in roughly 10 days.

If you have any other questions about HBD interest, feel free to drop it in the comment section.  Hopefully this helped you understand this change and gave you a little insight in the process.




Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@themarkymark/finding-out-how-does-hbd-interest-work-by-reviewing-code)
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 688 others
πŸ‘Ž  , ,
properties (23)
authorthemarkymark
permlinkfinding-out-how-does-hbd-interest-work-by-reviewing-code
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","hive","hbd","investing","palnet","neoxian","archon","ctp","crypto","leofinance"],"canonical_url":"https://leofinance.io/@themarkymark/finding-out-how-does-hbd-interest-work-by-reviewing-code","links":["https://leofinance.io/@themarkymark/hbd-now-paying-out-3-interest","https://gitlab.syncad.com/hive/hive","https://leofinance.io/@themarkymark/finding-out-how-does-hbd-interest-work-by-reviewing-code"],"image":["https://images.hive.blog/DQmZJmiRFmJARF43xwbN1Zsm5Mk5enHJVEq4DNj9q6bU1R6/image.png","https://i.imgur.com/lO5JkSn.png","https://i.imgur.com/fD1Tc3J.png","https://i.imgur.com/tQvnphT.png","https://i.imgur.com/hDgSkdG.png","https://i.imgur.com/RUikmPG.png"]}
created2021-03-02 15:00:42
last_update2021-03-02 15:56:30
depth0
children78
last_payout2021-03-09 15:00:42
cashout_time1969-12-31 23:59:59
total_payout_value37.226 HBD
curator_payout_value25.841 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7,973
author_reputation1,776,465,847,488,666
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,095
net_rshares141,022,643,572,559
author_curate_reward""
vote details (755)
@akumagai ·
Cheers Marky now I can sleep at night knowing am growing like head on my front yard.

> If you squint your eyes hard enough you can see it grow. And if you wink while squinting you hear them cheer away.


![20210303_070934.jpg](https://images.hive.blog/DQmdKmVrzBUSjzQoFnRGHxnvumshxutBaw2v5Wj9PuCBXQk/20210303_070934.jpg)
properties (22)
authorakumagai
permlinkqpcys1
categoryhive-167922
json_metadata{"image":["https://images.hive.blog/DQmdKmVrzBUSjzQoFnRGHxnvumshxutBaw2v5Wj9PuCBXQk/20210303_070934.jpg"],"app":"hiveblog/0.1"}
created2021-03-02 20:12:03
last_update2021-03-02 20:12:03
depth1
children0
last_payout2021-03-09 20:12: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_length321
author_reputation82,904,549,789,150
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,150,598
net_rshares0
@amr008 ·
Cleared up everything , great detailed explanation . Just one more thing , what all is considered as a HBD transaction ? 

What I know - 

1. Converting HBD to Hive 
2. Selling Hive for HBD

What I am not sure of - 

1. I claim my rewards in HBD , is it a HBD transaction?
2. Sending HBD to others ?

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@amr008/re-themarkymark-5tdykz)
πŸ‘  
properties (23)
authoramr008
permlinkre-themarkymark-5tdykz
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@amr008/re-themarkymark-5tdykz"}
created2021-03-03 04:40:24
last_update2021-03-03 04:40:24
depth1
children2
last_payout2021-03-10 04:40: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_length396
author_reputation61,403,929,105,681
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,156,068
net_rshares0
author_curate_reward""
vote details (1)
@themarkymark ·
anything that makes your HBD or HBD savings go up or down.  I'm not 100% sure sending to yourself works, I can only assume it does.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@themarkymark/re-amr008-74rfmt)
properties (22)
authorthemarkymark
permlinkre-amr008-74rfmt
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@themarkymark/re-amr008-74rfmt"}
created2021-03-03 05:01:48
last_update2021-03-03 05:01:48
depth2
children1
last_payout2021-03-10 05:01:48
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_length228
author_reputation1,776,465,847,488,666
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,156,264
net_rshares0
@amr008 ·
I see.

>  I'm not 100% sure sending to yourself works, I can only assume it does.

Ah after the first month we can pull some data and see what's the case with this .

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@amr008/re-themarkymark-5bg3pg)
properties (22)
authoramr008
permlinkre-themarkymark-5bg3pg
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@amr008/re-themarkymark-5bg3pg"}
created2021-03-03 10:40:57
last_update2021-03-03 10:40:57
depth3
children0
last_payout2021-03-10 10:40: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_length263
author_reputation61,403,929,105,681
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,159,331
net_rshares0
@blockchainyouth ·
I love that it is *almost* similar to how ALGO rewards work with rewards being give on transactions, I know its not completely the same but still. Love it
properties (22)
authorblockchainyouth
permlinkre-themarkymark-qpcq5s
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/\"2021.03.2\""}
created2021-03-02 17:05:51
last_update2021-03-02 17:05:51
depth1
children0
last_payout2021-03-09 17:05: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_length154
author_reputation18,287,503,665,169
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,896
net_rshares0
@chekohler ·
$0.03
This is awesome, a risk-free rate of 3% on a stable coin is solid stuff. 

What I'd like to know is how the interest rate changes when the peg breaks down or up? Will, there be an incentive to up interest if it breaks down, and reduce when it breaks up? 
πŸ‘  ,
properties (23)
authorchekohler
permlinkre-themarkymark-qpcl79
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-03-02 15:18:48
last_update2021-03-02 15:18:48
depth1
children2
last_payout2021-03-09 15:18:48
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length254
author_reputation524,332,427,393,665
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,347
net_rshares99,170,941,491
author_curate_reward""
vote details (2)
@themarkymark ·
HBD Stabilizer will put pressure on keeping HBD at $1.  This is due to the fact it has different actions based on the price.

Interest will encourage more HBD holding, and the HBD Stabilizer will attempt to counteract any shift.

That being said, outside conditions can put a lot of pressure up or down.  For example, SBD spiked to nearly $20 because the Korean exchange Upbit listed STEEM & SBD and many non-steem users bought SBD raising the price, many saw this and fomo'd and jumped on board, this started to snowball until it ultimately hit just short of $20.  At the time there was no SBD Potato or HBD Stabilizer and the HBD supply was only around 1M (I believe at the time).  HBD supply is a lot higher now making this more unlikely, but considerably lower than the peak on Steem.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@themarkymark/re-chekohler-2cl2xe)
πŸ‘  
properties (23)
authorthemarkymark
permlinkre-chekohler-2cl2xe
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@themarkymark/re-chekohler-2cl2xe"}
created2021-03-02 15:24:39
last_update2021-03-02 15:24:39
depth2
children1
last_payout2021-03-09 15:24: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_length888
author_reputation1,776,465,847,488,666
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,406
net_rshares0
author_curate_reward""
vote details (1)
@onthewayout ·
$0.03
I feel that the main driver for traders to treat HBD (or SBD for that matter) like any other coin and not as a stable coin is that exchanges list it in that way.

When you go to to trade HBD on exchanges it is priced in BTC and not the other way around. Take DAI for example, if you see it on Binance it does not display the price of it in BTC but rather the opposite. So traders see that and say "Oh this is a stablecoin worth one USD" and act accordingly.
πŸ‘  ,
properties (23)
authoronthewayout
permlinkre-themarkymark-qpctvh
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/\"2021.03.2\""}
created2021-03-02 18:26:12
last_update2021-03-02 18:26:12
depth3
children0
last_payout2021-03-09 18:26:12
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length457
author_reputation13,205,527,560,619
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,149,055
net_rshares98,836,255,414
author_curate_reward""
vote details (2)
@cmmemes ·
is that 3% per year? and as far as I understand it, it's a compound interest right ?

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@cmmemes/re-themarkymark-67myf9)
properties (22)
authorcmmemes
permlinkre-themarkymark-67myf9
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@cmmemes/re-themarkymark-67myf9"}
created2021-03-02 16:51:18
last_update2021-03-02 16:51:18
depth1
children4
last_payout2021-03-09 16:51: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_length182
author_reputation87,913,808,695,984
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,687
net_rshares0
@themarkymark ·
3% per year, compounded monthly.  Both of these numbers may change in the future.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@themarkymark/re-cmmemes-4bwdud)
πŸ‘  ,
properties (23)
authorthemarkymark
permlinkre-cmmemes-4bwdud
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@themarkymark/re-cmmemes-4bwdud"}
created2021-03-02 17:00:30
last_update2021-03-02 17:00:30
depth2
children3
last_payout2021-03-09 17:00:30
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_length179
author_reputation1,776,465,847,488,666
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,827
net_rshares5,341,855,931
author_curate_reward""
vote details (2)
@cmmemes ·
that's double the inflation rate so I guess it's pretty decent, but a bit higher interest like 4% or 5% might get some outside attention because it's an almost risk free investment. Don't know if that would be feasible though

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@cmmemes/re-themarkymark-4qn1ek)
properties (22)
authorcmmemes
permlinkre-themarkymark-4qn1ek
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@cmmemes/re-themarkymark-4qn1ek"}
created2021-03-02 17:06:00
last_update2021-03-02 17:06:00
depth3
children2
last_payout2021-03-09 17:06: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_length323
author_reputation87,913,808,695,984
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,898
net_rshares0
@dagger212 ·
Awesome!  Thank you for going through all the details.  I'm sure I'm not alone in saying that there is a lot of complexity to this site and this could be a very useful place to "park" assets you want to keep liquid in the future.  Really great stuff!

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@dagger212/re-themarkymark-zqxbn)
properties (22)
authordagger212
permlinkre-themarkymark-zqxbn
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@dagger212/re-themarkymark-zqxbn"}
created2021-03-03 12:23:51
last_update2021-03-03 12:23:51
depth1
children0
last_payout2021-03-10 12:23: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_length349
author_reputation65,134,388,111,142
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,160,453
net_rshares0
@darkflame · (edited)
Thank you for exploring this, I recently increased my HBD holdings because I suspected it was a good move. When HBD hit $4 and was trading higher I still did not sell. Now that there is an HBD fix in play, is there reason to believe HBD will ever be worth more than $1 ?
properties (22)
authordarkflame
permlinkre-themarkymark-qpdplr
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.03.3"}
created2021-03-03 05:51:27
last_update2021-03-03 05:51:48
depth1
children1
last_payout2021-03-10 05:51:27
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_length270
author_reputation91,087,883,279,178
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,156,648
net_rshares0
@themarkymark ·
> Now that there is an HBD fix in play, is there reason to believe HBD will ever be worth more than $1 ?

Only time can tell, HBD Stabilizer will try to keep it around $1 hopefully moving the price action to the Hive token instead.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@themarkymark/re-darkflame-2vdgf6)
properties (22)
authorthemarkymark
permlinkre-darkflame-2vdgf6
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@themarkymark/re-darkflame-2vdgf6"}
created2021-03-03 06:01:54
last_update2021-03-03 06:01:54
depth2
children0
last_payout2021-03-10 06:01: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_length331
author_reputation1,776,465,847,488,666
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,156,744
net_rshares0
@davidmuhammad ·
Luar biasa postingannya
πŸ‘Ž  
properties (23)
authordavidmuhammad
permlinkre-themarkymark-202133t038197z
categoryhive-167922
json_metadata{"tags":["hive-167922","hive","hbd","investing","palnet","neoxian","archon","ctp","crypto","leofinance"],"app":"ecency/3.0.14-mobile","format":"markdown+html"}
created2021-03-02 17:38:03
last_update2021-03-02 17:38:03
depth1
children0
last_payout2021-03-09 17:38: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_length23
author_reputation6,813,184,461,391
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,148,352
net_rshares-4,399,838,443
author_curate_reward""
vote details (1)
@enforcer48 ·
$0.05
Good to know we don’t have to set aside an β€œuntouched balance” for interests. 
πŸ‘  
πŸ‘Ž  
properties (23)
authorenforcer48
permlinkre-themarkymark-qpcpeq
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/\"2021.03.2\""}
created2021-03-02 16:49:39
last_update2021-03-02 16:49:39
depth1
children0
last_payout2021-03-09 16:49:39
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation426,238,777,098,689
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,661
net_rshares207,489,043,429
author_curate_reward""
vote details (2)
@farm-mom · (edited)
Thanks for the info. I never realized HBD collected interest. Your posts are always well written and easy to understand. 
By the way, thanks for all your support on my posts. You have been there for me for quite a while and I really appreciate both your support and sharing your incredible knowledge.
Peace, my friend, hive on.
properties (22)
authorfarm-mom
permlinkqpisqd
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-03-05 23:47:00
last_update2021-03-05 23:49:45
depth1
children2
last_payout2021-03-12 23:47: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_length327
author_reputation229,068,554,632,361
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,203,629
net_rshares0
@themarkymark ·
The HBD interest is very new, it was always possible but it was only recently the witnesses voted in an interest rate for HBD.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@themarkymark/re-farm-mom-6isfoz)
properties (22)
authorthemarkymark
permlinkre-farm-mom-6isfoz
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@themarkymark/re-farm-mom-6isfoz"}
created2021-03-05 23:52:42
last_update2021-03-05 23:52:42
depth2
children1
last_payout2021-03-12 23:52: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_reputation1,776,465,847,488,666
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,203,694
net_rshares0
@farm-mom ·
Ok, that works for me. My son keeps reminding me about holding and skimming the cream off the top. He has us in so many positions it makes my head spin.  De-lease has paid off with some really unbelievable interest rates. So we are just sitting on it.
There is so much money to be made in crypto, it's staggering to me.
So glad I took his advise way back, invested in Bitcoin, then alt coins. At that time, I was completely ignorant, didn't know jack about crypto, just said ok I 'm game. So little investment then, big payoff now. yikes.
properties (22)
authorfarm-mom
permlinkqpiztq
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-03-06 02:20:15
last_update2021-03-06 02:20:15
depth3
children0
last_payout2021-03-13 02:20:15
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_length538
author_reputation229,068,554,632,361
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,205,111
net_rshares0
@fionasfavourites ·
Thank you for this, @themarkymark. A question: every 30 days as opposed to 1x per month on, say 1st or 30th? I ask because pf the power up initiative that @traciyork runs and what impact this could have on folk using HBD to buy Hive. 

TIA
properties (22)
authorfionasfavourites
permlinkre-themarkymark-qpcmo9
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/\"2021.03.1\""}
created2021-03-02 15:50:36
last_update2021-03-02 15:50:36
depth1
children2
last_payout2021-03-09 15:50: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_length239
author_reputation663,608,009,962,283
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,794
net_rshares0
@themarkymark ·
> Thank you for this, @themarkymark. A question: every 30 days as opposed to 1x per month on, say 1st or 30th? I ask because pf the power up initiative that @traciyork runs and what impact this could have on folk using HBD to buy Hive.

It is 30 days as the code works on simple time but may be longer depending on how often you transact with HBD.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@themarkymark/re-fionasfavourites-5vvv36)
properties (22)
authorthemarkymark
permlinkre-fionasfavourites-5vvv36
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@themarkymark/re-fionasfavourites-5vvv36"}
created2021-03-02 15:52:36
last_update2021-03-02 15:52:36
depth2
children1
last_payout2021-03-09 15:52: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_length454
author_reputation1,776,465,847,488,666
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,816
net_rshares0
@fionasfavourites ·
Thanks. 
properties (22)
authorfionasfavourites
permlinkre-themarkymark-qpcn12
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/\"2021.03.1\""}
created2021-03-02 15:58:18
last_update2021-03-02 15:58:18
depth3
children0
last_payout2021-03-09 15:58: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_length8
author_reputation663,608,009,962,283
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,897
net_rshares0
@frankbacon ·
HIVE!D

Appreciate this review.  I've corrected a small oversight thanks to your dive... HIVE Regards!
https://media.giphy.com/media/UrmcEP1OTfcks9yB8g/giphy.gif
πŸ‘Ž  
properties (23)
authorfrankbacon
permlinkqpcmd0
categoryhive-167922
json_metadata{"image":["https://media.giphy.com/media/UrmcEP1OTfcks9yB8g/giphy.gif"],"app":"hiveblog/0.1"}
created2021-03-02 15:43:48
last_update2021-03-02 15:43:48
depth1
children0
last_payout2021-03-09 15:43:48
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_length161
author_reputation38,509,879,409,111
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,712
net_rshares-4,317,634,661
author_curate_reward""
vote details (1)
@grampo ·
Thank you for this comprehensive review. 

I'm pleased to see that the witnesses are working to improve the dynamics of HBD, rather than getting rid of the stablecoin altogether.

The main problem with a mathematically pegged stablecoin is that debt obligations increase the amplitude of the underlying asset, in this case HIVE. When things are going well, the HBD makes them even better, while in hard times, the HBD puts additional downward pressure on the price of HIVE. 

I think that paying this price (increased volatility of HIVE) in exchange for a stablecoin for e-commerce is the right choice for the long term success of Hive. 
properties (22)
authorgrampo
permlinkre-themarkymark-finding-out-how-does-hbd-interest-work-by-reviewing-code-20210304t151516289z
categoryhive-167922
json_metadata{"community":"waivio","app":"waivio/1.0.0","format":"markdown","timeOfPostCreation":1614870919289,"tags":["hive-167922"],"users":[],"links":[],"image":[]}
created2021-03-04 15:15:18
last_update2021-03-04 15:15:18
depth1
children0
last_payout2021-03-11 15:15: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_length637
author_reputation27,902,505,281,195
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,180,309
net_rshares0
@hatoto ·
Where does the interest come from?
properties (22)
authorhatoto
permlinkr5gg50
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2022-01-09 18:17:27
last_update2022-01-09 18:17:27
depth1
children0
last_payout2022-01-16 18:17:27
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_length34
author_reputation99,466,379,497,974
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id109,321,062
net_rshares0
@jarvie ·
Very grateful for this post ... thanks for going over these questions. You're awesome for doing it
properties (22)
authorjarvie
permlinkre-themarkymark-qpcp0v
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/\"2021.03.1\""}
created2021-03-02 16:41:21
last_update2021-03-02 16:41:21
depth1
children2
last_payout2021-03-09 16:41:21
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_length98
author_reputation388,491,264,112,133
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,524
net_rshares0
@themarkymark ·
Not as awesome as this new layout.

https://i.imgur.com/lc56pq1.png

I love it!

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@themarkymark/re-jarvie-55y98b)
properties (22)
authorthemarkymark
permlinkre-jarvie-55y98b
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@themarkymark/re-jarvie-55y98b","image":["https://i.imgur.com/lc56pq1.png"]}
created2021-03-02 16:42:57
last_update2021-03-02 16:42:57
depth2
children1
last_payout2021-03-09 16:42: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_length176
author_reputation1,776,465,847,488,666
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,550
net_rshares0
@jarvie ·
Yeah I love it so much I changed my peakd setting to not use the pop out anymore because I like having that side layout haha
properties (22)
authorjarvie
permlinkre-themarkymark-qpcpb0
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/\"2021.03.1\""}
created2021-03-02 16:47:24
last_update2021-03-02 16:47:24
depth3
children0
last_payout2021-03-09 16:47: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_length124
author_reputation388,491,264,112,133
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,632
net_rshares0
@joanstewart ·
$0.03
Delving in the code, thanks never realized how the interest was calculated, very interesting knowing more, always learning thanks @themarkymark 

@tipu curate
πŸ‘  ,
properties (23)
authorjoanstewart
permlinkre-themarkymark-qpckqa
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-03-02 15:08:36
last_update2021-03-02 15:08:36
depth1
children1
last_payout2021-03-09 15:08:36
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length158
author_reputation394,752,834,948,889
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,204
net_rshares107,128,789,232
author_curate_reward""
vote details (2)
@tipu ·
<a href="https://tipu.online/hive_curator?joanstewart" target="_blank">Upvoted  &#128076;</a> (Mana: 70/112) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
properties (22)
authortipu
permlinkre-re-themarkymark-qpckqa-20210302t150839z
categoryhive-167922
json_metadata"{"app": "beem/0.24.20"}"
created2021-03-02 15:08:42
last_update2021-03-02 15:08:42
depth2
children0
last_payout2021-03-09 15:08: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_length220
author_reputation55,921,946,728,577
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,206
net_rshares0
@klye ·
$0.12
I saw the rolled up bills but was disappointed this wasn't a shitpost about a cocaine party. :(
πŸ‘  ,
properties (23)
authorklye
permlinkre-themarkymark-qpiip1
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.03.5"}
created2021-03-05 20:11:42
last_update2021-03-05 20:11:42
depth1
children0
last_payout2021-03-12 20:11:42
cashout_time1969-12-31 23:59:59
total_payout_value0.106 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation412,341,527,771,769
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,200,942
net_rshares647,256,369,520
author_curate_reward""
vote details (2)
@lpfaust ·
@themarkymark do you know if the 3% paid out monthly or is the interest averaged at 3% APR?
properties (22)
authorlpfaust
permlinkre-themarkymark-qpf00v
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.03.3"}
created2021-03-03 22:34:09
last_update2021-03-03 22:34:09
depth1
children2
last_payout2021-03-10 22:34: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_length92
author_reputation69,268,196,173,999
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,169,100
net_rshares0
@themarkymark ·
3% yearly, compound monthly

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@themarkymark/re-lpfaust-ymkhe)
properties (22)
authorthemarkymark
permlinkre-lpfaust-ymkhe
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@themarkymark/re-lpfaust-ymkhe"}
created2021-03-03 22:41:42
last_update2021-03-03 22:41:42
depth2
children1
last_payout2021-03-10 22:41: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_length124
author_reputation1,776,465,847,488,666
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,169,323
net_rshares0
@lpfaust ·
That's one hell of a fixed income investment.
properties (22)
authorlpfaust
permlinkre-themarkymark-qpf0jk
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.03.3"}
created2021-03-03 22:45:21
last_update2021-03-03 22:45:21
depth3
children0
last_payout2021-03-10 22:45:21
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_length45
author_reputation69,268,196,173,999
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,169,498
net_rshares0
@marki99 ·
Are the HBDs printed out of thin air, or is it hive inflation being converted to HBD similar to post payouts?

What about the DAO rewards? 

afaik, DAO rewards is 10% of hive inflation being converted to HBD at issuance date. 

And I would guess that interest rates are printed out of thin air, without considering hive, am I correct?
properties (22)
authormarki99
permlinkre-themarkymark-qpcrtr
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/\"2021.03.2\""}
created2021-03-02 17:41:54
last_update2021-03-02 17:41:54
depth1
children1
last_payout2021-03-09 17:41: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_length334
author_reputation11,400,723,818,181
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,148,424
net_rshares0
@smooth ·
Interest is out of thin air. However, if the price of HIVE increases over time, which one would normally expect, then HBD has a negative net effect on inflation (it takes more HIVE to create $1 worth of HBD then is returned by converting it, later, at a higher HIVE price). The interest would partially offset that reduced inflation, but likely less than completely.
πŸ‘  
properties (23)
authorsmooth
permlinkqpcttj
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-03-02 18:24:57
last_update2021-03-02 18:24:57
depth2
children0
last_payout2021-03-09 18:24: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_length366
author_reputation253,602,537,834,068
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,149,036
net_rshares14,492,241,545
author_curate_reward""
vote details (1)
@moeknows ·
Nice breakdown. I like being able to see it in the code. Thanks!

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@moeknows/re-themarkymark-68etme)
properties (22)
authormoeknows
permlinkre-themarkymark-68etme
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@moeknows/re-themarkymark-68etme"}
created2021-03-02 17:53:39
last_update2021-03-02 17:53:39
depth1
children0
last_payout2021-03-09 17:53: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_length163
author_reputation40,847,976,512,639
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,148,584
net_rshares0
@moeknows ·
Hey, @themarkymark (or anybody else).  Can you do the reward pool next?  I'm specifically interested in answering the following questions:

Does the reward pool totally exhausted each cycle, or could there be a surplus?

Does upvote value take into account the current size of the reward pool?

That's all can think of right now.




Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@moeknows/re-themarkymark-6fgpxv)
properties (22)
authormoeknows
permlinkre-themarkymark-6fgpxv
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@moeknows/re-themarkymark-6fgpxv"}
created2021-03-04 01:36:15
last_update2021-03-04 01:36:15
depth1
children0
last_payout2021-03-11 01:36:15
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_length431
author_reputation40,847,976,512,639
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,171,669
net_rshares0
@myfreebtc ·
Thank you for the information, I think this touches all the key points!
Of course I find out about this two days after selling some HBD 🀣
Guess I will be accumulating some HBD instead of selling and powering up every week!

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@myfreebtc/re-themarkymark-lpcw5)
πŸ‘  
properties (23)
authormyfreebtc
permlinkre-themarkymark-lpcw5
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@myfreebtc/re-themarkymark-lpcw5"}
created2021-03-02 15:52:15
last_update2021-03-02 15:52:15
depth1
children0
last_payout2021-03-09 15:52:15
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_length321
author_reputation70,233,521,405,158
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,810
net_rshares29,380,060,172
author_curate_reward""
vote details (1)
@natalia-irish ·
First Time to know that
I have to save my hbd and buy more
Thanks

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@natalia-irish/re-themarkymark-5vsutg)
properties (22)
authornatalia-irish
permlinkre-themarkymark-5vsutg
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@natalia-irish/re-themarkymark-5vsutg"}
created2021-03-02 15:30:45
last_update2021-03-02 15:30:45
depth1
children0
last_payout2021-03-09 15:30: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_length169
author_reputation27,204,936,966,647
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,490
net_rshares0
@plantstoplanks ·
I was just asking my pal @nickyhavey some of these questions since he's my usual resource to help me understand in "normie" speak what's going on.  Thanks for the summary at the end to help answer them. πŸ˜‚
πŸ‘  ,
properties (23)
authorplantstoplanks
permlinkre-themarkymark-qpcl8m
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-03-02 15:19:33
last_update2021-03-02 15:19:33
depth1
children1
last_payout2021-03-09 15:19: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_length204
author_reputation173,964,095,883,155
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,356
net_rshares21,228,044,675
author_curate_reward""
vote details (2)
@nickyhavey ·
I would have pointed you to that summary at the end haha! A lot of technical stuff here that goes beyond my knowledge of blockchain tech so glad Marky summarised at the end! 

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@nickyhavey/re-plantstoplanks-22vzq2)
properties (22)
authornickyhavey
permlinkre-plantstoplanks-22vzq2
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@nickyhavey/re-plantstoplanks-22vzq2"}
created2021-03-02 20:43:33
last_update2021-03-02 20:43:33
depth2
children0
last_payout2021-03-09 20:43: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_length277
author_reputation343,022,660,476,683
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,150,983
net_rshares0
@poshbot ·
https://twitter.com/itsjustmarky/status/1366766793189130244
properties (22)
authorposhbot
permlinkre-finding-out-how-does-hbd-interest-work-by-reviewing-code-20210302t150618z
categoryhive-167922
json_metadata"{"app": "beem/0.24.20"}"
created2021-03-02 15:06:18
last_update2021-03-02 15:06:18
depth1
children0
last_payout2021-03-09 15:06: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_length59
author_reputation5,554,335,374,496
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,179
net_rshares0
@poshbot ·
https://twitter.com/bitinvest\_news/status/1366771167227490304
properties (22)
authorposhbot
permlinkre-finding-out-how-does-hbd-interest-work-by-reviewing-code-20210302t152340z
categoryhive-167922
json_metadata"{"app": "beem/0.24.20"}"
created2021-03-02 15:23:39
last_update2021-03-02 15:23:39
depth1
children0
last_payout2021-03-09 15:23: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_length62
author_reputation5,554,335,374,496
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,397
net_rshares0
@poshbot ·
https://twitter.com/itsjustmarky/status/1369308505841238023
properties (22)
authorposhbot
permlinkre-finding-out-how-does-hbd-interest-work-by-reviewing-code-20210309t152609z
categoryhive-167922
json_metadata"{"app": "beem/0.24.20"}"
created2021-03-09 15:26:09
last_update2021-03-09 15:26:09
depth1
children0
last_payout2021-03-16 15:26: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_length59
author_reputation5,554,335,374,496
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,270,881
net_rshares0
@preparedwombat ·
$0.08
This seems to be a fait accompli. Have I not been paying attention to extensive community-wide discussions (beyond just witnesses) debating the pros and cons of this change or did something like that simply not happen?


Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@preparedwombat/re-themarkymark-6ub9t)
πŸ‘  
properties (23)
authorpreparedwombat
permlinkre-themarkymark-6ub9t
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@preparedwombat/re-themarkymark-6ub9t"}
created2021-03-02 15:31:27
last_update2021-03-02 15:31:27
depth1
children4
last_payout2021-03-09 15:31:30
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.041 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length323
author_reputation866,181,757,997,150
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,497
net_rshares297,173,305,489
author_curate_reward""
vote details (1)
@demotruk · (edited)
$0.06
This feature has existed in the consensus rules since basically the beginning of Steem. It was just largely forgotten about after witnesses set Steem Dollar interest to 0 years ago at a time when they were perpetually overvalued.

It has always been the domain of witnesses to decide this value. They could be updating it much more regularly if they wanted to.
πŸ‘  
properties (23)
authordemotruk
permlinkqpd54u
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-03-02 22:29:21
last_update2021-03-02 22:30:36
depth2
children2
last_payout2021-03-09 22:29:21
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_length360
author_reputation279,182,076,424,485
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,152,409
net_rshares204,883,532,596
author_curate_reward""
vote details (1)
@preparedwombat ·
Okay, makes sense in that Hivelandia is effectively a republic rather than a democracy. πŸ˜…

But since it doesn’t need a hard fork, what happens to HBD interest if some witnesses set it to 3% and some don’t?
properties (22)
authorpreparedwombat
permlinkre-demotruk-qpdgiq
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.03.3"}
created2021-03-03 02:35:15
last_update2021-03-03 02:35:15
depth3
children1
last_payout2021-03-10 02:35:15
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_length205
author_reputation866,181,757,997,150
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,154,897
net_rshares0
@neoxian · (edited)
$0.06
Edit:  Ok to be fair, there was this post:
https://hive.blog/hbd/@smooth/why-i-set-my-witness-hbd-interest-rate-parameter-to-3

So was there enough discussion?  Maybe not, but changing the APR is just a witness parameter, it didn't require coding,  and could be changed back to 0 (or any other value) easily.

---------------------------
It didn't happen.  There was a relatively brief discussion on the semi-private mattermost witness channel, Smooth brought up the idea, changed his witness and many others adapted quickly.
πŸ‘  ,
properties (23)
authorneoxian
permlinkqpcvka
categoryhive-167922
json_metadata{"app":"hiveblog/0.1","links":["https://hive.blog/hbd/@smooth/why-i-set-my-witness-hbd-interest-rate-parameter-to-3"]}
created2021-03-02 19:02:36
last_update2021-03-02 19:16:27
depth2
children0
last_payout2021-03-09 19:02:36
cashout_time1969-12-31 23:59:59
total_payout_value0.029 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length525
author_reputation167,513,329,359,448
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id102,149,576
net_rshares214,969,669,605
author_curate_reward""
vote details (2)
@smokiethebear912 ·
Finding out how does English work by reading books!
properties (22)
authorsmokiethebear912
permlinkqpe12a
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-03-03 09:58:57
last_update2021-03-03 09:58:57
depth1
children0
last_payout2021-03-10 09:58: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_length51
author_reputation116,230,902,955
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,158,924
net_rshares0
@smokiethebear912 ·
I guess this explains why the price of HBD suddenly went up after months in the dumps a few weeks ago.
properties (22)
authorsmokiethebear912
permlinkqpe1gb
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-03-03 10:07:24
last_update2021-03-03 10:07:24
depth1
children0
last_payout2021-03-10 10:07: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_length102
author_reputation116,230,902,955
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,159,011
net_rshares0
@softmetal ·
Wow, your post is as stupid as you look like. What can I say? Well, have a stupid day and have a happy nightmare.
properties (22)
authorsoftmetal
permlinkqpdgv1
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-03-03 02:42:36
last_update2021-03-03 02:42:36
depth1
children1
last_payout2021-03-10 02:42: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_length113
author_reputation146,291,910,015,030
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,154,968
net_rshares0
@themarkymark ·
Tell me more, this is fascinating.
properties (22)
authorthemarkymark
permlinkre-softmetal-qpdnco
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.03.3"}
created2021-03-03 05:02:45
last_update2021-03-03 05:02:45
depth2
children0
last_payout2021-03-10 05:02: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_length34
author_reputation1,776,465,847,488,666
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,156,269
net_rshares0
@solymi ·
Thanks this was informative! It is good that you donΒ΄t have to transfer to savings to get the interest :)

Posted via [neoxian.city](https://www.neoxian.city/@solymi/qpdx7d) |  The City of Neoxian
properties (22)
authorsolymi
permlinkqpdx7d
categoryhive-167922
json_metadata{"tags":["neoxian"],"app":"neoxiancity/0.1","canonical_url":"https://www.neoxian.city/@solymi/qpdx7d"}
created2021-03-03 08:35:39
last_update2021-03-03 08:35:39
depth1
children0
last_payout2021-03-10 08:35: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_length196
author_reputation271,682,548,651,156
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries
0.
accounthiveonboard
weight100
1.
accounttipu
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,158,125
net_rshares0
@starstrings01 ·
$0.16
I just checked my peakd wallet. Looks like a 3% interest is given on Hive power as well. 
πŸ‘  
properties (23)
authorstarstrings01
permlinkre-themarkymark-qpcoph
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/\"2021.03.1\""}
created2021-03-02 16:34:30
last_update2021-03-02 16:34:30
depth1
children9
last_payout2021-03-09 16:34:30
cashout_time1969-12-31 23:59:59
total_payout_value0.080 HBD
curator_payout_value0.080 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation942,630,974,283,386
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,406
net_rshares561,614,907,096
author_curate_reward""
vote details (1)
@jarvie ·
$0.05
Yeah peakd.com just updated to show the APR for both tokens. 
As far as hive power that has been there for a while as an incentive to turning your hive liquid tokens into staked hive power. But peakd simply now shares the info on the wallet page now 
πŸ‘  ,
properties (23)
authorjarvie
permlinkre-starstrings01-qpcp7t
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/\"2021.03.1\""}
created2021-03-02 16:45:30
last_update2021-03-02 16:45:30
depth2
children1
last_payout2021-03-09 16:45:30
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length250
author_reputation388,491,264,112,133
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,596
net_rshares178,351,084,097
author_curate_reward""
vote details (2)
@starstrings01 ·
$0.04
Cool... Great job to peakd team.. I hope to see more improvements on peakd.com during the course of the year. 
πŸ‘  
properties (23)
authorstarstrings01
permlinkre-jarvie-qpcpha
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/\"2021.03.2\""}
created2021-03-02 16:51:12
last_update2021-03-02 16:51:12
depth3
children0
last_payout2021-03-09 16:51:12
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation942,630,974,283,386
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,685
net_rshares214,433,840,984
author_curate_reward""
vote details (1)
@preparedwombat ·
That’s really completely different:

https://leofinance.io/@preparedwombat/the-hive-power-you-accrue-for-staking-hive

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@preparedwombat/re-starstrings01-xfkgy)
properties (22)
authorpreparedwombat
permlinkre-starstrings01-xfkgy
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@preparedwombat/re-starstrings01-xfkgy","links":["https://leofinance.io/@preparedwombat/the-hive-power-you-accrue-for-staking-hive"]}
created2021-03-02 16:39:12
last_update2021-03-02 16:39:12
depth2
children4
last_payout2021-03-09 16:39: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_length222
author_reputation866,181,757,997,150
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,502
net_rshares0
@oivas ·
Hey @preparedwombat, I read your article and it was quite informative. Now, my question is will this interest on the HBD be real HBD or would it be accounting for inflation much like Hive Power? Would you know that?
properties (22)
authoroivas
permlinkre-preparedwombat-qpegm9
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.03.3"}
created2021-03-03 15:35:00
last_update2021-03-03 15:35:00
depth3
children2
last_payout2021-03-10 15:35: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_length215
author_reputation138,818,175,757,153
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,162,745
net_rshares0
@starstrings01 ·
Thanks for sharing your content... 
properties (22)
authorstarstrings01
permlinkre-preparedwombat-qpcpdj
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/\"2021.03.2\""}
created2021-03-02 16:48:57
last_update2021-03-02 16:48:57
depth3
children0
last_payout2021-03-09 16:48: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_length35
author_reputation942,630,974,283,386
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,650
net_rshares0
@themarkymark ·
$0.02
That's why we started with 3% for HBD, it's roughly the same as vesting interest (3.22% last I checked).

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@themarkymark/re-starstrings01-4jpsr7)
πŸ‘  , ,
πŸ‘Ž  
properties (23)
authorthemarkymark
permlinkre-starstrings01-4jpsr7
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@themarkymark/re-starstrings01-4jpsr7"}
created2021-03-02 16:44:15
last_update2021-03-02 16:44:15
depth2
children1
last_payout2021-03-09 16:44:15
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_length208
author_reputation1,776,465,847,488,666
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,574
net_rshares99,416,841,859
author_curate_reward""
vote details (4)
@starstrings01 ·
Oh thanks for clarifying
properties (22)
authorstarstrings01
permlinkre-themarkymark-qpcpez
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/\"2021.03.2\""}
created2021-03-02 16:49:48
last_update2021-03-02 16:49:48
depth3
children0
last_payout2021-03-09 16:49:48
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_length24
author_reputation942,630,974,283,386
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,147,666
net_rshares0
@taskmaster4450le ·
$0.15
Thanks for the explanation.  This certainly is a big move by the Witnesses because, you stated, since you joined, there never was interest paid on HBD.

Tangenting a bit, we see the effort to strengthen the peg of HBD to 1 USD through the use of DHF.  Is this move being done as a part of that effort, to try and incentivize people to hold HBD rather than speculate on it?

It seems that we could really use a stablecoin on Hive, which, if my understanding is correct, was the original intention of HBD.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@taskmaster4450le/re-themarkymark-6zrs9d)
πŸ‘  ,
properties (23)
authortaskmaster4450le
permlinkre-themarkymark-6zrs9d
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive","leofinance","hive-167922"],"canonical_url":"https://leofinance.io/@taskmaster4450le/re-themarkymark-6zrs9d"}
created2021-03-02 15:08:45
last_update2021-03-02 15:08:45
depth1
children5
last_payout2021-03-09 15:08:45
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_length610
author_reputation2,179,665,926,483,688
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,207
net_rshares531,516,045,481
author_curate_reward""
vote details (2)
@smokiethebear912 ·
If people/groups are working to move/peg the price of various tokens and currencies, what happens if some of are holders (either openly or secretly) of those tokens and currencies? It appears to be a recipe for shenanigans, putting it lightly. There are no regulators here now, but everything is recorded for all time, and eventually, there will be regulators. Even AI regulators. And they'll be looking back in time and unraveling everybody's participation in, well, everything. Hopefully (although statistically it's very unlikely) there aren't any shenanigans going on.
properties (22)
authorsmokiethebear912
permlinkqpe1cf
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-03-03 10:05:03
last_update2021-03-03 10:05:03
depth2
children0
last_payout2021-03-10 10: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_length572
author_reputation116,230,902,955
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,158,992
net_rshares0
@themarkymark ·
> Tangenting a bit, we see the effort to strengthen the peg of HBD to 1 USD through the use of DHF. Is this move being done as a part of that effort, to try and incentivize people to hold HBD rather than speculate on it?

I believe so, the main goal is to push the price action to the Hive token.  

> It seems that we could really use a stablecoin on Hive, which, if my understanding is correct, was the original intention of HBD.

HBD is a debt instrument (a promise you can trade it in for $1 worth of Hive on some future date of your choosing).  It's goal was to be a stable coin, offering a solid solution for commerce related activities.  For example if I sell a blue widget that I feel is worth $10, I know I can sell it for 10 HBD and don't need to worry about price.  When HBD does not hold closely to $1, that goes out the window.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@themarkymark/re-taskmaster4450le-5jchn4)
πŸ‘  , ,
properties (23)
authorthemarkymark
permlinkre-taskmaster4450le-5jchn4
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@themarkymark/re-taskmaster4450le-5jchn4"}
created2021-03-02 15:14:12
last_update2021-03-02 15:14:12
depth2
children3
last_payout2021-03-09 15:14: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_length947
author_reputation1,776,465,847,488,666
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,284
net_rshares35,967,123,987
author_curate_reward""
vote details (3)
@taskmaster4450le ·
Once again, Hive (steem) was ahead of its time with some of the ideas, but failed in the execution.

Hopefully the HBD and the new project will get the peg back in order.

It would help the establishment of commerce on Hive a great deal if we could peg and hold it.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@taskmaster4450le/re-themarkymark-uq4wf)
πŸ‘  
properties (23)
authortaskmaster4450le
permlinkre-themarkymark-uq4wf
categoryhive-167922
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["hive-167922","leofinance"],"canonical_url":"https://leofinance.io/@taskmaster4450le/re-themarkymark-uq4wf"}
created2021-03-02 15:24:27
last_update2021-03-02 15:24:27
depth3
children2
last_payout2021-03-09 15:24:27
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_length371
author_reputation2,179,665,926,483,688
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,404
net_rshares5,073,975,788
author_curate_reward""
vote details (1)
@thelogicaldude ·
Thanks, that helped allot
properties (22)
authorthelogicaldude
permlinkre-themarkymark-qpcls8
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.01.3"}
created2021-03-02 15:31:21
last_update2021-03-02 15:31:21
depth1
children0
last_payout2021-03-09 15:31:21
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_reputation360,697,150,829,172
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,146,495
net_rshares0
@tradewatchblog ·
Will claiming liquid rewards count as a HBD transaction?
properties (22)
authortradewatchblog
permlinkqpdqc7
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-03-03 06:07:21
last_update2021-03-03 06:07:21
depth1
children1
last_payout2021-03-10 06:07:21
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_length56
author_reputation3,532,607,200,348
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,156,789
net_rshares0
@themarkymark ·
I'm about 99% sure it does, but I haven't tested.
πŸ‘  
properties (23)
authorthemarkymark
permlinkre-tradewatchblog-qpdqhb
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/2021.03.3"}
created2021-03-03 06:10:21
last_update2021-03-03 06:10:21
depth2
children0
last_payout2021-03-10 06:10:21
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_length49
author_reputation1,776,465,847,488,666
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,156,829
net_rshares4,166,411,087
author_curate_reward""
vote details (1)
@victoriabsb ·
Im going to read this like 3 more times and try to understand it to be able to make a post in spanish about it 🀣 
<sub>*there is a reason i went to law school, we dont have math there*</sub>
properties (22)
authorvictoriabsb
permlinkre-themarkymark-qpcr8l
categoryhive-167922
json_metadata{"tags":["hive-167922"],"app":"peakd/\"2021.03.2\""}
created2021-03-02 17:29:15
last_update2021-03-02 17:29:15
depth1
children0
last_payout2021-03-09 17:29:15
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_length190
author_reputation406,477,868,238,198
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,148,206
net_rshares0
@yameen ·
Thanks for the info but I still have a question, I used to keep my HBD for sell on the market, will I get the reward?
properties (22)
authoryameen
permlinkqpeh5y
categoryhive-167922
json_metadata{"app":"hiveblog/0.1"}
created2021-03-03 15:47:27
last_update2021-03-03 15:47:27
depth1
children0
last_payout2021-03-10 15:47:27
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_length117
author_reputation479,958,356,128,078
root_title"Finding out how does HBD interest work by reviewing code"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id102,162,935
net_rshares0