So... it took me some time, but I've created a formal BSIP for the topic. It doesn't have an official number yet, I suppose it's going to be number 0017. Will create a PR later today. There are a few points in there that require discussion. Please head over to https://bitsharestalk.org/index.php/topic,23334.0.html to participate. Also, this has become a lot more complex than I initially thought, so this NEEDS a review by community members. --- BSIP: 0017 Title: Revive BitAssets after global settlement Authors: Peter Conrad <conrad@quisquis.de> Status: Draft Type: Protocol Created: 2016-10-27 Discussion: https://bitsharestalk.org/index.php/topic,23334.0.html Copyright: Public Domain # Abstract #BitAssets, i. e. market-pegged assets (MPA) like bitUSD and prediction markets (PM) in BitShares can suffer a "global settlement" event. After global settlement, the asset is effectively rendered useless. This #BSIP proposes a protocol change to enable resolving a global settlement so that affected assets can be "reset" and put to good use again. # Motivation Market-pegged assets, aka #SmartCoins, and to some extent Prediction Markets are among the core features of the BitShares blockchain and as such provide one of our USPs. MPAs can suffer a "black swan" event. A black swan occurs when the least collateralized short position has insufficient collateral to buy back the borrowed SmartCoins at the current feed price. What happens then is that the MPA is tagged with a "settlement price", defined as the collateral ratio of the least collateralized short. All short positions are closed automatically, by collecting sufficient collateral into a settlement pool and paying out the remainder to the short's owners. MPA holders can use the forced settlement operation to receive their share from the settlement pool in exchange for their MPAs. (Actually there's a bug that prevents this currently, but that's the way it is intended to work.) A technically quite similar mechanism is used to settle PMs. In a PM, shorters and holders are betting on the outcome of a specific event. Once the actual outcome has materialized, the PM is settled by setting a settlement price. Both MPAs that have suffered a black swan and PMs that have seen settlement are effectively dead. They can still be transferred or traded, but they can no longer be shorted. Eventually, all significant holders wlll have settled their positions, and some dust will remain scattered all over the place, where the value of the dust position is lower than the fees required to get rid of it. Allowing MPAs and PMs to be revived after a settlement event will greatly increase the usefulness of both types of assets. Increased usefulness will hopefully boost adoption. # Rationale After a global settlement, the value of the unit in question is fixed relative to the underlying asset. This means that any exchange of an amount of the asset in question for the underlying asset at the settlement price does not financially damage the previous owner of the exchanged asset. Reviving bitassets is beneficial for the network as a whole. This justifies decisions in favour of the network, as long as financial damage to anyone is avoided. Any acceptable financial damage must be in the range of rounding errors that are to be expected when dealing with the assets in question. In that regard, the "override_transfer" permission, which usually regulates forced transfers of a bitasset by the issuer, can be ignored for the purpose of reviving an asset. # Specification ## revive_asset operation A new operation will be introduced that performs the revival. The fee for this operation SHOULD be significant, because it is a computationally intensive operation. The operation has a single parameter, the asset to be revived. The operation requires a signature from the asset's issuer authority. The operation can only be invoked under the following conditions: * The asset has a settlement_price, either from a black swan or from an asset_global_settle operation. Note that this is possible only for MPAs and PMs. * The global settlement event has happened at least 28 days ago. This parameter requires further discussion, see below. To execute the operation, all open positions of the asset to be revived are looked up and handled as described below. ## Open Positions and How to Handle Them In the following, SWAN is the asset to be revived. BACK is the asset backing SWAN. ### force_settlement_object Forced settlements have an expiry date. After that date, they are cancelled if the underlying asset has a settlement_price. For SWAN this is the case, so these are resolved automatically after some time. Because "some time" can be quite long though, it is better to resolve this in a quicker way. Resolution: cancel them all at the time of the black swan. This is a softfork. ### limit_order_object Limit orders can either buy or sell SWAN. In the case of a sell, the order holds some amount of SWAN. Sell orders MUST be cancelled to revive the asset. Buy orders SHOULD be cancelled, because the price offered may be based on outdated information. Resolution: Cancel all orders where either the asset to sell or the asset to receive equals SWAN. An index on limit_order_object::price::quote::asset_id will be added to speed up lookups. ### call_order_object Calls on SWAN are resolved when global settlement happens. So at the time of revival none of these exist. However, calls may exist with SWAN as collateral. Suppose that DUCK is an asset that is backed by SWAN. Calls on DUCK cannot be cancelled. Resolution: Modify DUCK to be backed by BACK instead of SWAN. Modify all DUCK calls accordingly. Remove price feeds from DUCK. This solution requires further discussion. ### vesting_balance_object A vesting_balance_object can hold a vesting balance of SWAN for a given account. Vesting balances can vest with different strategies (linear or coin-days). Resolution: for every non-zero vesting balance of SWAN, create (if necessary) a vesting balance for BACK with an equivalent vesting policy and adjust balance and policy parameters accordingly. An index on vesting_balance_object::asset::asset_id will be added to speed up lookups. ### balance_object Balance objects (not to be confused with account_balance objects) contain genesis balances, possibly with linear vesting. This should be a rare case in BitShares-2.0, but it is a possible case and requires resolution. Resolution: all balances of SWAN are replaced with equivalent balances of BACK. An index on balance_object::asset_type will be added to speed up lookups. ### blinded_balance_object Blinded balances are part of the stealth feature of Graphene. A blinded balance has only an asset id, but no (visible) amount. The only visible thing is the total of all blinded balances of that asset type, which is a field in the asset's dynamic data. Resolution: 1. A part of the settlement_fund will be set aside for settling blinded balances. For this, a new object type "blinded_settlement_object" will be introduced that carries the blinded_settlement_fund and the remaining total blinded amount. 2. The blinded_balance_object will receive an additional optional field that may contain a reference to a blinded_settlement_fund. blinded_balances with such a reference may only be withdrawn from, together with other blinded_balances carrying the same reference, but they cannot be transferred anymore. Note: special care needs to be taken in the fee handling here. Using the blinded balance together with the SWAN fee pool must be avoided. Instead, the BACK fee pool must be used (if at all). 3. Upon withdrawal, the amount withdrawn is immediately converted to BACK, from the blinded_settlement_fund. If the amount withdrawn is equal to the total remaining blinded amount, the remaining blinded_settlement_fund is paid out to the withdrawer and the object is deleted. Note that the pair (SWAN, blinded_settlement_object) creates a kind of virtual asset that should not be mixed with "pure" SWAN balances by existing user interfaces. An index on blinded_balance_object::asset_id will be added to speed up lookups. ### blinded_settlement_object This object type does not exist yet. It is introduced by the mechanism to handle blinded SWAN balances, as described above. Resolution: blinded_settlement_objects holding SWAN are immediately converted to BACK. ### account_balance_object This is what holds the actual balances of an account. Each such object refers to a specific account and asset. Account_balances of SWAN can be converted into BACK at any time via the forced settlement feature. Resolution: account balances of SWAN are converted into BACK immediately. ### asset_bitasset_data_object This object defines (among other things) if an asset is in global settlement. Resolution: * pay out remaining settlement_fund to issuer (if any) * nullify settlement_price / force_settled_volume * empty feed list / unset current_feed * empty options.whitelist_authorities and set white_list in options.flags The latter requires discussion. ### asset_dynamic_data_object This object logs the existing amount of SWAN (total and blinded). It also contains the fee pool. Resolution: set accumulated_fees to 0 and adjust current_supply accordingly. The issuer will be compensated for the lost fees by receiving the remainder of the settlement_fund. After all the previous resolutions have been executed, the current_supply and the confidential_supply must be 0. ## Additional changes ### Bugfix: MPAs that have seen a black swan cannot be settled after the price feed expires It has turned out that force-settling an MPA requires a valid price feed even when the MPA has a settlement_price set. This is clearly a bug, since in that case the settlement price is independent from the price feed. Furthermore, publishing price feeds is no longer possible after a black swan, so the time when settlement is possible at all is limited to the expiration period of the price feed of the MPA. This needs to be fixed. See https://github.com/cryptonomex/graphene/issues/664#issuecomment-254056746 for a discussion. ### New chain parameter: minimum_time_before_asset_revival This parameter defines the minimum required time between a global settlement event on an asset and the revival of that same asset. The parameter will be modifiable by the committee and defaults to 4 weeks (28 days). See discussion below. # Discussion ## minimum_time_before_asset_revival A quick cycle of global settlement and revival is likely to cause confusion among an asset's users (holders and shorters). There is even limited potential to abuse this feature. Therefore it is reasonable to enforce a minimum time before revival, allowing users to get informed about the asset's situation and the resolution process that affects them. ## Dependent Assets As described above, assets may exist that use SWAN as collateral. Short positions in such assets must be resolved somehow. The proposed resolution is quite harsh, in that it modifies the asset that uses SWAN as collateral. It is reasonable insofar as SWAN effectively represents the value of a fixed amount of BACK, which means that an asset backed by SWAN is *actually* backed by BACK. The proposed resolution only makes that explicit. There is a related comment in the source code (https://github.com/cryptonomex/graphene/blob/f1b19b15629cd02669a94f2af16eeaec7f54b3f6/libraries/chain/include/graphene/chain/protocol/asset_ops.hpp#L160 ): > If this asset is used as backing for other bitassets, those bitassets will be force settled at their current price. This is not reflected in the actual implementation AFAICS. Better suggestions are welcome. ## Flags and permissions As described above, the revival operation will set the whitelist flag and permission of the revived asset. The purpose of this is to prevent the asset from immediately becoming active again, before the issuer has a chance to modify other asset parameters. For example, after reviving a prediction market, the owner might want to update the asset description before starting the next round of predictions. ## Affected Parties ### Exchanges An exchange holding SWAN will have its SWAN exchanged for BACK just like anyone else. The exchange will probably have SWAN balances in its internal ledgers, which belong to the users of the exchange. The exchange MUST be notified of the settlement and it MUST modify its internal ledger, replacing SWAN balances with BACK balances. Exchanges SHOULD perform this operation independently from the revival, i. e. before the revival is triggered. They can do this by force-settling their SWAN holdings. ### (Other) Users Users holding SWAN will have their holdings replaced with an equivalent amount of BACK, at the settlement_price. This does not damage the holder financially, see above. ### Asset Owners (aka Issuers) The issuer of an asset to be revived should know what he is doing. Invoking the revive_asset operation is a wilful act. If he isn't happy with the effect of the operation he simply should not invoke it. Issuers of assets backed by a revived assets are affected too, but they have no choice. See discussion about Dependent Assets above. # Summary This proposal discusses a set of changes to bring back a "stuck" asset into a usable state. Not all shareholders need to understand the technical details of the proposal, however, they should be aware of the implications of these changes. It is particularly important to understand how the revival of an asset affects the different parties, i. e. holders, shorters, traders and issuers.
author | cyrano |
---|---|
permlink | bsip-revive-bitassets-after-global-settlement |
category | bitshares |
json_metadata | {"tags":["bitshares","beyondbitcoin","BitAssets","BSIP","SmartCoins"],"links":["https://bitsharestalk.org/index.php/topic,23334.0.html","https://github.com/cryptonomex/graphene/issues/664#issuecomment-254056746","https://github.com/cryptonomex/graphene/blob/f1b19b15629cd02669a94f2af16eeaec7f54b3f6/libraries/chain/include/graphene/chain/protocol/asset_ops.hpp#L160"]} |
created | 2016-10-29 10:12:54 |
last_update | 2016-10-29 10:12:54 |
depth | 0 |
children | 13 |
last_payout | 2016-11-29 21:15:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 94.104 HBD |
curator_payout_value | 14.101 HBD |
pending_payout_value | 0.000 HBD |
promoted | 1.000 HBD |
body_length | 13,776 |
author_reputation | 2,476,469,639,719 |
root_title | "BSIP - Revive BitAssets after global settlement" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,645,186 |
net_rshares | 105,488,366,976,656 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
erath | 0 | 637,688,962,489 | 100% | ||
anonymous | 0 | 469,871,374,703 | 100% | ||
hello | 0 | 301,276,495,433 | 100% | ||
world | 0 | 113,214,766,110 | 100% | ||
blocktrades | 0 | 40,202,410,678,010 | 100% | ||
neogen1 | 0 | 626,947,021,494 | 100% | ||
hermes | 0 | 661,447,923,702 | 100% | ||
hermes-miner | 0 | 798,510,670,665 | 100% | ||
thorium1 | 0 | 455,195,710,274 | 100% | ||
thorium2 | 0 | 398,658,229,912 | 100% | ||
fufubar1 | 0 | 121,154,761,559 | 100% | ||
datasecuritynode | 0 | 5,914,201,153,249 | 100% | ||
bunkermining | 0 | 473,230,782,937 | 100% | ||
cyrano | 0 | 395,996,890,481 | 100% | ||
wackou | 0 | 7,367,205,090,995 | 100% | ||
bitshares.org | 0 | 203,746,723,261 | 100% | ||
blockchainbunker | 0 | 134,781,371,759 | 100% | ||
blocktech | 0 | 48,487,642,222 | 100% | ||
neominer2016 | 0 | 12,697,518,451 | 100% | ||
abderus | 0 | 201,861,387,189 | 100% | ||
olympus-steemy | 0 | 8,766,688,124 | 100% | ||
hephaestus | 0 | 223,246,800,496 | 100% | ||
aquarius.com | 0 | 112,232,590,594 | 100% | ||
minosman | 0 | 48,933,306,692 | 100% | ||
aphrodite | 0 | 139,850,833,464 | 100% | ||
hotels.com | 0 | 17,041,193,376 | 100% | ||
aries.com | 0 | 14,068,590,557 | 100% | ||
rabbitminer | 0 | 81,211,302,541 | 100% | ||
insurance.com | 0 | 22,912,314,866 | 100% | ||
fuzzyvest | 0 | 5,888,594,527,303 | 100% | ||
fund.com | 0 | 100,606,837,990 | 100% | ||
friend5 | 0 | 81,979,762,518 | 100% | ||
abit | 0 | 8,113,014,210,331 | 100% | ||
heracles | 0 | 13,492,881,282 | 100% | ||
ihashfury | 0 | 1,188,767,440,586 | 100% | ||
bunkerchainlabs | 0 | 19,989,567,474 | 100% | ||
cyrano.witness | 0 | 806,751,528,254 | 100% | ||
roadscape | 0 | 8,183,502,300,999 | 100% | ||
wang | 0 | 727,660,855,783 | 54% | ||
boy | 0 | 5,653,621,215 | 100% | ||
xeroc | 0 | 1,885,653,362,331 | 100% | ||
bue-witness | 0 | 6,874,571,611 | 100% | ||
bunny | 0 | 1,154,558,037 | 100% | ||
bue | 0 | 105,228,411,993 | 100% | ||
danknugs | 0 | 24,251,798,086 | 100% | ||
tigerminer | 0 | 1,619,597,047 | 100% | ||
mini | 0 | 3,027,654,868 | 100% | ||
moon | 0 | 387,488,161 | 100% | ||
bhuz | 0 | 2,660,956,890,094 | 100% | ||
jason | 0 | 59,605,839,045 | 100% | ||
by24seven | 0 | 10,532,299,757 | 100% | ||
stan | 0 | 121,411,092,281 | 100% | ||
rnglab | 0 | 48,099,188,931 | 100% | ||
steempower | 0 | 1,346,165,656,171 | 100% | ||
twiceuponatime | 0 | 46,025,299,500 | 100% | ||
indominon | 0 | 240,677,912,041 | 100% | ||
officialfuzzy | 0 | 513,435,743,422 | 100% | ||
pairmike | 0 | 154,143,763,097 | 100% | ||
onceuponatime | 0 | 3,694,975,420,028 | 100% | ||
marginal | 0 | 638,107,945,813 | 100% | ||
cass | 0 | 1,046,260,435,327 | 100% | ||
pheonike | 0 | 232,403,405,272 | 100% | ||
proctologic | 0 | 18,585,575,068 | 100% | ||
vault | 0 | 67,617,325,234 | 100% | ||
healthcare | 0 | 1,135,579,734 | 100% | ||
markopaasila | 0 | 159,103,407,843 | 100% | ||
daniel.pan | 0 | 1,780,273,803 | 100% | ||
peerplays | 0 | 200,274,870,537 | 100% | ||
steemrollin | 0 | 813,753,741,531 | 100% | ||
full-steem-ahead | 0 | 54,237,830,828 | 100% | ||
k471 | 0 | 50,525,428,700 | 100% | ||
apollo | 0 | 16,807,324,457 | 100% | ||
athena | 0 | 10,845,382,516 | 100% | ||
steem-samiam | 0 | 43,492,955,691 | 100% | ||
muses | 0 | 1,745,539,806 | 100% | ||
perseus | 0 | 283,335,632 | 100% | ||
fractalnode | 0 | 659,378,797 | 100% | ||
jabberw0cky | 0 | 6,114,786,726 | 100% | ||
kencode | 0 | 547,499,423,519 | 100% | ||
pnc | 0 | 54,602,078,119 | 82% | ||
helen.tan | 0 | 522,967,126 | 100% | ||
mf-tzo | 0 | 46,083,170,163 | 100% | ||
chris4210 | 0 | 139,158,831,247 | 100% | ||
brindleswan | 0 | 16,133,736,297 | 100% | ||
piedpiper | 0 | 129,015,714,085 | 17% | ||
chryspano | 0 | 412,447,119,859 | 100% | ||
ppitonak | 0 | 3,598,602,182 | 100% | ||
vato | 0 | 155,170,065,098 | 100% | ||
cyan91 | 0 | 75,865,580,094 | 100% | ||
thedarkestplum | 0 | 27,472,348,890 | 100% | ||
mranderson | 0 | 10,467,986,478 | 100% | ||
richman | 0 | 47,866,818,994 | 100% | ||
steve-walschot | 0 | 431,030,445,103 | 100% | ||
murh | 0 | 2,145,135,625 | 15.09% | ||
blakemiles84 | 0 | 365,464,423,991 | 100% | ||
cm-steem | 0 | 9,321,562,771 | 100% | ||
juanmiguelsalas | 0 | 24,944,343,267 | 100% | ||
dahaz159 | 0 | 5,559,308,071 | 100% | ||
imyao | 0 | 4,556,056,028 | 100% | ||
kus-knee | 0 | 58,218,193,163 | 100% | ||
tee-em | 0 | 15,624,350,526 | 100% | ||
michaelx | 0 | 38,403,658,880 | 100% | ||
albertogm | 0 | 57,116,754,994 | 100% | ||
primus | 0 | 13,854,392,641 | 100% | ||
mrhankeh | 0 | 629,579,880 | 100% | ||
dasha | 0 | 7,750,501,921 | 100% | ||
roelandp | 0 | 686,067,914,315 | 100% | ||
robrigo | 0 | 287,243,515,019 | 100% | ||
r4fken | 0 | 22,275,114,600 | 100% | ||
snowden | 0 | 113,430,692 | 100% | ||
incomemonthly | 0 | 8,830,053,840 | 100% | ||
biophil | 0 | 7,144,483,402 | 100% | ||
juvyjabian | 0 | 16,154,676,834 | 100% | ||
wildchild | 0 | 117,872,208 | 100% | ||
phenom | 0 | 13,480,011,169 | 100% | ||
tarindel | 0 | 7,831,147,743 | 100% | ||
james212 | 0 | 1,068,873,240,591 | 100% | ||
steemchain | 0 | 70,492,006 | 100% | ||
whalepool | 0 | 52,960,062 | 100% | ||
strictlybusiness | 0 | 1,891,782,971 | 100% | ||
winstonwolfe | 0 | 24,502,510,297 | 100% | ||
steemster1 | 0 | 122,509,764 | 100% | ||
gomeravibz | 0 | 45,378,856,849 | 100% | ||
sharon | 0 | 51,143,991 | 100% | ||
lillianjones | 0 | 50,742,911 | 100% | ||
rawnetics | 0 | 21,609,774,586 | 100% | ||
sunshine | 0 | 25,828,449,060 | 74% | ||
brendio | 0 | 27,106,394,846 | 100% | ||
msjennifer | 0 | 51,143,767 | 100% | ||
ciao | 0 | 50,841,397 | 100% | ||
steemo | 0 | 50,521,096 | 100% | ||
steema | 0 | 50,390,768 | 100% | ||
confucius | 0 | 56,710,736 | 100% | ||
stevescriber | 0 | 184,269,961 | 100% | ||
loli | 0 | 65,297,850 | 100% | ||
mione | 0 | 12,811,545,714 | 100% | ||
jarvis | 0 | 51,166,070 | 100% | ||
fortuner | 0 | 50,692,212 | 100% | ||
thecurator | 0 | 17,889,164,816 | 54% | ||
johnbyrd | 0 | 50,698,107 | 100% | ||
thomasaustin | 0 | 50,682,252 | 100% | ||
thermor | 0 | 50,680,459 | 100% | ||
ficholl | 0 | 50,691,211 | 100% | ||
widell | 0 | 50,673,817 | 100% | ||
revelbrooks | 0 | 50,311,250 | 100% | ||
sethlinson | 0 | 17,853,148,055 | 100% | ||
curpose | 0 | 50,416,427 | 100% | ||
hopefoundation | 0 | 50,466,515 | 100% | ||
takethecannoli | 0 | 14,555,493,081 | 100% | ||
englishtchrivy | 0 | 6,423,978,503 | 50% | ||
nulliusinverba | 0 | 6,449,097,327 | 100% | ||
runridefly | 0 | 2,877,347,330 | 22% | ||
jlufer | 0 | 1,213,876,510 | 100% | ||
troich | 0 | 50,588,612 | 100% | ||
cryptochart | 0 | 50,050,891 | 100% | ||
steemwatch | 0 | 50,612,605 | 100% | ||
crion | 0 | 50,593,879 | 100% | ||
hitherise | 0 | 50,271,139 | 100% | ||
wiss | 0 | 50,262,756 | 100% | ||
l0k1 | 0 | 19,031,265,678 | 100% | ||
stroully | 0 | 51,033,798 | 100% | ||
thadm | 0 | 50,712,038 | 100% | ||
prof | 0 | 50,710,305 | 100% | ||
thecyclist | 0 | 376,986,158,682 | 100% | ||
yorsens | 0 | 50,370,757 | 100% | ||
bane | 0 | 50,065,875 | 100% | ||
vive | 0 | 50,059,754 | 100% | ||
coad | 0 | 50,054,445 | 100% | ||
sofa | 0 | 50,840,303 | 100% | ||
ct-gurus | 0 | 845,009,196 | 100% | ||
mariandavp | 0 | 29,929,679,105 | 100% | ||
tracemayer | 0 | 78,201,563,096 | 100% | ||
ailo | 0 | 50,933,404 | 100% | ||
peskov | 0 | 10,631,174,235 | 100% | ||
inarix03 | 0 | 62,896,559 | 100% | ||
zorrro | 0 | 51,893,190 | 100% | ||
michelle.gent | 0 | 14,622,133,675 | 100% | ||
eavy | 0 | 50,441,122 | 100% | ||
roto | 0 | 50,454,901 | 100% | ||
develcuy | 0 | 5,415,139,595 | 100% | ||
justusagenstum | 0 | 1,533,944,651 | 100% | ||
donchate | 0 | 884,839,875 | 11% | ||
saiku | 0 | 506,640,813 | 11% | ||
ninjapainter | 0 | 56,603,131 | 100% | ||
darkminded153 | 0 | 10,755,357,339 | 100% | ||
igtes | 0 | 58,260,987 | 100% | ||
buffett | 0 | 116,018,659 | 100% | ||
senseye | 0 | 20,418,043,026 | 100% | ||
dhrms | 0 | 770,653,400 | 100% | ||
nataleeoliver | 0 | 8,172,814,986 | 100% | ||
onemyday | 0 | 1,730,866,135 | 100% | ||
dealzgal | 0 | 90,642,085 | 100% | ||
storage | 0 | 81,980,977 | 100% | ||
blackmarket | 0 | 66,810,816 | 100% | ||
gifts | 0 | 55,764,256 | 100% | ||
toddemaher1 | 0 | 362,000,909 | 100% | ||
marialin | 0 | 2,058,432,644 | 100% | ||
ianboil | 0 | 3,346,757,402 | 100% | ||
dropahead | 0 | 132,754,826 | 100% | ||
jejujinfarm | 0 | 225,222,099,772 | 100% | ||
adelja | 0 | 92,804,081 | 100% | ||
chronosamoht | 0 | 281,849,143 | 100% | ||
jfesrom | 0 | 3,564,279,428 | 100% | ||
sandra16 | 0 | 138,876,565 | 100% | ||
zeteticmindset | 0 | 0 | 100% | ||
mjzo | 0 | 0 | 100% |
Thank you very much for dedicating your time towards fixing this issue - I'll let the Gridcoin community know of your hard work! :) Upvoted, resteemed, promoted & followed! Edit: I've posted this to telegram, and will post it to the steem chat - you should consider discussing this in a future beyondbitcoin hangout to let the BTS community know of your BSIP. Double edit: You should include at least one image (BTS in this case) so that the post has a thumbnail in the feed - it'll draw users attention.
author | cm-steem |
---|---|
permlink | re-cyrano-bsip-revive-bitassets-after-global-settlement-20161029t122415518z |
category | bitshares |
json_metadata | {"tags":["bitshares"]} |
created | 2016-10-29 12:24:15 |
last_update | 2016-10-29 12:28:06 |
depth | 1 |
children | 4 |
last_payout | 2016-11-29 21:15:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.091 HBD |
curator_payout_value | 0.029 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 507 |
author_reputation | 58,522,774,254,119 |
root_title | "BSIP - Revive BitAssets after global settlement" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,645,731 |
net_rshares | 2,112,594,227,276 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
erath | 0 | 637,688,962,489 | 100% | ||
cyrano | 0 | 395,996,890,481 | 100% | ||
friend5 | 0 | 81,979,762,518 | 100% | ||
indominon | 0 | 240,677,912,041 | 100% | ||
marginal | 0 | 638,107,945,813 | 100% | ||
vault | 0 | 67,617,325,234 | 100% | ||
k471 | 0 | 50,525,428,700 | 100% |
like/retweet: https://twitter.com/customminer/status/792344523271798789
author | cm-steem |
---|---|
permlink | re-cm-steem-re-cyrano-bsip-revive-bitassets-after-global-settlement-20161029t123732647z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"links":["https://twitter.com/customminer/status/792344523271798789"]} |
created | 2016-10-29 12:37:33 |
last_update | 2016-10-29 12:37:33 |
depth | 2 |
children | 1 |
last_payout | 2016-11-29 21:15:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 58,522,774,254,119 |
root_title | "BSIP - Revive BitAssets after global settlement" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,645,817 |
net_rshares | 0 |
###  **[CM](https://twitter.com/@customminer/status/792344523271798789)** tweeted @ 29 Oct 2016 - 12:37 UTC > Please support the $BTS MPA BSIP proposed by PC! [steemit.com/bitshares/@cyr…](https://t.co/PlbtT105X6) @GridcoinNetwork @Beyond_Bitcoin @bitshares @BitSharesMunich $GRC ###### *Disclaimer: I am just a bot trying to be helpful.*
author | twitterbot |
---|---|
permlink | re-re-cm-steem-re-cyrano-bsip-revive-bitassets-after-global-settlement-20161029t123732647z-20161029t123827 |
category | bitshares |
json_metadata | "" |
created | 2016-10-29 12:38:27 |
last_update | 2016-10-29 12:38:27 |
depth | 3 |
children | 0 |
last_payout | 2016-11-29 21:15:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 432 |
author_reputation | 2,792,128,643,772 |
root_title | "BSIP - Revive BitAssets after global settlement" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,645,823 |
net_rshares | 186,431,255 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 186,431,255 | 1% |
I mentioned this BSIP during episode #180 of the BeyondBitcoin hangout: https://twitter.com/customminer/status/795769687871287297 https://steemit.com/beyondbitcoin/@officialfuzzy/3s6dsv-guest-signups-beyond-bitcoin-hangout-179-10-28-16-rsvp-to-friday-s-hangout-past-payouts-and-signups-inside#@cm-steem/re-officialfuzzy-3s6dsv-guest-signups-beyond-bitcoin-hangout-179-10-28-16-rsvp-to-friday-s-hangout-past-payouts-and-signups-inside-20161029t142437574z
author | cm-steem |
---|---|
permlink | re-cm-steem-re-cyrano-bsip-revive-bitassets-after-global-settlement-20161107t234229647z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"links":["https://twitter.com/customminer/status/795769687871287297","https://steemit.com/beyondbitcoin/@officialfuzzy/3s6dsv-guest-signups-beyond-bitcoin-hangout-179-10-28-16-rsvp-to-friday-s-hangout-past-payouts-and-signups-inside#@cm-steem/re-officialfuzzy-3s6dsv-guest-signups-beyond-bitcoin-hangout-179-10-28-16-rsvp-to-friday-s-hangout-past-payouts-and-signups-inside-20161029t142437574z"]} |
created | 2016-11-07 23:42:30 |
last_update | 2016-11-07 23:42:30 |
depth | 2 |
children | 1 |
last_payout | 2016-11-29 21:15:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 454 |
author_reputation | 58,522,774,254,119 |
root_title | "BSIP - Revive BitAssets after global settlement" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,710,646 |
net_rshares | 0 |
###  **[CM](https://twitter.com/@customminer/status/795769687871287297)** tweeted @ 07 Nov 2016 - 23:27 UTC > I spoke on behalf of the [#Gridcoin](https://twitter.com/search?q=%23Gridcoin) community during #180 of the [#Beyondbitcoin](https://twitter.com/search?q=%23Beyondbitcoin) hangout. @GridcoinNetwork [#BOINC](https://twitter.com/search?q=%23BOINC) [twitter.com/StephenPKendal…](https://t.co/2OW7x6GyWn) ###### *Disclaimer: I am just a bot trying to be helpful.*
author | twitterbot |
---|---|
permlink | re-re-cm-steem-re-cyrano-bsip-revive-bitassets-after-global-settlement-20161107t234229647z-20161107t234319 |
category | bitshares |
json_metadata | "" |
created | 2016-11-07 23:43:21 |
last_update | 2016-11-07 23:43:21 |
depth | 3 |
children | 0 |
last_payout | 2016-11-29 21:15:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 563 |
author_reputation | 2,792,128,643,772 |
root_title | "BSIP - Revive BitAssets after global settlement" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,710,658 |
net_rshares | 0 |
I have to admit that im getting a bit lost with the technical details, but i think this is a great piece of work and very very necessary. Much kudos to you cyrano.
author | jabberw0cky |
---|---|
permlink | re-cyrano-bsip-revive-bitassets-after-global-settlement-20161029t175220713z |
category | bitshares |
json_metadata | {"tags":["bitshares"]} |
created | 2016-10-29 17:52:21 |
last_update | 2016-10-29 17:52:21 |
depth | 1 |
children | 1 |
last_payout | 2016-11-29 21:15:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 163 |
author_reputation | 2,488,807,039,602 |
root_title | "BSIP - Revive BitAssets after global settlement" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,647,515 |
net_rshares | 0 |
Thanks for your feedback! I think I'll have to extend the "Summary" a bit, with non-technical details...
author | cyrano |
---|---|
permlink | re-jabberw0cky-re-cyrano-bsip-revive-bitassets-after-global-settlement-20161030t090730381z |
category | bitshares |
json_metadata | {"tags":["bitshares"]} |
created | 2016-10-30 09:07:30 |
last_update | 2016-10-30 09:07:30 |
depth | 2 |
children | 0 |
last_payout | 2016-11-29 21:15:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 104 |
author_reputation | 2,476,469,639,719 |
root_title | "BSIP - Revive BitAssets after global settlement" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,650,933 |
net_rshares | 0 |
This post has been linked to from another place on Steem. - [Advanced Steem Metrics Report for 29th October 2016](https://steemit.com/steemit/@ontofractal/advanced-steem-metrics-report-for-29th-october-2016) by @ontofractal Learn more about and upvote to support [**linkback bot v0.5**](https://steemit.com/steemit/@ontofractal/steem-linkback-bot-v0-5-the-reddit-awareness-release). Flag this comment if you don't want the bot to continue posting linkbacks for your posts. Built by @ontofractal
author | linkback-bot-v0 |
---|---|
permlink | re-cyrano-bsip-revive-bitassets-after-global-settlement-linkbacks |
category | bitshares |
json_metadata | {} |
created | 2016-10-30 17:01:42 |
last_update | 2016-10-30 17:01:42 |
depth | 1 |
children | 0 |
last_payout | 2016-11-29 21:15:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 504 |
author_reputation | 1,915,954,976,722 |
root_title | "BSIP - Revive BitAssets after global settlement" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,652,882 |
net_rshares | 0 |
great work
author | roseebit |
---|---|
permlink | re-cyrano-bsip-revive-bitassets-after-global-settlement-20161029t130916439z |
category | bitshares |
json_metadata | {"tags":["bitshares"]} |
created | 2016-10-29 13:09:51 |
last_update | 2016-10-29 13:09:51 |
depth | 1 |
children | 0 |
last_payout | 2016-11-29 21:15:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 19,504,635,161,510 |
root_title | "BSIP - Revive BitAssets after global settlement" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,645,992 |
net_rshares | 186,431,255 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cm-steem | 0 | 186,431,255 | 1% |
Congratulations @cyrano! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@cyrano) Award for the number of comments received Click on any badge to view your own Board of Honnor on SteemitBoard. For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard) If you no longer want to receive notifications, reply to this comment with the word `STOP` By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-cyrano-20170629t004802000z |
category | bitshares |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-06-29 00:48:00 |
last_update | 2017-06-29 00:48:00 |
depth | 1 |
children | 0 |
last_payout | 2017-07-06 00:48:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 695 |
author_reputation | 38,975,615,169,260 |
root_title | "BSIP - Revive BitAssets after global settlement" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 6,554,274 |
net_rshares | 0 |
Congratulations @cyrano! You have completed some achievement on Steemit and have been rewarded with new badge(s) : [](http://steemitboard.com/@cyrano) Award for the number of comments Click on any badge to view your own Board of Honor on SteemitBoard. For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard) If you no longer want to receive notifications, reply to this comment with the word `STOP` > By upvoting this notification, you can help all Steemit users. Learn how [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
author | steemitboard |
---|---|
permlink | steemitboard-notify-cyrano-20170709t183823000z |
category | bitshares |
json_metadata | {"image":["https://steemitboard.com/img/notifications.png"]} |
created | 2017-07-09 18:38:24 |
last_update | 2017-07-09 18:38:24 |
depth | 1 |
children | 0 |
last_payout | 2017-07-16 18:38:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 686 |
author_reputation | 38,975,615,169,260 |
root_title | "BSIP - Revive BitAssets after global settlement" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 7,898,141 |
net_rshares | 0 |
Great job @cyrano! I think being able to revive assets would be incredibly important so thanks for taking this on!
author | steemrollin |
---|---|
permlink | re-cyrano-bsip-revive-bitassets-after-global-settlement-20161030t044545437z |
category | bitshares |
json_metadata | {"tags":["bitshares"],"users":["cyrano"]} |
created | 2016-10-30 04:45:45 |
last_update | 2016-10-30 04:45:45 |
depth | 1 |
children | 0 |
last_payout | 2016-11-29 21:15:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 114 |
author_reputation | 85,821,573,953,798 |
root_title | "BSIP - Revive BitAssets after global settlement" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,650,247 |
net_rshares | 0 |
So good to see progress in this matter. I'll take a closer look at the proposal in the next week and givr my thoughts on it!!
author | xeroc |
---|---|
permlink | re-cyrano-bsip-revive-bitassets-after-global-settlement-20161029t102213279z |
category | bitshares |
json_metadata | {"tags":["bitshares"]} |
created | 2016-10-29 10:22:18 |
last_update | 2016-10-29 10:22:18 |
depth | 1 |
children | 0 |
last_payout | 2016-11-29 21:15:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.127 HBD |
curator_payout_value | 0.028 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 125 |
author_reputation | 118,819,064,085,695 |
root_title | "BSIP - Revive BitAssets after global settlement" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 1,645,215 |
net_rshares | 2,532,785,983,331 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
erath | 0 | 637,688,962,489 | 100% | ||
anonymous | 0 | 469,871,374,703 | 100% | ||
cyrano | 0 | 395,996,890,481 | 100% | ||
friend5 | 0 | 81,979,762,518 | 100% | ||
indominon | 0 | 240,677,912,041 | 100% | ||
marginal | 0 | 638,107,945,813 | 100% | ||
vault | 0 | 67,617,325,234 | 100% | ||
fractalnode | 0 | 659,378,797 | 100% | ||
cm-steem | 0 | 186,431,255 | 1% |