create account

BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated! by cm-steem

View this thread on: hive.blogpeakd.comecency.com
· @cm-steem · (edited)
$195.02
BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!
<center><img src="https://steemitimages.com/0x0/https://steemitimages.com/DQmT9HNvkaFqa4bW6QsV2o77fvktVBeZ5363WAoyGH2QwVG/image.png" alt="BTS" /></center>

Hey,

This is the third BSIP I've created recently, this BSIP proposes the introduction of an easily queryable coin-age statistic for BSIPs [19](https://steemit.com/bitshares/@cm-steem/bsip-019-updated-draft-introducing-profit-sharing-dividends-to-bitshares-mpa-only) and [20](https://steemit.com/bitshares/@cm-steem/bsip-020-draft-introducing-profit-sharing-dividends-to-bitshares-uia-only-input-would-be-massively-appreciated) which propose the introduction of profit-sharing/dividends for MPAs/UIAs.

Similar to BSIPs [19](https://steemit.com/bitshares/@cm-steem/bsip-019-updated-draft-introducing-profit-sharing-dividends-to-bitshares-mpa-only) and [20](https://steemit.com/bitshares/@cm-steem/bsip-020-draft-introducing-profit-sharing-dividends-to-bitshares-uia-only-input-would-be-massively-appreciated), this BSIP is a draft and [open to community input on the entire contents of the BSIP](https://github.com/grctest/bsips/blob/master/bsip-0021.mdown).

I would massively appreciate any input, including concerns/criticisms.

Long live Bitshares! :D

Best regards,
@cm-steem

---

    BSIP: #021
    Title: Introducing the 'Coin-Age' statistic to Bitshares assets
    Authors: Customminer
    Status: Draft
    Type: Protocol
    Created: 2017-07-03
    Primary Discussion: https://steemit.com/bitshares/@cm-steem/bsip-020-draft-introducing-profit-sharing-dividends-to-bitshares-uia-only-input-would-be-massively-appreciated
    Similar Discussions: N/A
    Replaces: N/A
    Superseded-By: 
    Worker: N/A

# Abstract

Introducing the ability to query the 'Coin-Age' of assets held by individuals upon the BTS DEX.

# Motivation

* There exists no directly queryable 'coin-age' statistic within the Bitshares network.
* Currently, the closest we can get to querying an account's accumulated asset coin-age within the client is query an account's transaction history then calculate the coin-age with an external script.
* There aren't currently any open-source scripts for calculating user asset coin-age.

# Rational

* BSIPs 19 and 20 (Introducing profit-sharing/dividends for MPA(19)/UIA(20)) both reference a non-existent 'coin-age' statistic.
  * Proposed for proportionally distributing profit/dividends based on the length of time an asset has been held in the user's balance within the dividend time period, preventing abuse of the scheduled dividend.
* We have previously experienced market fluctuations/instability caused by publicly scheduled snapshots (users buy immediately before, snapshot, sell immediately afterwards); discouraging similar practices through the inclusion of 'coin-age' in the dividend mechanism could help neutralise this issue.
* Regarding consensus, there hasn't been sufficient discussion for users to voice disagreement against coin-age proposals.
* A legit concern is that if there are a significant quantity of asset holders & transactions to process, that evaluating accumulated_coin_age for all users could be computationally expensive.
* A concern regarding coin-age that this BSIP accounts for is if coins are held longer than the user specified time_period, that the coins start representing more than one of themselves (1 being worth 2 if held 2 times longer than the user input time period).

# Specifications

* For each chunk of a specific asset transfered to an user in the past, enable the easy querying/calculation of each user's accumulated 'coin-age' statistic.
* Possible route:
  * 1. Retrieve list of accounts holding chosen asset
  * 2. Given this list, query the account's current asset holdings (for chosen asset), returning the list of transactions that make up holdings.
  * 3. Evaluate coin-age from list of tx for each eligible asset holder.
  
* Draft coin-age calculation: (very much so example pseudocode, not production code!)
```
let reference_asset = USD; //User input variable
let time_period = 30 days; //User input variable
let accumulated_coin_age = 0;
let reference_time = current_time; //User input variable

if (whitelisted_accounts) {
    let eligible_asset_holders = whitelisted_accounts //whitelist input by user
} else if (blacklisted_accounts) {
    let eligible_asset_holders = asset_holder_list - blacklisted_account_list //blacklist input by user
} else {
    let eligible_asset_holders = asset_holder_list //include all asset holders.
}

for each asset_holder in eligible_asset_holders  {
    for each tx in asset_holdings {
        let tx_balance = current_tx_balance //Get the quantity of coins present in this transaction
        let time_diff = current_date - tx_inbound_date //Get the age of the transaction

        if (time_diff > time_period) {
            accumulated_coin_age += tx_balance //Prevent coins being worth more if held longer than time_period. Increase time_period to provide this functionality.
        } else {
            accumulated_coin_age += ((time_diff/time_period)*tx_balance)
        }
    }
    //Store current asset_holder & accumulated_coin_age in [hashmap|storage] for later referencing
}
```
* Coin-Age based individual-user dividend calculation:
```
if (whitelisted_accounts) {
    let total_eligible_token_supply = assets_held_by_whitelisted_accounts
} else if (blacklisted_accounts) {
    let total_eligible_token_supply = total_supply - assets_held_by_blacklisted_accounts
} else {
    let total_eligible_token_supply = total_supply
}

let total_distributable_tokens = 1000 OPEN.GRC; //quantity & token type set by user

for each asset_holder in coin_age_hashmap {
    dividend_allocation = (accumulated_coin_age/total_eligible_token_supply)*total_distributable_tokens
} 
```

# Discussion

## How does coin-age prevent abuse of BSIPs 19 & 20?

* If we were to perform a scheduled dividend based on a static snapshot of immediate account holdings, users could purchase the asset immediately prior to the scheduled dividend, receive the dividend then sell immediately afterwards, potentially causing market instability/fluctuations around the scheduled dividend.
* We have experienced this form of market instability in the past for protoshares (around past sharedrops) and for BTSX for dns/vote.

## Potential alternatives to 'coin-age' for preventing abuse of a dividend system

* Random snapshot date within sharedrop time period (similar to peerplay's secret snapshot date within possible snapshot range).
  * Downsides: Assets held outwith the moment of snapshot within the snapshot time period are not eligible for receiving dividends.
* Increasing market fees on the days surrounding the scheduled sharedrop? If an UIA has an additionally enabled fee market, a premium fee could be enabled potentially encouraging users to buy the assets earlier in the month & providing longer term asset holders additional profit? Would ony be possible for UIA, not MPA.
* Disabling of market trading in the days surrounding the dividend payment? This would be incresibly heavy handed & potentially scare asset holders, especially if the asset price fluctuaed on external exchanges.
* Entirely disregard any concerns of dividend system abuse? Openledger currently performs regular sharedrops onto Obits holders without taking coin-age into account!

# Summary for Shareholders

* No impact on shareholders, this would simply enable an additional queryable statistic within the Bitshares network for additional functionality proposed in BSIPs 19 and 20 to take advantage of.
* No worker proposal nor bounty proposed yet, simply brainstorming documentation within the community!
* Will be discussed/mentioned in a future BeyondBitcoin hangout.

# Copyright

N/A - Consider this BSIP entirely open-source/MIT-licensed, I am not the originator of the concept of 'coin-age' (several proof-of-stake cryptocurrencies make use of coin-age for finding stakable coins).

# See Also
* [List account balances - Graphene documentation](http://docs.bitshares.org/api/database.html#id8)
* [List account transation history - Graphene documentation]()
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 60 others
properties (23)
authorcm-steem
permlinkbsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated
categorybitshares
json_metadata{"tags":["bitshares","beyondbitcoin","bsip","cryptocurrency","blockchain"],"users":["cm-steem"],"image":["https://steemitimages.com/0x0/https://steemitimages.com/DQmT9HNvkaFqa4bW6QsV2o77fvktVBeZ5363WAoyGH2QwVG/image.png"],"links":["https://steemit.com/bitshares/@cm-steem/bsip-019-updated-draft-introducing-profit-sharing-dividends-to-bitshares-mpa-only","https://steemit.com/bitshares/@cm-steem/bsip-020-draft-introducing-profit-sharing-dividends-to-bitshares-uia-only-input-would-be-massively-appreciated","https://github.com/grctest/bsips/blob/master/bsip-0021.mdown","http://docs.bitshares.org/api/database.html#id8"],"app":"steemit/0.1","format":"markdown"}
created2017-07-05 21:31:30
last_update2017-07-05 21:50:42
depth0
children18
last_payout2017-07-12 21:31:30
cashout_time1969-12-31 23:59:59
total_payout_value160.427 HBD
curator_payout_value34.592 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,115
author_reputation58,522,774,254,119
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,444,844
net_rshares39,158,520,298,803
author_curate_reward""
vote details (124)
@abit ·
Looks not like a consensus change, I think it can be done with a plugin.
properties (22)
authorabit
permlinkre-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-20180719t211657357z
categorybitshares
json_metadata{"tags":["bitshares"],"app":"steemit/0.1"}
created2018-07-19 21:16:57
last_update2018-07-19 21:16:57
depth1
children0
last_payout2018-07-26 21:16: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_length72
author_reputation141,171,499,037,785
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,288,154
net_rshares0
@alireza-tili ·
nice post ,,, you have good blog , Good luck. Comrade
👎  
properties (23)
authoralireza-tili
permlinkre-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-20170705t213300525z
categorybitshares
json_metadata{"tags":["bitshares"],"app":"steemit/0.1"}
created2017-07-05 21:33:12
last_update2017-07-05 21:33:12
depth1
children0
last_payout2017-07-12 21:33: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_length53
author_reputation1,632,570,243,865
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,444,984
net_rshares-2,488,625,766
author_curate_reward""
vote details (1)
@farhanali ·
$0.06
<h1>Informative post keep sharing man that's very usefull me newbie thanks for sharing 😊👍👍👍✌
👍  
properties (23)
authorfarhanali
permlinkre-cm-steem-201776t25918380z
categorybitshares
json_metadata{"tags":"bitshares","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-05 21:59:24
last_update2017-07-05 21:59:24
depth1
children0
last_payout2017-07-12 21:59:24
cashout_time1969-12-31 23:59:59
total_payout_value0.044 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation6,205,200,290,088
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,447,123
net_rshares12,443,128,831
author_curate_reward""
vote details (1)
@full-steem-ahead · (edited)
$0.89
I believe there is some type of coin age value displayed in the BitShares wallet under the vesting panel, or possibly I'm thinking of the witness "withdraw vesting" panel. I've seen something in the wallet GUI I'm sure of it. It may need further development / exposure in the API + docs tho to be useful. This is an unfinished aspect of the API / backend I would support completing, especially since it will augment BSIPs 19 & 20.

Soooooooo glad to see your enthusiasm and thoughtful work on these BSIPs cm! Great job!
👍  
properties (23)
authorfull-steem-ahead
permlinkre-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-20170705t215729137z
categorybitshares
json_metadata{"tags":["bitshares"],"app":"steemit/0.1"}
created2017-07-05 21:57:30
last_update2017-07-05 21:59:39
depth1
children2
last_payout2017-07-12 21:57:30
cashout_time1969-12-31 23:59:59
total_payout_value0.868 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length519
author_reputation30,177,498,572,933
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,446,960
net_rshares179,181,055,169
author_curate_reward""
vote details (1)
@cm-steem ·
Thanks for the input, I'm going to keep writing up BSIPs on ideas that I think could benefit the Bitshares network.

There are a few interesting ideas for BSIPs which were never completed by dan which I think i'll try expanding next.

Also after having written 20 and 21, I've realized that 19/20 might not be properly following the BSIP formatting guide perfectly (formatting changes, moving text about).
properties (22)
authorcm-steem
permlinkre-full-steem-ahead-re-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-20170706t003023746z
categorybitshares
json_metadata{"tags":["bitshares"],"app":"steemit/0.1"}
created2017-07-06 00:30:24
last_update2017-07-06 00:30:24
depth2
children0
last_payout2017-07-13 00:30: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_length405
author_reputation58,522,774,254,119
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,458,593
net_rshares0
@cm-steem ·
![](https://steemitimages.com/DQmehoacAmfj7ftzYyWtohMpS6bPn95tdK79ULqbFqs17YZ/image.png)

Looks like you're right, coin age is shown in this view. It would still be required for the BSIPs 19 & 20 on a larger scale though.
properties (22)
authorcm-steem
permlinkre-full-steem-ahead-re-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-20170707t003246025z
categorybitshares
json_metadata{"tags":["bitshares"],"image":["https://steemitimages.com/DQmehoacAmfj7ftzYyWtohMpS6bPn95tdK79ULqbFqs17YZ/image.png"],"app":"steemit/0.1"}
created2017-07-07 00:32:48
last_update2017-07-07 00:32:48
depth2
children0
last_payout2017-07-14 00:32: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_length221
author_reputation58,522,774,254,119
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,584,354
net_rshares0
@funkit ·
$0.16
I don't understand why coin age should be an issue. There is no such thing in the stock market. If you hold on the ex-date, you are eligible to the dividend.

There are usually fluctuations before and after ex-dates, but not more than the value of the dividend.

So I see no point in this. It is normal market behavior and to be expected.
👍  , ,
properties (23)
authorfunkit
permlinkre-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-201777t2543541z
categorybitshares
json_metadata{"app":"chainbb/0.3","format":"markdown+html","tags":[]}
created2017-07-07 00:54:03
last_update2017-07-07 00:54:03
depth1
children2
last_payout2017-07-14 00:54:03
cashout_time1969-12-31 23:59:59
total_payout_value0.135 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length338
author_reputation9,704,012,486,052
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries
0.
accountchainbb
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,585,886
net_rshares38,858,463,134
author_curate_reward""
vote details (3)
@cm-steem ·
I believe that you should be rewarded a dividend based on the fees collected from the market on the days in which you held your market pegged asset (such as bitUSD) for. If you can just earn the full month's dividend for holding bitUSD at the moment of the scheduled dividend, then there wouldn't be an incentive to hold your FIAT savings long term on the BTS DEX (the primary point of dividends for MPA, encouraging more BTS to be locked up as MPA collateral).

UIA would have the option of whether or not they wanted to enable coin-age in their dividend distribution, OBITS for example doesn't take coin-age into account when they perform a dividend.
properties (22)
authorcm-steem
permlinkre-funkit-re-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-201777t2543541z-20170707t014328052z
categorybitshares
json_metadata{"tags":["bitshares"],"app":"steemit/0.1"}
created2017-07-07 01:43:27
last_update2017-07-07 01:43:27
depth2
children1
last_payout2017-07-14 01:43: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_length652
author_reputation58,522,774,254,119
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,589,561
net_rshares0
@funkit ·
$0.39
I get your point. Incentivizing is fine. But don't let it get in the way for actually paying dividend. It is not common practice in stocks that is the asset class I know best. The way I view this proposal is another delay, which I would be plain, downright boring.
👍  , , , , , , , , ,
properties (23)
authorfunkit
permlinkre-cm-steem-201777t55034941z
categorybitshares
json_metadata{"tags":"bitshares","app":"esteem/1.4.7","format":"markdown+html","community":"esteem"}
created2017-07-07 03:50:39
last_update2017-07-07 03:50:39
depth3
children0
last_payout2017-07-14 03:50:39
cashout_time1969-12-31 23:59:59
total_payout_value0.394 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length264
author_reputation9,704,012,486,052
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,598,966
net_rshares88,943,441,366
author_curate_reward""
vote details (10)
@g-dubs ·
$0.05
Seems like a very reasonable idea. You got my vote.
👍  
properties (23)
authorg-dubs
permlinkre-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-20170705t225148080z
categorybitshares
json_metadata{"tags":["bitshares"],"app":"steemit/0.1"}
created2017-07-05 22:51:45
last_update2017-07-05 22:51:45
depth1
children0
last_payout2017-07-12 22:51:45
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation137,049,031,659,694
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,451,299
net_rshares9,954,503,064
author_curate_reward""
vote details (1)
@hamzaoui ·
Well done post You deserve for getting Upvote from me. I appreciate on it and like it so much . Waiting for your latest post. Keep your good work and steeming on. Let's walk to my blog. I have a latest post. Your upvote is high motivation for me. Almost all Steemians do their best on this site. Keep steeming and earning.
👎  
properties (23)
authorhamzaoui
permlinkre-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-20170705t223503703z
categorybitshares
json_metadata{"tags":["bitshares"],"app":"steemit/0.1"}
created2017-07-05 22:35:03
last_update2017-07-05 22:35:03
depth1
children0
last_payout2017-07-12 22:35:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length322
author_reputation2,667,249,998,202
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,450,026
net_rshares-2,488,625,766
author_curate_reward""
vote details (1)
@johnsmith ·
$4.03
Excellent work, will vote for it. Cheers!
👍  
properties (23)
authorjohnsmith
permlinkre-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-20170705t233458325z
categorybitshares
json_metadata{"tags":["bitshares"],"app":"steemit/0.1"}
created2017-07-05 23:34:54
last_update2017-07-05 23:34:54
depth1
children0
last_payout2017-07-12 23:34:54
cashout_time1969-12-31 23:59:59
total_payout_value4.032 HBD
curator_payout_value0.001 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation22,729,726,767,685
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,454,206
net_rshares811,578,759,650
author_curate_reward""
vote details (1)
@leobliss ·
Nice post
👍  
properties (23)
authorleobliss
permlinkre-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-20170705t220711853z
categorybitshares
json_metadata{"tags":["bitshares"],"app":"steemit/0.1"}
created2017-07-05 22:07:18
last_update2017-07-05 22:07:18
depth1
children0
last_payout2017-07-12 22:07: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_length9
author_reputation527,644,989,697
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,447,755
net_rshares2,488,625,766
author_curate_reward""
vote details (1)
@mostshirleyalysa ·
Great info
properties (22)
authormostshirleyalysa
permlinkre-cm-steem-201776t2557106z
categorybitshares
json_metadata{"tags":"bitshares","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-07-06 09:05:57
last_update2017-07-06 09:05:57
depth1
children0
last_payout2017-07-13 09:05: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_length10
author_reputation29,336,467,470
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,496,992
net_rshares0
@princekayani ·
Great Info
👍  
properties (23)
authorprincekayani
permlinkre-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-20170705t215932161z
categorybitshares
json_metadata{"tags":["bitshares"],"app":"steemit/0.1"}
created2017-07-05 22:00:06
last_update2017-07-05 22:00:06
depth1
children0
last_payout2017-07-12 22:00: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_length10
author_reputation61,289,909,290
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,447,168
net_rshares2,488,625,766
author_curate_reward""
vote details (1)
@shifty0g ·
$0.14
great post keep at it buddy.  Sitting on a few bitshares:P
👍  ,
properties (23)
authorshifty0g
permlinkre-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-20170706t081219589z
categorybitshares
json_metadata{"tags":["bitshares"],"app":"steemit/0.1"}
created2017-07-06 08:12:18
last_update2017-07-06 08:12:18
depth1
children0
last_payout2017-07-13 08:12:18
cashout_time1969-12-31 23:59:59
total_payout_value0.120 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation103,079,298,002
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,492,653
net_rshares28,147,896,223
author_curate_reward""
vote details (2)
@smithmadu ·
http://i.imgur.com/MiSWZ01.jpg
http://i.imgur.com/3NZEVtH.jpg
👍  
properties (23)
authorsmithmadu
permlinkre-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-20170706t072608404z
categorybitshares
json_metadata{"tags":["bitshares"],"image":["http://i.imgur.com/MiSWZ01.jpg","http://i.imgur.com/3NZEVtH.jpg"],"app":"steemit/0.1"}
created2017-07-06 07:25:18
last_update2017-07-06 07:25:18
depth1
children0
last_payout2017-07-13 07:25: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_length61
author_reputation2,136,180,482,005
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,488,992
net_rshares2,488,625,766
author_curate_reward""
vote details (1)
@spaghetti ·
Thx for the memo
👍  
properties (23)
authorspaghetti
permlinkre-cm-steem-bsip-0021-draft-introducing-the-coin-age-statistic-to-bitshares-assets-input-would-be-massively-appreciated-20170705t220812622z
categorybitshares
json_metadata{"tags":["bitshares"],"app":"steemit/0.1"}
created2017-07-05 22:08:15
last_update2017-07-05 22:08:15
depth1
children0
last_payout2017-07-12 22:08: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_length16
author_reputation1,405,203,264,170
root_title"BSIP-0021 Draft - "Introducing the 'Coin-Age' statistic to Bitshares assets" - Input would be massively appreciated!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,447,834
net_rshares2,488,625,766
author_curate_reward""
vote details (1)