 Hello everyone ! Today I want to write a bit of explanation on one of the core smt operations: <center> smt_setup_emissions </center> This operation is used, as it's name hints, to setup emission/inflation for an smt. In order to use it you must have previously called the `smt_create operation` to create an smt object in the chain to send this operation on. Now let's look at the operation and it's parameters : ``` account_name_type control_account; asset_symbol_type symbol; time_point_sec schedule_time; smt_emissions_unit emissions_unit; uint32_t interval_seconds = 0; uint32_t interval_count = 0; time_point_sec lep_time; time_point_sec rep_time; share_type lep_abs_amount; share_type rep_abs_amount; uint32_t lep_rel_amount_numerator = 0; uint32_t rep_rel_amount_numerator = 0; uint8_t rel_amount_denom_bits = 0; bool remove = false; bool floor_emissions = false; extensions_type extensions; ``` You can find this in : https://github.com/steemit/steem/blob/master/libraries/protocol/include/steem/protocol/smt_operations.hpp # the basics So first of all, you need to give the operation the information about which smt you want to add emission to : (note that the code examples will be in js from now on) this is where you set - control_account with, for example : "howo" - symbol it's an `asset_symbol_type` which is a struct with a nai and a precision, so it would be akin to something like `{'nai': @@280090049, 'precision': 13}` - schedule_time This is where you state when the emission starts, there is no end date for the emissions unless you set it in another emission call (we'll get to that later on) ## Emission units This is where we start to dive into the interesting parts, emission units define where the inflation actually goes, the structure looks like this : ``` [ ['howo', 50], ['steempress', 50], ] ``` And that's it ! Here I state that every time there is an emission, 50 tokens will go to me and 50 will go to steempress, you can put steem accounts and there are also three special strings that you can use : `$market_maker` : inflation will go to the decentralized market in order to provide liquidity early on `$rewards`: Fund the reward pool for your smt, if you don't set this, your token won't have proof of brain rewards via inflation (you could fund that account via other means like the ico) `$vesting`: Fund the vesting rewards Since the parameter is an array you can set several inflation destination at the same time. ## Interval_second and interval_count Okay so we emit x tokens to those emission sources, but how how often ? `interval_seconds` sets how often emissions will be triggered, note that the minimum is 21600, aka 6 hours. `interval_count` sets a limit on how many times you want to emit. if you set it to 10 you will only emit 10 times. It's a good way to set a limit to your inflation, or to get all the tokens at once in everyone's hands. ## Variable emissions, because otherwise it would be too easy This is where things get tricky, and I am not 100% sure myself but here's the gist of it, you can refer to the official smt documentation as well if I'm not making enough sense : https://github.com/steemit/smt-whitepaper/blob/master/smt-manual/manual.md#adding-time-modulation you can set curves for your inflation, in order to have, let's say a decreasing inflation. for that you have `lep_time` and `rep_time` to set both ends of the curve, lep stands for left end point, rep right end. values are like this : `1970-01-01T00:00:00` Side note : - For times before the left endpoint time, the amount at the left endpoint time is used. - For times after the right endpoint time, the amount at the right endpoint time is used. Then you have 4 parameters : `lep_abs_amount` and `rep_abs_amount` which are the values taken at lep and rep from which we'll get a curve (100 and 0 for instance to make inflation go to 0 over time). Abs use integer values aka 10, 20, 30 `lep_rel_amount_numerator` and `rep_rel_amount_numerator`which are the same except that they use a different calculation to take advantage of decimals. Hence why they also have the `rel_amount_denom_bits`to bitwise righ shift the value by the number defined. So do we need to have both defined and what happens if we only want to set the abs and leave the rel alone ? This is where the `floor_emissions` parameter comes in handly. this is basically what it does : ``` if ( emission.floor_emissions ) new_token_supply = std::min( abs_amount, rel_amount ); else new_token_supply = std::max( abs_amount, rel_amount ); ``` If floor emission is set to true, it will take the minimum value between the calculated absolute value and the calculated relative value otherwise it will take the biggest of the two. So if you want to use only abs emission, set `lep_rel_amount_numerator` and `rep_rel_amount_numerator` to 0 and `floor_emissions` to false. # Adding multiple emissions phew almost done ! Now here's an interesting thing about emissions, you don't have to have a single emission model, you can have several ones ! So you can reward early adopters with a high reward pool inflation and then switch to a model where it's more normal but inflation to vesting is now favored. You can have as many inflation as you want but they need to be 6 hours apart from each others. # Deleting an emission Finally there is one last parameter : `delete` if set to true, it will delete the emission model that you previously submitted. Quite useful if you found out that there is a parameter that isn't right huh ? # conclusion You can find a complete example for this on my hard fork 23 tests here : https://github.com/drov0/hf23-testing/blob/master/bulk_full_setup.js The reason I'm able to do this work and allocate time to it is thanks to the funds from the sps, please consider voting on it or unvoting the return proposal : https://steemproposals.com/proposal/50 every bit counts ! And finally I am also doing this as part of the witness @steempress if you like what I'm doing please consider voting on it as well. Every bit counts ! It will take you but a few minutes but will greatly help me test the network and the more we test the more steemit and the witnesses will feel confident enough to launch on the main net
author | howo |
---|---|
permlink | the-emission-operation-explained |
category | smt |
json_metadata | {"tags":["emission","documentation"],"users":["steempress"],"image":["https://cdn.steemitimages.com/DQmSxirGVpGknnPi3du7UjDrV8SRGur9c7DEt1fN4ccMEZL/image.png"],"links":["https://github.com/steemit/steem/blob/master/libraries/protocol/include/steem/protocol/smt_operations.hpp","https://github.com/steemit/smt-whitepaper/blob/master/smt-manual/manual.md#adding-time-modulation","https://github.com/drov0/hf23-testing/blob/master/bulk_full_setup.js","https://steemproposals.com/proposal/50"],"app":"steemit/0.1","format":"markdown"} |
created | 2020-01-05 18:39:39 |
last_update | 2020-01-05 21:13:00 |
depth | 0 |
children | 10 |
last_payout | 2020-01-12 18:39:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 28.635 HBD |
curator_payout_value | 24.608 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,620 |
author_reputation | 511,962,302,102,641 |
root_title | "The SMT setup emission operation explained" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,068,104 |
net_rshares | 178,789,089,595,308 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bue | 0 | 2,308,269,432,203 | 100% | ||
pnc | 0 | 126,593,398,966 | 100% | ||
bleepcoin | 0 | 507,197,586,189 | 100% | ||
daycrypter | 0 | 116,791,428,744 | 100% | ||
acidyo | 0 | 7,301,657,160,953 | 60% | ||
kevinwong | 0 | 2,937,717,787,689 | 35% | ||
andrarchy | 0 | 1,672,775,709,547 | 100% | ||
gerber | 0 | 377,283,976,064 | 7% | ||
grey580 | 0 | 21,696,005,584 | 100% | ||
daan | 0 | 275,963,823,819 | 6% | ||
stealthtrader | 0 | 32,980,138,443 | 100% | ||
inertia | 0 | 192,186,872,776 | 100% | ||
arcange | 0 | 1,889,704,432,680 | 100% | ||
exyle | 0 | 360,079,758,603 | 4% | ||
raphaelle | 0 | 50,847,504,786 | 100% | ||
joythewanderer | 0 | 323,732,459,375 | 30% | ||
greenman | 0 | 2,188,274,876,903 | 100% | ||
webdeals | 0 | 212,798,517,538 | 18% | ||
remlaps | 0 | 41,883,590,566 | 100% | ||
shaka | 0 | 836,855,112,508 | 11% | ||
magicmonk | 0 | 901,244,596,263 | 100% | ||
timcliff | 0 | 1,020,252,998,192 | 92% | ||
rmach | 0 | 111,035,970,048 | 100% | ||
lemouth | 0 | 833,326,220,699 | 100% | ||
uwelang | 0 | 55,385,217,195 | 5.5% | ||
petrvl | 0 | 49,207,368,571 | 7% | ||
jeff-kubitz | 0 | 7,169,121,624 | 100% | ||
justyy | 0 | 89,402,696,700 | 3.02% | ||
steemyoda | 0 | 5,913,574,885,532 | 28% | ||
vannour | 0 | 2,418,417,944 | 2.75% | ||
barton26 | 0 | 21,422,477,789 | 100% | ||
roguewriter | 0 | 12,955,624,231 | 5% | ||
judasp | 0 | 1,023,457,230,074 | 100% | ||
jamzed | 0 | 119,819,771,361 | 100% | ||
cardboard | 0 | 20,648,519,912 | 100% | ||
rahul.stan | 0 | 2,361,373,806 | 30% | ||
tarazkp | 0 | 1,237,447,145,924 | 50% | ||
markkujantunen | 0 | 40,706,053,344 | 20% | ||
borislavzlatanov | 0 | 114,280,832,074 | 100% | ||
trafalgar | 0 | 33,854,242,586,315 | 100% | ||
gitchemanitou | 0 | 1,665,707,345 | 100% | ||
preparedwombat | 0 | 118,408,740,979 | 42% | ||
anarcotech | 0 | 13,037,541,372 | 15% | ||
starkerz | 0 | 358,786,239,311 | 15% | ||
raindrop | 0 | 552,094,194,628 | 100% | ||
broncnutz | 0 | 4,769,914,316,853 | 49% | ||
cryptocurator | 0 | 143,891,342,516 | 30% | ||
laloelectrix | 0 | 5,189,362,323 | 100% | ||
tj4real | 0 | 15,846,713,049 | 50% | ||
lotusofmymom | 0 | 17,999,011,452 | 35% | ||
fredrikaa | 0 | 3,122,984,990,723 | 100% | ||
belahejna | 0 | 8,416,114,692 | 7% | ||
wf9877 | 0 | 604,423,362,922 | 100% | ||
ticopurelife | 0 | 175,253,144,575 | 100% | ||
syehlah | 0 | 2,810,626,688 | 28% | ||
xyzashu | 0 | 549,638,151 | 40% | ||
guchtere | 0 | 3,023,449,228 | 30% | ||
techken | 0 | 0 | 0.39% | ||
wdougwatson | 0 | 135,253,113 | 1.4% | ||
corsica | 0 | 41,368,432,462 | 100% | ||
milagros | 0 | 1,042,380,942 | 50% | ||
benedict08 | 0 | 315,270,270,475 | 100% | ||
mcoinz79 | 0 | 2,106,560,782,631 | 100% | ||
howo | 0 | 2,676,187,554,006 | 100% | ||
superhardness | 0 | 9,194,650,014,202 | 100% | ||
imbritish | 0 | 50,277,953 | 27% | ||
leotrap | 0 | 1,147,209,117 | 5% | ||
leyla5 | 0 | 1,440,649,745 | 50% | ||
ilyasismail | 0 | 33,076,146,582 | 100% | ||
plainoldme | 0 | 65,679,842,051 | 100% | ||
elenasteem | 0 | 42,355,524,244 | 100% | ||
kimzwarch | 0 | 7,506,722,411 | 4% | ||
crokkon | 0 | 55,052,144,212 | 100% | ||
accelerator | 0 | 65,759,632,491 | 4.89% | ||
marcusantoniu26 | 0 | 301,902,538,132 | 100% | ||
kesolink | 0 | 1,257,741,631 | 5% | ||
f1assistance | 0 | 4,525,289,723 | 100% | ||
faissalchahid | 0 | 307,345,392,033 | 100% | ||
dokter-purnama | 0 | 1,855,493,763 | 10% | ||
espoem | 0 | 227,544,892,018 | 100% | ||
stef1 | 0 | 421,687,627,144 | 100% | ||
bait002 | 0 | 7,949,936,604 | 10% | ||
investegg | 0 | 446,851,258,050 | 25% | ||
miti | 0 | 173,761,281,337 | 20% | ||
traciyork | 0 | 134,672,424,312 | 65% | ||
blockbrothers | 0 | 61,957,687,708 | 2% | ||
omstavan | 0 | 5,277,114,675 | 100% | ||
emrebeyler | 0 | 450,386,307,198 | 100% | ||
sankysanket18 | 0 | 61,563,025,809 | 100% | ||
zakia | 0 | 47,274,725,051 | 100% | ||
etherpunk | 0 | 5,521,267,906 | 15% | ||
travoved | 0 | 78,951,072,978 | 45% | ||
nairadaddy | 0 | 2,154,577,798 | 5% | ||
traf | 0 | 3,089,184,011,479 | 100% | ||
sireh | 0 | 16,030,533,569 | 50% | ||
itchyfeetdonica | 0 | 130,487,530,112 | 25% | ||
raymondbruce | 0 | 1,360,114,696 | 40% | ||
obvious | 0 | 20,610,889,064 | 11% | ||
guruvaj | 0 | 878,470,103 | 1.75% | ||
rimicane | 0 | 19,372,613,628 | 60% | ||
fourfourfun | 0 | 6,339,060,819 | 25% | ||
cpufronz | 0 | 8,130,410,475 | 100% | ||
kingsolo | 0 | 865,493,027 | 50% | ||
stupid | 0 | 620,524,611 | 40% | ||
vishalhkothari | 0 | 2,432,123,932 | 100% | ||
adityajainxds | 0 | 18,324,006,741 | 100% | ||
mehta | 0 | 73,936,233,008 | 40% | ||
mmmmkkkk311 | 0 | 3,362,493,857,083 | 50% | ||
meemee | 0 | 905,172,530 | 5% | ||
znnuksfe | 0 | 1,438,052,033,670 | 30% | ||
rokyupjung | 0 | 694,168,575 | 10% | ||
mermaidvampire | 0 | 61,431,039,447 | 45% | ||
afiqsejuk | 0 | 433,361,832,054 | 100% | ||
culgin | 0 | 63,472,541,481 | 20% | ||
jimcustodio | 0 | 1,595,811,856 | 50% | ||
jarvie | 0 | 100,189,864,870 | 25% | ||
saqibnazir | 0 | 539,688,110 | 100% | ||
gandalfthewhite | 0 | 913,061,192 | 100% | ||
pandasquad | 0 | 576,597,317 | 30% | ||
khusairi | 0 | 1,632,847,110 | 50% | ||
ammar0344 | 0 | 15,215,362,962 | 100% | ||
shonnlailai | 0 | 102,074,135 | 100% | ||
rachaeldwatson | 0 | 3,925,744 | 1.4% | ||
kamalkhann | 0 | 1,292,704,943 | 50% | ||
cadawg | 0 | 20,471,747,410 | 4.89% | ||
steem-ambassador | 0 | 843,148,613,455 | 100% | ||
wwwfernand | 0 | 91,979,944 | 100% | ||
nenya | 0 | 937,923,404 | 40% | ||
tdogvoid | 0 | 571,824,177 | 100% | ||
bearded-benjamin | 0 | 77,890,551,062 | 50% | ||
bozz | 0 | 4,147,231,598 | 1% | ||
cst90 | 0 | 10,869,789,742 | 100% | ||
disguarpe | 0 | 7,482,571,782 | 100% | ||
duakhan | 0 | 141,539,649 | 100% | ||
cauac | 0 | 610,193,580 | 60% | ||
kilianparadise | 0 | 2,015,904,766 | 50% | ||
rofilm | 0 | 4,814,241,760 | 100% | ||
msena | 0 | 2,091,535,464 | 100% | ||
yohan2on | 0 | 25,574,536,161 | 100% | ||
tloes | 0 | 0 | 1.4% | ||
tubcat | 0 | 142,575,565,823 | 50% | ||
herryazmi11 | 0 | 1,491,280,871 | 50% | ||
lionsuit | 0 | 15,038,740,966 | 66% | ||
senku | 0 | 768,040,028 | 60% | ||
bestboom | 0 | 23,031,398,377 | 7% | ||
sidsun | 0 | 31,667,883,321 | 100% | ||
cryptoinvestsvk | 0 | 138,629,736,120 | 100% | ||
thevote | 0 | 644,635,173,136 | 19.8% | ||
mariuszkarowski | 0 | 132,992,522,990 | 25% | ||
sportsatsteem | 0 | 136,372,332 | 100% | ||
jungch98 | 0 | 10,197,899,298 | 100% | ||
alitavirgen | 0 | 59,288,392,558 | 35% | ||
gadrian | 0 | 132,608,086,521 | 50% | ||
suntree | 0 | 0 | 100% | ||
misan | 0 | 1,404,153,312 | 7.15% | ||
informator | 0 | 4,116,672,329 | 25% | ||
springlining | 0 | 51,064,763,353 | 100% | ||
milarose | 0 | 0 | 10% | ||
jaydih | 0 | 1,388,343,639,110 | 35% | ||
we-are | 0 | 10,203,797,135 | 16.21% | ||
kuberman | 0 | 1,288,049,023 | 100% | ||
andreasgrubhofer | 0 | 112,983,456,529 | 93% | ||
andrewma | 0 | 85,554,442 | 0.6% | ||
steamsteem | 0 | -257,188,321,111 | -100% | ||
feedmytwi | 0 | 3,460,128,316 | 66.6% | ||
bigbot | 0 | 18,112,875,238 | 20% | ||
kimseun | 0 | 248,128,309,084 | 35% | ||
ritxi | 0 | 8,368,188,590 | 10% | ||
nickyhavey | 0 | 45,027,844,202 | 6.6% | ||
ewasteguy1 | 0 | 407,856,864 | 5% | ||
funcounts | 0 | 542,521,387 | 100% | ||
xiguang | 0 | 366,183,013,596 | 30% | ||
myskye | 0 | 24,294,281,816 | 50% | ||
steempeak | 0 | 390,202,475,802 | 47% | ||
steemitcanarias | 0 | 949,007,223 | 60% | ||
yougotavote | 0 | 3,981,722,674 | 36% | ||
tinochka2 | 0 | 1,923,647,260 | 100% | ||
steemit-uruguay | 0 | 598,474,122 | 100% | ||
moneybaby | 0 | 1,153,646,197 | 2.5% | ||
kanadaramagi123 | 0 | 168,979,798,918 | 35% | ||
getup | 0 | 1,312,699,650 | 60% | ||
mafufuma | 0 | 106,375,743,989 | 10% | ||
profitcheck | 0 | 15,612,894,528 | 100% | ||
loveecho | 0 | 36,488,905,426 | 35% | ||
drsensor | 0 | 2,155,587,095 | 80% | ||
hanneloree | 0 | 9,635,243,012 | 33% | ||
rosepac | 0 | 2,604,255,363 | 100% | ||
accountsale | 0 | -808,658,482,615 | -100% | ||
ocdb | 0 | 56,220,533,524,366 | 60% | ||
zaibkang | 0 | 509,157,556 | 100% | ||
mastersa | 0 | 3,876,904,633 | 55% | ||
sonder-an | 0 | 578,242,138 | 100% | ||
angelslake | 0 | 64,397,623,628 | 35% | ||
csy | 0 | 9,224,860,252 | 5% | ||
goumao | 0 | 74,909,576,624 | 100% | ||
raiseup | 0 | 81,158,683,211 | 20% | ||
dlike | 0 | 173,060,427,956 | 2.6% | ||
littledisciples | 0 | 3,016,710,819 | 50% | ||
triptolemus | 0 | 26,544,847,135 | 7% | ||
deathcross | 0 | 102,806,530,953 | 100% | ||
mops2e | 0 | 1,245,577,677 | 80% | ||
wordit | 0 | 62,544,310,966 | 35% | ||
sj-jeong | 0 | 1,916,304,633,648 | 35% | ||
wondumyungga | 0 | 138,106,024,388 | 35% | ||
exhibition | 0 | 7,073,045,466 | 100% | ||
bobby.madagascar | 0 | 5,890,049,342 | 5.25% | ||
laissez-faire | 0 | 0 | 100% | ||
agromeror | 0 | 979,446,595 | 100% | ||
rgirgin | 0 | 629,612,566 | 100% | ||
blake.letras | 0 | 2,501,619,300 | 100% | ||
aquawink | 0 | 158,631,395,570 | 35% | ||
mister-meeseeks | 0 | 14,333,070,442 | 30% | ||
merlin7 | 0 | 72,898,678,952 | 7% | ||
pedrohmc23 | 0 | 525,206,081 | 100% | ||
hobo.media | 0 | 552,184,362,083 | 100% | ||
megaraz | 0 | 171,955,656 | 100% | ||
ringit | 0 | 105,830,938,168 | 35% | ||
michealb | 0 | 2,309,645,035,501 | 26% | ||
coreabeforekorea | 0 | 1,214,915,728,115 | 35% | ||
bioscrolls | 0 | 730,491,245 | 99% | ||
art-venture | 0 | 418,753,238,415 | 100% | ||
ninjasharkman | 0 | 460,934,926 | 100% | ||
quenty | 0 | 592,808,000 | 40% | ||
talkative-bk | 0 | 1,493,102,759,049 | 35% | ||
francescomai | 0 | 16,486,344,286 | 100% | ||
freepress | 0 | 1,102,861,103,055 | 35% | ||
kns630 | 0 | 415,902,931 | 100% | ||
steemfriends | 0 | 4,019,049,560 | 100% | ||
jacuzzi | 0 | 12,885,176,950 | 20% | ||
primeradue | 0 | 6,708,961,846 | 7% | ||
circa | 0 | 539,537,778,397 | 100% | ||
jamesbattler | 0 | 118,154,568,147 | 100% | ||
tipu.curator | 0 | 5,023,405,039 | 50% | ||
electrodo | 0 | 215,176,767,036 | 50% | ||
parth7878 | 0 | 3,057,566,074 | 100% | ||
steether | 0 | 3,419,917,752 | 100% | ||
rakeshpandor | 0 | 167,611,842 | 30% | ||
gecit | 0 | 493,946,206 | 100% | ||
pedrobrito2004 | 0 | 6,814,332,700 | 20% | ||
vcdragon | 0 | 33,081,539,106 | 100% | ||
knifer | 0 | 563,431,092 | 100% | ||
whatdidshewear | 0 | 316,034,301,634 | 35% | ||
spurisna | 0 | 4,812,248,676 | 70% | ||
sjgod4018 | 0 | 258,041,672,599 | 35% | ||
mustard-seed | 0 | 138,498,733,783 | 35% | ||
morwen | 0 | 56,353,700,535 | 40% | ||
abojasim880 | 0 | 1,171,550,566 | 100% | ||
axeminni | 0 | 874,033,103 | 100% | ||
volingy9 | 0 | 217,799,253 | 100% | ||
klima | 0 | 563,705,415 | 40% | ||
borracho | 0 | 1,674,387,760 | 50% | ||
mosquito76 | 0 | 46,286,635,737 | 20% | ||
cinefilm | 0 | -378,079,777,382 | -100% | ||
fsm-liquid | 0 | 10,010,295,086 | 4% | ||
golden.future | 0 | 7,609,215,530 | 10% | ||
imbartley | 0 | 707,246,608 | 25% | ||
the.circle | 0 | 3,669,305,921 | 9% | ||
triplea.bot | 0 | 1,673,077,167 | 4% | ||
steem.leo | 0 | 201,008,341,071 | 6.65% | ||
leo.voter | 0 | 386,225,684,633 | 1.4% | ||
chrono.leo | 0 | 0 | 0.7% | ||
perrymine | 0 | 2,908,710,917 | 35% | ||
kiwi-crypto | 0 | 72,635,343,560 | 100% | ||
steemit-nz | 0 | 19,818,401,606 | 100% | ||
babytarazkp | 0 | 3,074,608,923 | 50% | ||
mehadihasansagor | 0 | 444,661,227 | 100% | ||
ansu55 | 0 | 0 | 5% | ||
project.hope | 0 | 252,401,043,181 | 2.5% | ||
botante | 0 | 3,108,443,988 | 15% | ||
maxuvb | 0 | 3,428,502,246 | 4.89% | ||
maxuvd | 0 | 1,951,826,494 | 4.89% | ||
debtfreein2 | 0 | 1,962,582,245 | 25% | ||
cryptosearch | 0 | 949,727,374 | 100% | ||
leoneil | 0 | 1,129,308,253 | 5% | ||
jaykayw | 0 | 86,216,265,743 | 35% | ||
sonbulut | 0 | 543,649,160 | 100% | ||
abdoshib251 | 0 | 0 | 100% | ||
feef | 0 | 504,445,849 | 100% | ||
steemlondon | 0 | 1,579,822,347 | 6% | ||
unpopular | 0 | 31,786,892,396 | 40% | ||
g7terra | 0 | 722,553,042 | 100% | ||
kryptoformator | 0 | 3,156,920,886 | 3.5% | ||
crypto.income | 0 | 287,534,777,337 | 40% | ||
sacrosanct | 0 | 2,081,993,764 | 50% | ||
friendlystranger | 0 | 15,663,372,273 | 13% | ||
dadaozhijian | 0 | 468,540,498 | 100% | ||
rune-darracur | 0 | 518,309,177 | 100% | ||
tongchat27 | 0 | 760,582,178,879 | 100% | ||
travelssteem | 0 | 38,146,749,554 | 69% | ||
reward.tier5 | 0 | 3,893,543,824 | 100% | ||
starworld | 0 | 0 | 100% | ||
snowboy | 0 | 1,148,865,095,053 | 100% | ||
johnathan69 | 0 | 508,758,853 | 100% | ||
richmili | 0 | 31,449,169,248 | 100% | ||
steemonboarder | 0 | 3,867,183,898 | 10% | ||
ozannn | 0 | 3,182,734,944 | 100% | ||
rarediamond | 0 | 489,281,047 | 100% | ||
bilpcoinpower | 0 | 147,932,029 | 10% | ||
iam.nobody | 0 | 424,459,363 | 100% | ||
ysilva4 | 0 | 262,498,398 | 100% | ||
nigelhw2 | 0 | 2,196,272,613 | 100% | ||
dannidebali | 0 | 516,639,091 | 100% | ||
bhagoley | 0 | 249,139,931 | 100% | ||
khelderskroll | 0 | 55,739,616 | 100% | ||
adilsonbig | 0 | 0 | 100% | ||
majidg | 0 | 0 | 100% |
Congratulations @howo! Your post was mentioned in the [Steem Hit Parade](/hit-parade/@arcange/daily-hit-parade-20200105) in the following category: * Pending payout - Ranked 2 with $ 52,49
author | arcange |
---|---|
permlink | re-the-emission-operation-explained-20200105t170243000z |
category | smt |
json_metadata | "" |
created | 2020-01-06 16:04:09 |
last_update | 2020-01-06 16:04:09 |
depth | 1 |
children | 0 |
last_payout | 2020-01-13 16:04:09 |
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 | 190 |
author_reputation | 1,146,606,601,469,178 |
root_title | "The SMT setup emission operation explained" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,099,899 |
net_rshares | 0 |
Thanks for doing all this. Are you going to compile all the documentation you're creating in some more formal way? Like @intertia's documentation website?
author | borislavzlatanov |
---|---|
permlink | q3ondo |
category | smt |
json_metadata | {"users":["intertia"],"app":"steemit/0.1"} |
created | 2020-01-06 11:17:51 |
last_update | 2020-01-06 11:17:51 |
depth | 1 |
children | 1 |
last_payout | 2020-01-13 11:17:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.103 HBD |
curator_payout_value | 0.102 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 156 |
author_reputation | 23,431,256,721,057 |
root_title | "The SMT setup emission operation explained" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,091,672 |
net_rshares | 1,119,382,461,697 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
howo | 0 | 1,119,382,461,697 | 42% |
Mmmh I was thinking of actually putting it on the devportal (aka inertia's website, although it's a steemit funded initiative at first), but most of the data is already formatted here : https://github.com/steemit/smt-whitepaper/blob/master/smt-manual/manual.md#adding-time-modulation And for now my time is better spent actually testing than documenting, as writing stuff like this takes quite some time.
author | howo |
---|---|
permlink | q3pgpb |
category | smt |
json_metadata | {"links":["https://github.com/steemit/smt-whitepaper/blob/master/smt-manual/manual.md#adding-time-modulation"],"app":"steemit/0.1"} |
created | 2020-01-06 21:51:15 |
last_update | 2020-01-06 21:51:15 |
depth | 2 |
children | 0 |
last_payout | 2020-01-13 21:51:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.010 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 406 |
author_reputation | 511,962,302,102,641 |
root_title | "The SMT setup emission operation explained" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,112,768 |
net_rshares | 126,347,706,501 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
borislavzlatanov | 0 | 126,347,706,501 | 100% |
Amazing piece of work @howo I'm far from capable to understand all technicalities, however I can roughly see how useful this content can be for many. Upvote on the way. And will vote on your sps proposal in a minute. Would you mind telling me if blockchain is your passion or is your work somehow related to this topic as well? Just curious :) Yours, Piotr
author | crypto.piotr |
---|---|
permlink | q4j8wp |
category | smt |
json_metadata | {"users":["howo"],"app":"steemit/0.1"} |
created | 2020-01-22 23:50:54 |
last_update | 2020-01-22 23:50:54 |
depth | 1 |
children | 0 |
last_payout | 2020-01-29 23:50:54 |
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 | 360 |
author_reputation | 27,396,789,428,606 |
root_title | "The SMT setup emission operation explained" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,664,453 |
net_rshares | 0 |
Great work @howo looks impressive explanation. I am non technical and followed your commentary pretty well. Posted using [Partiko iOS](https://partiko.app/referral/cryptocurator)
author | cryptocurator |
---|---|
permlink | cryptocurator-re-howo-the-emission-operation-explained-20200105t191833056z |
category | smt |
json_metadata | {"app":"partiko","client":"ios"} |
created | 2020-01-05 19:18:33 |
last_update | 2020-01-05 19:18:33 |
depth | 1 |
children | 1 |
last_payout | 2020-01-12 19:18:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.031 HBD |
curator_payout_value | 0.031 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 179 |
author_reputation | 29,866,721,457,384 |
root_title | "The SMT setup emission operation explained" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,069,719 |
net_rshares | 367,530,707,856 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
howo | 0 | 367,530,707,856 | 14% |
Thanks ! Glad to hear that you could follow, it was mostly aimed at technical people so it's a great sign :)
author | howo |
---|---|
permlink | q3t69y |
category | smt |
json_metadata | {"app":"steemit/0.2"} |
created | 2020-01-08 21:56:21 |
last_update | 2020-01-08 21:56:21 |
depth | 2 |
children | 0 |
last_payout | 2020-01-15 21:56:21 |
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 | 108 |
author_reputation | 511,962,302,102,641 |
root_title | "The SMT setup emission operation explained" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,200,657 |
net_rshares | 0 |
Thanks for the post[.](https://koreanfoodie.me/34)
author | jekhy |
---|---|
permlink | re-howo-the-emission-operation-explained-20200109t032452303z |
category | smt |
json_metadata | {"tags":["just_a_test"]} |
created | 2020-01-09 03:24:51 |
last_update | 2020-01-09 03:24:51 |
depth | 1 |
children | 0 |
last_payout | 2020-01-16 03:24:51 |
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 | 50 |
author_reputation | -110,666,590,404 |
root_title | "The SMT setup emission operation explained" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,207,231 |
net_rshares | 0 |
Great work, I am sure community developers will find these tests and infos useful
author | sanat | ||||||
---|---|---|---|---|---|---|---|
permlink | re-howo-2020115t15542790z | ||||||
category | smt | ||||||
json_metadata | {"tags":["emission","documentation"],"app":"esteem/2.2.2-surfer","format":"markdown+html","community":"esteem.app"} | ||||||
created | 2020-01-15 13:54:03 | ||||||
last_update | 2020-01-15 13:54:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2020-01-22 13:54:03 | ||||||
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 | 81 | ||||||
author_reputation | 2,167,003,527,810 | ||||||
root_title | "The SMT setup emission operation explained" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 94,425,768 | ||||||
net_rshares | 0 |
Congratulations @howo! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td><img src="https://steemitimages.com/60x70/http://steemitboard.com/@howo/votes.png?202001070358"></td><td>You distributed more than 34000 upvotes. Your next target is to reach 35000 upvotes.</td></tr> </table> <sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@howo) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=howo)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> ###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
author | steemitboard |
---|---|
permlink | steemitboard-notify-howo-20200107t083408000z |
category | smt |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2020-01-07 08:34:06 |
last_update | 2020-01-07 08:34:06 |
depth | 1 |
children | 0 |
last_payout | 2020-01-14 08:34:06 |
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 | 834 |
author_reputation | 38,975,615,169,260 |
root_title | "The SMT setup emission operation explained" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,129,644 |
net_rshares | 0 |
To listen to the audio version of this article click on the play image. [](http://ec2-52-72-169-104.compute-1.amazonaws.com/howo__the-emission-operation-explained.mp3) Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvoting this reply.
author | tts |
---|---|
permlink | re-the-emission-operation-explained-20200105t190121 |
category | smt |
json_metadata | "" |
created | 2020-01-05 19:01:21 |
last_update | 2020-01-05 19:01:21 |
depth | 1 |
children | 0 |
last_payout | 2020-01-12 19:01:21 |
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 | 348 |
author_reputation | -4,535,154,553,995 |
root_title | "The SMT setup emission operation explained" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 94,069,009 |
net_rshares | -52,031,473,618 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemcleaner | 0 | -21,739,191 | -0.08% | ||
mack-bot | 0 | -52,009,734,427 | -0.5% |