## Repository https://github.com/holgern/steemengine  ## steemengine [steemengine](https://github.com/holgern/steemengine) is a python library for working with [steem-engine.com](https://steem-engine.com/) tokens. I released version 0.4.1 which can be installed by ``` pip install steemengine ``` ## New features ### The token precision is taken into account for transfer, issue, buy, sell, withdraw and deposit I added a new `quantize` function to the Token class. ``` def quantize(self, amount): """Round down a amount using the token precision and returns a Decimal object""" amount = decimal.Decimal(amount) places = decimal.Decimal(10) ** (-self["precision"]) return amount.quantize(places, rounding=decimal.ROUND_DOWN) ``` This function returns a rounded Decimal object, which takes the token precision into account. The amount is rounded down to a valid amount. ``` from steemengine.tokenobject import Token steemp = Token("STEEMP") steemp.quantize(1.0001) Decimal('1.000') steemp.quantize(0.999999) Decimal('0.999') steemp.quantize(0.0001) Decimal('0.000') ``` This function is then used in transfer, issue, buy, sell, withdraw and deposit: ``` token = Token(symbol) quant_amount = token.quantize(amount) if quant_amount <= decimal.Decimal("0"): raise InvalidTokenAmount("Amount to transfer is below token precision of %d" % token["precision"]) ``` If the quantized amount is zero, an InvalidTokenAmount exception is raised. ### New commands for the CLI The acting account, which needs an active key stored in the beem wallet, is either the default beempy account or set by `-a`, e.g. `steemengine transfer -a holger80 beembot 0.001 DRAGON test`. The default account can be set by `beempy set default_account holger80` and checked by `beempy config`. #### steemengine transfer  This command can be used to sent token to other steem accounts. ``` steemengine transfer -a holger80 beembot 0.001 DRAGON test Password to unlock wallet: Wallet Unlocked! { "expiration": "2019-03-20T10:12:49", "ref_block_num": 55237, "ref_block_prefix": 1423306811, "operations": [ [ "custom_json", { "required_auths": [ "holger80" ], "required_posting_auths": [], "id": "ssc-mainnet1", "json": "{\"contractName\":\"tokens\",\"contractAction\":\"transfer\",\"contractPayload\":{\"symbol\":\"DRAGON\",\"to\":\"beembot\",\"quantity\":\"0.0010000\",\"memo\":\"test\"}}" } ] ], "extensions": [], "signatures": [ "206b0d9b6d0939108c2156cefbafa99bccb5bb206c2ca129ebb2cf336112abbaab0ff1151917bec552357d400b6d72b98425f2052735c723522a9537589046b1e7" ] } ```   #### steemengine issue  Issues new token, only possible when the active account is also the issuer of the token. #### steemengine deposit  This command can be used to deposit STEEM and receive STEEMP for buying token. The following command transfers 0.1 STEEM to steem-peg and 0.1 STEEMP are transferred to the account in return. ``` steemengine deposit -a holger80 0.1 ```  #### steemengine withdraw  This command can be used to withdraw STEEMP and receive STEEM. ``` steemengine withdraw -a holger80 0.1 ```  #### steemengine buy  This command can be used to place buy orders. ``` steemengine buy -a holger80 1 JAR 0.9 ``` This places a buy order, for buying 1 JAR for 0.9 STEEMP. The accounts must have 0.9 STEEMP, otherwise a InsufficientTokenAmount exception will be raised. The 0.9 STEEMP are locked until the order is fullfilled or canceled. #### steemengine sell  This command can be used to place a sell order. ``` steemengine sell -a holger80 1 JAR 3 ``` In this examle, holger80 creates a sell order for selling 1 JAR for 3 STEEMP. The accounts needs 1 JAR to broadcast this, otherwise a InsufficientTokenAmount exception is raised. The 1 JAR is locked until the order is fullfilled or canceled. #### steemengine cancel  In order to cancel, the order id must be know. It can be checked with the buybook command. ``` steemengine buybook -a holger80 JAR ```  The buy order can then be canceled by: ``` steemengine cancel -a holger80 buy 1824 ``` A sell order is canceled by ``` steemengine cancel -a holger80 sell 923 ``` #### steemengine buybook  ``` steemengine buybook -a holger80 JAR ``` returns the buybook for account holger80 and token JAR. ``` steemengine buybook JAR ``` returns the complete buy book. #### steemengine sellbook  ``` steemengine sellbook -a holger80 JAR ``` returns the sellbook for account holger80 and token JAR. ``` steemengine sellbook JAR ``` returns the complete sell book. ## Commits ### Fix cancel order id (cast to int) * [commit f63baba](https://github.com/holgern/steemengine/commit/f63babab5ca356d61534b5a2c311739110a03daf) ### Add changelog * [commit 14164d1](https://github.com/holgern/steemengine/commit/14164d1fbae80a70f3185e5db0ec49f11f7bb630) ### Add transfer, issue, withdraw, deposit, buy, sell, cancel, buybook, sellbook to CLI * [commit 31f2e76](https://github.com/holgern/steemengine/commit/31f2e7628b11de694c6a3a0fa63c4ff6747bba12) ### Add amount quantization to deposit, withdraw, buy and sell * [commit 63ee650](https://github.com/holgern/steemengine/commit/63ee650b5170bead53056d2757997e7c2be76510) ### Add token amount quantize and add issue to wallet * [commit c0b7e8d](https://github.com/holgern/steemengine/commit/c0b7e8d13fc00ebc16fe3d3ceae55d2f96dce36d) * quantize added to Token class * TokenDoesNotExists is raised in the Token class when token does not exists * Exception InvalidTokenAmount is raised when amount to transfer or to issue is below precision * new issue function added to wallet * token precision is taken into account for transfer and issue * TokenIssueNotPermitted is raised when an account which is not the token issuer tries to issue ## GitHub Account https://github.com/holgern
author | holger80 |
---|---|
permlink | update-for-steemengine-token-precision-taken-into-account-and-several-new-cli-commands-added |
category | utopian-io |
json_metadata | "{"community": "busy", "app": "beempy/0.23.10", "format": "markdown", "tags": ["utopian-io", "development", "steem-engine", "steemdev", "busy"], "users": [], "links": ["https://github.com/holgern/steemengine", "https://github.com/holgern/steemengine", "https://steem-engine.com/", "https://github.com/holgern/steemengine/commit/f63babab5ca356d61534b5a2c311739110a03daf", "https://github.com/holgern/steemengine/commit/14164d1fbae80a70f3185e5db0ec49f11f7bb630", "https://github.com/holgern/steemengine/commit/31f2e7628b11de694c6a3a0fa63c4ff6747bba12", "https://github.com/holgern/steemengine/commit/63ee650b5170bead53056d2757997e7c2be76510", "https://github.com/holgern/steemengine/commit/c0b7e8d13fc00ebc16fe3d3ceae55d2f96dce36d", "https://github.com/holgern"], "image": ["https://ipfs.busy.org/ipfs/QmefwpuySKdgC8nVeEwx6WfBXRJNXt8VgHZD8v1hxeimMA", "https://ipfs.busy.org/ipfs/QmRvKRsihsrcpU2LkTbAjXVZiAuVB5F2wDMJymHCBZBykN", "https://ipfs.busy.org/ipfs/QmcfSQuDm9a2j3oZ2gqceXoUpAfXhAiwM9SVdDMePqWhkS", "https://ipfs.busy.org/ipfs/QmNpDzJKYNr3CTCSAPoiPyYyt7r9rybvfd3nUnUtR3qAPA", "https://ipfs.busy.org/ipfs/QmT97DkNrxmBEM5Ttd7WTyVMFBwyeKSp3BfJy4DijfmA7R", "https://ipfs.busy.org/ipfs/QmZwYLQbMVGacTDexXVfDxQR49U8zAehgYRf8jYttdhvei", "https://ipfs.busy.org/ipfs/Qmd3rkfC7nMRm7nHytFYxtFaNA1Gna6wp119pR1quHupLq", "https://ipfs.busy.org/ipfs/QmQUfPG3BuvXX1MzFLMWZ3coeUx2T7m3QbUQfNBcUBhdL4", "https://ipfs.busy.org/ipfs/QmdxCKgJS4ZaereN7iwpt6EiNcGincmHavhXfBc1Qaij1o", "https://ipfs.busy.org/ipfs/QmZDdLmXXE3nWSN7vc6eNP4bQuf8Bp1sLtyVTR9HASgmmY", "https://ipfs.busy.org/ipfs/QmZ4w3KM6A236motFgc4oSUvtULvHizxg73yCjLKVbaiR6", "https://ipfs.busy.org/ipfs/QmQ8n5Eh4mqsniM3hq5XzVvbEdrgQd1ndWk3Y1q3vDosm2", "https://ipfs.busy.org/ipfs/QmPhXeMF8r1KEUMcNY5mcffQBh5aZ4HZCtLGTQnkprHX1k", "https://ipfs.busy.org/ipfs/QmSpiBPmfkzMdqPJQTbBm4apsPDiLUu4kc1zJh7nRaiabE", "https://ipfs.busy.org/ipfs/QmXMYAem3oeXiLLnWNRc9AFFWB4U5LHTc7nFvhnYg4k9e8"], "canonical_url": "https://hive.blog/utopian-io/@holger80/update-for-steemengine-token-precision-taken-into-account-and-several-new-cli-commands-added"}" |
created | 2019-03-20 11:25:51 |
last_update | 2020-05-23 14:30:45 |
depth | 0 |
children | 11 |
last_payout | 2019-03-27 11:25:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 77.074 HBD |
curator_payout_value | 22.700 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,240 |
author_reputation | 358,857,509,568,825 |
root_title | "Update for steemengine - token precision taken into account and several new CLI commands added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,618,177 |
net_rshares | 151,874,673,115,036 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fminerten | 0 | 4,626,811,377,254 | 100% | ||
steempty | 0 | 5,306,414,708,367 | 100% | ||
tombstone | 0 | 5,160,108,272,645 | 21.32% | ||
thecryptodrive | 0 | 247,817,324,006 | 30% | ||
ausbitbank | 0 | 1,387,231,485,312 | 100% | ||
timcliff | 0 | 790,294,689,923 | 85% | ||
snwolak | 0 | 5,032,486,345 | 90% | ||
rufans | 0 | 24,277,609,830 | 100% | ||
theb0red1 | 0 | 3,274,771,708 | 12% | ||
stevescoins | 0 | 94,123,757,274 | 75% | ||
mattclarke | 0 | 419,336,029,401 | 51% | ||
krnel | 0 | 512,243,250,298 | 33% | ||
uwelang | 0 | 142,514,942,306 | 15% | ||
aggroed | 0 | 2,335,452,965,636 | 100% | ||
abh12345 | 0 | 22,202,508,288 | 3.73% | ||
whatsup | 0 | 62,129,388,287 | 18% | ||
eforucom | 0 | 31,013,154,482 | 3.5% | ||
busy.pay | 0 | 1,339,108,386,922 | 6.43% | ||
techslut | 0 | 77,853,665,723 | 20% | ||
minersean | 0 | 7,492,906,968 | 75% | ||
yadamaniart | 0 | 518,777,552 | 1.17% | ||
cardboard | 0 | 5,178,749,749 | 100% | ||
rahul.stan | 0 | 9,013,654,465 | 20% | ||
erikaflynn | 0 | 15,145,018,397 | 35% | ||
sn0n | 0 | 160,071,009 | 1% | ||
zephyraijunzo | 0 | 44,807,036,230 | 100% | ||
borislavzlatanov | 0 | 104,055,736,195 | 100% | ||
freebornsociety | 0 | 5,465,776,327 | 10% | ||
birdinc | 0 | 79,777,885,724 | 100% | ||
detlev | 0 | 250,641,374,332 | 100% | ||
jarunik | 0 | 1,991,218,298,191 | 100% | ||
bitcoinjake09 | 0 | 3,071,493,567 | 100% | ||
jakipatryk | 0 | 14,584,854,582 | 50% | ||
reggaemuffin | 0 | 8,809,090,573,909 | 100% | ||
fredrikaa | 0 | 378,844,749,348 | 100% | ||
jga | 0 | 3,274,062,741 | 26.65% | ||
helo | 0 | 155,273,138,012 | 70.72% | ||
walnut1 | 0 | 45,993,792,970 | 26.65% | ||
coquiunlimited | 0 | 79,999,028 | 0.98% | ||
robofox | 0 | 3,396,594,518 | 100% | ||
lorenzor | 0 | 1,510,295,664 | 13.32% | ||
pennsif | 0 | 19,910,491,573 | 7% | ||
ewkaw | 0 | 8,792,104,123 | 20% | ||
insiders | 0 | 76,893,240 | 33% | ||
jayna | 0 | 252,478,988 | 0.35% | ||
ew-and-patterns | 0 | 353,659,627,928 | 35% | ||
changeangels | 0 | 29,421,869 | 100% | ||
suesa | 0 | 108,618,051,136 | 25% | ||
reseller | 0 | 59,275,628,394 | 5% | ||
swedishdragon | 0 | 234,424,309,590 | 85% | ||
warfeed | 0 | 275,305,182 | 37.5% | ||
haiyangdeperci | 0 | 7,033,426,344 | 20% | ||
mcoinz79 | 0 | 3,466,002,378 | 1% | ||
bubke | 0 | 380,847,744,664 | 100% | ||
jacekw | 0 | 11,255,476,921 | 50% | ||
jeffrey24864 | 0 | 26,953,850,643 | 100% | ||
drorion | 0 | 1,557,027,602 | 100% | ||
codingdefined | 0 | 100,907,486,454 | 70.72% | ||
hope-on-fire | 0 | 17,327,078,455 | 100% | ||
steem-star | 0 | 192,662,147 | 100% | ||
tsoldovieri | 0 | 1,951,797,909 | 13.32% | ||
abigail-dantes | 0 | 819,203,502,408 | 50% | ||
tykee | 0 | 14,947,343,431 | 26.65% | ||
upgoat | 0 | 1,851,528,541 | 100% | ||
resheep | 0 | 433,949,659 | 100% | ||
upcroak | 0 | 145,504,773 | 100% | ||
steemik | 0 | 1,437,763,745 | 100% | ||
glitterbooster | 0 | 3,077,983,949 | 30% | ||
jasonbu | 0 | 11,708,722,859 | 30% | ||
iamphysical | 0 | 15,022,542,660 | 90% | ||
felixrodriguez | 0 | 931,752,552 | 9.32% | ||
azulear | 0 | 465,600,171 | 100% | ||
silviu93 | 0 | 6,986,560,255 | 26.65% | ||
badham | 0 | 1,206,959,928 | 50% | ||
make-a-whale | 0 | 44,376,442,783 | 7% | ||
dakeshi | 0 | 5,402,045,364 | 100% | ||
crokkon | 0 | 124,870,203,035 | 100% | ||
accelerator | 0 | 12,665,196,818 | 0.81% | ||
kamikaze | 0 | 42,240,537,051 | 15% | ||
eastmael | 0 | 7,353,826,010 | 50% | ||
revisesociology | 0 | 68,248,062,064 | 20% | ||
espoem | 0 | 203,331,548,804 | 100% | ||
yabapmatt | 0 | 2,656,275,509,470 | 100% | ||
mcfarhat | 0 | 53,886,075,790 | 28.28% | ||
feedyourminnows | 0 | 12,013,854,490 | 8% | ||
isnochys | 0 | 9,053,096,213 | 13% | ||
vishalsingh4997 | 0 | 241,261,339 | 26.65% | ||
qurator | 0 | 143,094,490,915 | 2.34% | ||
emdesan | 0 | 140,079,191 | 10% | ||
hotbit | 0 | 13,331,763,644 | 100% | ||
loshcat | 0 | 2,562,347,935 | 100% | ||
steem-plus | 0 | 41,739,302,887 | 2.72% | ||
pataty69 | 0 | 12,524,115,495 | 20% | ||
elear | 0 | 8,544,874,996 | 53.31% | ||
zoneboy | 0 | 21,389,081,841 | 100% | ||
carlos84 | 0 | 1,418,499,334 | 26.65% | ||
che-shyr | 0 | 900,776,048 | 50% | ||
utopian-io | 0 | 71,827,432,668,377 | 53.31% | ||
shammi | 0 | 2,151,233,546 | 35% | ||
new-world-steem | 0 | 15,188,633,118 | 100% | ||
jaff8 | 0 | 174,886,500,127 | 70.72% | ||
newsrx | 0 | 195,973,724 | 12.46% | ||
mytechtrail | 0 | 1,557,461,577 | 50% | ||
amestyj | 0 | 600,675,780 | 13.32% | ||
sandracarrascal | 0 | 63,905,299 | 26.65% | ||
skycae | 0 | 169,458,340 | 1.63% | ||
ajayyy | 0 | 649,752,564 | 13.32% | ||
greenorange | 0 | 547,853,362 | 100% | ||
bubbleburst | 0 | 6,892,108,481 | 100% | ||
idikuci | 0 | 68,794,724,705 | 100% | ||
mcyusuf | 0 | 3,614,639,133 | 26.65% | ||
tommy-gun | 0 | 6,581,596,385 | 100% | ||
alexs1320 | 0 | 18,217,810,818 | 10% | ||
gentleshaid | 0 | 44,659,847,550 | 53.31% | ||
steembasicincome | 0 | 1,675,715,627,343 | 100% | ||
thomasgift | 0 | 2,126,558,830 | 50% | ||
ivymalifred | 0 | 421,673,612 | 13.32% | ||
bitfiend | 0 | 6,346,610,557 | 20% | ||
aussieninja | 0 | 10,485,122,233 | 26.65% | ||
oliverschmid | 0 | 804,818,939,394 | 100% | ||
abitcoinskeptic | 0 | 53,799,058,668 | 35% | ||
ennyta | 0 | 204,502,253 | 13.32% | ||
amosbastian | 0 | 253,930,027,416 | 70.72% | ||
eliaschess333 | 0 | 2,498,731,319 | 13.32% | ||
tdre | 0 | 81,239,461,595 | 100% | ||
ydavgonzalez | 0 | 418,012,744 | 1.33% | ||
grzesiekb | 0 | 262,387,396,443 | 100% | ||
asaj | 0 | 17,707,596,057 | 100% | ||
satoshi-group | 0 | 989,350,904 | 100% | ||
smjn | 0 | 289,957,605,641 | 50% | ||
znnuksfe | 0 | 3,374,639,809 | 100% | ||
gaming.yer | 0 | 72,545,229 | 26.65% | ||
scienceangel | 0 | 72,251,172,192 | 50% | ||
jjay | 0 | 501,057,876 | 100% | ||
steem-familia | 0 | 72,187,459 | 26.65% | ||
vanarchist | 0 | 2,757,885,769 | 100% | ||
jarvie | 0 | 81,567,720,878 | 26% | ||
gandalfthewhite | 0 | 563,536,782 | 100% | ||
cfminer | 0 | 2,952,959,051 | 100% | ||
neokuduk | 0 | 5,990,359,909 | 100% | ||
sargoon | 0 | 2,340,897,355 | 50% | ||
lukasmining | 0 | 2,661,520,476 | 50% | ||
tobias-g | 0 | 129,876,841,065 | 38% | ||
yrmaleza | 0 | 61,203,141 | 13.32% | ||
literaturk | 0 | 425,762,116 | 100% | ||
lanzjoseg | 0 | 14,156,700,759 | 50% | ||
evangelista.yova | 0 | 71,548,665 | 26.65% | ||
miguelangel2801 | 0 | 171,013,511 | 13.32% | ||
didic | 0 | 29,166,426,394 | 25% | ||
michaelizer | 0 | 257,586,707 | 100% | ||
emiliomoron | 0 | 934,776,995 | 13.32% | ||
sudefteri | 0 | 6,021,178,269 | 100% | ||
beggars | 0 | 10,232,144,152 | 100% | ||
verhp11 | 0 | 100,146,630 | 1% | ||
maxpatternman | 0 | 42,091,808,170 | 100% | ||
condeas | 0 | 18,083,571,190 | 50% | ||
sashas | 0 | 3,229,208,425 | 100% | ||
asgarth | 0 | 509,623,140,291 | 100% | ||
flugschwein | 0 | 18,533,855,488 | 75% | ||
ulisesfl17 | 0 | 1,721,703,500 | 100% | ||
arac | 0 | 941,961,913 | 100% | ||
akifane | 0 | 663,009,187 | 100% | ||
rasit | 0 | 450,668,150 | 100% | ||
jefferyphurley | 0 | 8,468,545,590 | 100% | ||
endopediatria | 0 | 148,100,899 | 5.33% | ||
harpagon | 0 | 16,591,935,368 | 100% | ||
themuffinman | 0 | 72,862,165 | 100% | ||
backinblackdevil | 0 | 100,940,783,237 | 15% | ||
redheadpei | 0 | 428,422,554 | 5% | ||
reazuliqbal | 0 | 42,938,183,125 | 25% | ||
maveraunnehr | 0 | 426,359,809 | 100% | ||
satren | 0 | 44,962,261,154 | 25% | ||
lauchmelder | 0 | 9,933,568,420 | 25% | ||
tomastonyperez | 0 | 2,889,760,909 | 13.32% | ||
elvigia | 0 | 2,423,708,546 | 13.32% | ||
dotwin1981 | 0 | 14,801,689,041 | 10% | ||
qberry | 0 | 1,085,960,674 | 1.17% | ||
thefunfactory | 0 | 72,795,873 | 100% | ||
someonefun | 0 | 72,795,226 | 100% | ||
funbox | 0 | 72,795,223 | 100% | ||
funlands | 0 | 412,434,431 | 100% | ||
funanime | 0 | 72,795,211 | 100% | ||
funkyfun | 0 | 72,795,201 | 100% | ||
funnyfun | 0 | 72,795,199 | 100% | ||
dmonia | 0 | 72,795,197 | 100% | ||
goldrym | 0 | 72,794,503 | 100% | ||
qeoddrir | 0 | 72,794,491 | 100% | ||
dodrorth | 0 | 72,794,485 | 100% | ||
sbi2 | 0 | 718,814,723,630 | 100% | ||
zcool | 0 | 186,491,943 | 10% | ||
dera123 | 0 | 12,717,707,128 | 5% | ||
luiscd8a | 0 | 1,568,406,325 | 80% | ||
elleok | 0 | 11,865,067,305 | 34% | ||
alitavirgen | 0 | 7,800,576,033 | 5% | ||
eniolw | 0 | 7,955,227,706 | 100% | ||
geadriana | 0 | 122,002,696 | 3.99% | ||
elpdl | 0 | 77,721,259 | 26.65% | ||
josedelacruz | 0 | 1,119,713,472 | 13.32% | ||
joseangelvs | 0 | 486,717,300 | 26.65% | ||
viannis | 0 | 383,223,891 | 13.32% | ||
kgakakillerg | 0 | 9,470,919,677 | 1% | ||
feronio | 0 | 1,288,283,410 | 100% | ||
kendallron | 0 | 237,444,176 | 15% | ||
erickyoussif | 0 | 859,199,673 | 26.65% | ||
sbi3 | 0 | 521,433,266,008 | 100% | ||
comedyopenmic | 0 | 873,315,294,778 | 100% | ||
ryuna.siege | 0 | 208,889,117 | 100% | ||
sbi4 | 0 | 379,664,223,302 | 100% | ||
ilikeit | 0 | 3,363,410,375 | 100% | ||
ikarus56 | 0 | 759,109,066 | 5% | ||
indayclara | 0 | 270,532,217 | 7.5% | ||
carlpei | 0 | 223,128,179,086 | 100% | ||
andrick | 0 | 83,386,165 | 13.32% | ||
yusvelasquez | 0 | 87,206,914 | 13.32% | ||
pinas | 0 | 450,524,608 | 50% | ||
linnyplant | 0 | 37,331,530,413 | 100% | ||
commonlaw | 0 | 3,899,051,204 | 35% | ||
shahabudin | 0 | 38,114,523 | 50% | ||
soundworks | 0 | 1,985,034,515 | 100% | ||
netizens | 0 | 68,205,961 | 26.65% | ||
anaestrada12 | 0 | 4,302,726,396 | 26.65% | ||
allancovelli | 0 | 336,859,650 | 100% | ||
jordonemmer | 0 | 106,720,584 | 100% | ||
charitacaruso | 0 | 110,700,643 | 100% | ||
ilonavandam | 0 | 223,931,414 | 100% | ||
jonasalt | 0 | 943,894,889 | 100% | ||
zandrachilcote | 0 | 726,288,200 | 100% | ||
bertahessler | 0 | 1,350,588,425 | 100% | ||
voneller | 0 | 1,577,845,613 | 100% | ||
sbi5 | 0 | 284,243,939,882 | 100% | ||
joelsegovia | 0 | 884,188,352 | 13.32% | ||
sbi6 | 0 | 192,641,374,265 | 100% | ||
arsadulislam | 0 | 221,328,909 | 45% | ||
jesusfl17 | 0 | 370,995,307 | 100% | ||
partiko | 0 | 287,988,166,748 | 3% | ||
bflanagin | 0 | 4,393,970,185 | 26.65% | ||
amirhuda | 0 | 50,309,781 | 30% | ||
ubaldonet | 0 | 3,227,761,640 | 70% | ||
marygourmet | 0 | 492,945,886 | 100% | ||
asmeira | 0 | 73,753,519 | 26.65% | ||
vezo | 0 | 414,287,299 | 100% | ||
bestofph | 0 | 6,489,300,995 | 15% | ||
dalz | 0 | 6,530,926,413 | 21.32% | ||
ulockblock | 0 | 166,965,596,441 | 50% | ||
wstanley226 | 0 | 71,787,036 | 50% | ||
amart29 | 0 | 420,080,546 | 5.33% | ||
jk6276 | 0 | 9,332,917,006 | 26.65% | ||
sbi7 | 0 | 146,436,169,489 | 100% | ||
rubenp | 0 | 77,857,673 | 26.65% | ||
jeferc | 0 | 77,052,347 | 26.65% | ||
dssdsds | 0 | 3,991,033,209 | 26.65% | ||
jayplayco | 0 | 101,869,553,340 | 26.65% | ||
cryptouno | 0 | 494,953,207 | 5% | ||
lupafilotaxia | 0 | 14,445,426,127 | 100% | ||
ogsenti | 0 | 70,795,008 | 100% | ||
fran.frey | 0 | 441,350,876 | 13.32% | ||
holger.random | 0 | 1,295,658,667 | 100% | ||
alaiza | 0 | 453,003,943 | 100% | ||
fullnodeupdate | 0 | 3,263,793,128 | 100% | ||
mops2e | 0 | 1,228,837,535 | 80% | ||
jrevilla | 0 | 156,333,467 | 26.65% | ||
munhenhos | 0 | 1,405,424,999 | 20% | ||
steemedbot | 0 | 747,773,469 | 100% | ||
swapsteem | 0 | 3,138,415,746 | 26.65% | ||
stem-espanol | 0 | 14,778,754,199 | 26.65% | ||
jacekw.dev | 0 | 3,833,193,233 | 100% | ||
bhaski | 0 | 1,592,197,509 | 20% | ||
muscara | 0 | 9,889,198,779 | 35% | ||
lapp | 0 | 455,248,767 | 100% | ||
steemtpistia | 0 | 454,746,854 | 100% | ||
crassipes | 0 | 454,981,897 | 100% | ||
aleestra | 0 | 606,155,277 | 26.65% | ||
com-judge | 0 | 2,202,282,615 | 100% | ||
sbi8 | 0 | 104,438,681,168 | 100% | ||
gamer0815 | 0 | 74,905,963 | 10% | ||
agrovision | 0 | 455,252,586 | 100% | ||
perepilichnyy | 0 | 1,792,189,703,791 | 100% | ||
linkerstinker | 0 | 570,787,710 | 50% | ||
sbi9 | 0 | 72,652,627,175 | 100% | ||
steem-ua | 0 | 1,325,434,343,396 | 12.46% | ||
giulyfarci52 | 0 | 240,070,142 | 13.32% | ||
votum | 0 | 75,140,239,646 | 100% | ||
linuxbot | 0 | 10,929,948,737 | 100% | ||
gameo | 0 | 173,499,686 | 100% | ||
alvinvoo | 0 | 988,537,433 | 100% | ||
kaczynski | 0 | 93,876,305 | 100% | ||
ambercookie | 0 | 153,268,427 | 76% | ||
michealb | 0 | 274,021,713,047 | 10% | ||
sbi10 | 0 | 47,168,177,954 | 100% | ||
steemitbuzz | 0 | 0 | 1% | ||
anthive | 0 | 65,316,374 | 50% | ||
steemexpress | 0 | 1,526,706,586 | 2.73% | ||
curbot | 0 | 2,584,013,253 | 100% | ||
wherein | 0 | 50,949,707,982 | 1.4% | ||
alex-hm | 0 | 952,280,570 | 50% | ||
nurah | 0 | 14,837,115 | 50% | ||
bluerobo | 0 | 11,326,142,009 | 100% | ||
wilmer14molina | 0 | 86,019,560 | 26.65% | ||
jcmontilva | 0 | 68,891,358 | 26.65% | ||
moyam | 0 | 78,016,065 | 26.65% | ||
darys | 0 | 69,222,278 | 26.65% | ||
sibaja | 0 | 70,278,270 | 26.65% | ||
balcej | 0 | 77,998,920 | 26.65% | ||
anaka | 0 | 77,394,079 | 26.65% | ||
benhurg | 0 | 78,015,864 | 26.65% | ||
judisa | 0 | 77,533,801 | 26.65% | ||
juddarivv | 0 | 78,015,457 | 26.65% | ||
kingnosa | 0 | 54,054,090 | 50% | ||
dfen | 0 | 551,983,937 | 100% | ||
singhcapital | 0 | 21,202,172,099,898 | 50% | ||
bluesniper | 0 | 890,775,003 | 0.3% | ||
mrsbozz | 0 | 683,378,376 | 25% | ||
steemtank | 0 | 2,357,983,654,314 | 100% | ||
ascorphat | 0 | 2,305,305,801 | 2.5% | ||
samantha-w | 0 | 3,277,382,771,519 | 100% | ||
flodor | 0 | 612,977,431 | 25% | ||
rewarding | 0 | 5,794,339,196 | 76.65% | ||
tipu.curator | 0 | 24,002,257,760 | 50% | ||
djenny.floro | 0 | 446,203,890 | 50% | ||
brujas | 0 | 901,638,086 | 100% | ||
pgshow | 0 | 181,810,862 | 0.3% | ||
bejust | 0 | 2,131,953,787 | 100% | ||
jk6276.mons | 0 | 1,665,984,210 | 53.31% | ||
sternekoechin | 0 | 190,396,969 | 25% | ||
progressing | 0 | 1,926,373,838 | 100% | ||
jaxson2011 | 0 | 2,019,403,836 | 53.31% | ||
killerbot | 0 | 3,756,150,544 | 25% | ||
cristhianarturo | 0 | 128,828,518 | 100% | ||
f21steem | 0 | 592,628,506 | 100% | ||
orbo | 0 | 250,985,788 | 50% | ||
apostle-thomas | 0 | 3,988,904,159 | 20% | ||
alexei83 | 0 | 63,613,698 | 100% | ||
vmiranda | 0 | 504,672,835 | 100% | ||
eternalinferno | 0 | 269,822,826 | 53.31% | ||
praveen40 | 0 | 218,599,558 | 100% | ||
mohaaking | 0 | 69,848,762 | 50% | ||
steemit-susu | 0 | 92,150,700 | 100% | ||
utopian.trail | 0 | 21,255,973,499 | 53.31% | ||
steemcartel | 0 | 5,612,282,238 | 11% | ||
ienzi | 0 | 175,950,115 | 100% | ||
raspibot | 0 | 420,457,465 | 100% | ||
trevado | 0 | 284,438,548 | 100% | ||
genuinehuman | 0 | 1,907,726,810 | 50% | ||
never-giveup | 0 | 184,791,910 | 100% | ||
temitemi131 | 0 | 111,664,831 | 100% | ||
adolfobravo | 0 | 246,927,153 | 100% | ||
gustavovivas | 0 | 37,789,983 | 100% | ||
eaatts | 0 | 112,699,698 | 100% | ||
aikid | 0 | 530,916,296 | 100% | ||
cryptotokeneur | 0 | 9,569,576,424 | 50% |
Cool update. I always like seeing others using Click, as it was my first introduction to creating CLIs and I think it's a great package. I don't really have much to say about the code as everything looks great, but here goes: * Personal preference of mine, but could maybe use some more whitespace, as everything feels a bit cramped. Not a big deal though, and as I said, it's my personal preference. * `if not bool(memo):` does this need `bool()`? * Seems like you just print the tx as JSON. Maybe you could format it in a more human-readable way, like a table or something? Was also wondering if you have a roadmap for this project? Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/1-2-2-1-2-1-1-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | amosbastian |
---|---|
permlink | re-holger80-update-for-steemengine-token-precision-taken-into-account-and-several-new-cli-commands-added-20190320t144334816z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/1-2-2-1-2-1-1-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-03-20 14:43:36 |
last_update | 2019-03-20 14:43:36 |
depth | 1 |
children | 1 |
last_payout | 2019-03-27 14:43:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 8.100 HBD |
curator_payout_value | 2.583 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,087 |
author_reputation | 174,473,586,900,705 |
root_title | "Update for steemengine - token precision taken into account and several new CLI commands added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,625,590 |
net_rshares | 16,183,690,486,335 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lordneroo | 0 | 46,127,378,196 | 50% | ||
espoem | 0 | 29,041,616,250 | 15% | ||
utopian-io | 0 | 15,750,563,873,560 | 11.07% | ||
shammi | 0 | 384,591,885 | 7% | ||
emrebeyler | 0 | 5,828,092,322 | 1% | ||
steemtaker | 0 | 5,969,139,006 | 6% | ||
aydant | 0 | 9,072,676,397 | 50% | ||
lostmine27 | 0 | 11,859,661,405 | 25% | ||
organicgardener | 0 | 5,292,083,127 | 35% | ||
holger80 | 0 | 60,009,193,699 | 10% | ||
reazuliqbal | 0 | 13,539,343,042 | 8% | ||
amico | 0 | 589,236,605 | 0.33% | ||
mightypanda | 0 | 209,638,380,205 | 100% | ||
ulockblock | 0 | 23,006,316,906 | 7.17% | ||
fastandcurious | 0 | 3,759,784,288 | 100% | ||
linknotfound | 0 | 338,748,724 | 100% | ||
ascorphat | 0 | 2,285,369,676 | 2.5% | ||
monster-inc | 0 | 6,385,001,042 | 100% |
Thank you for your review, @amosbastian! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-holger80-update-for-steemengine-token-precision-taken-into-account-and-several-new-cli-commands-added-20190320t144334816z-20190323t122121z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-23 12:21:21 |
last_update | 2019-03-23 12:21:21 |
depth | 2 |
children | 0 |
last_payout | 2019-03-30 12:21: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 | 63 |
author_reputation | 152,955,367,999,756 |
root_title | "Update for steemengine - token precision taken into account and several new CLI commands added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,799,423 |
net_rshares | 0 |
Congratulations @holger80! Your post was mentioned in the [Steem Hit Parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20190320) in the following category: * Pending payout - Ranked 10 with $ 103,23
author | arcange |
---|---|
permlink | re-update-for-steemengine-token-precision-taken-into-account-and-several-new-cli-commands-added-20190320t163554000z |
category | utopian-io |
json_metadata | "" |
created | 2019-03-21 15:37:18 |
last_update | 2019-03-21 15:37:18 |
depth | 1 |
children | 0 |
last_payout | 2019-03-28 15:37:18 |
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 | 215 |
author_reputation | 1,146,631,502,104,474 |
root_title | "Update for steemengine - token precision taken into account and several new CLI commands added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,685,295 |
net_rshares | 0 |
@tipu send 50 tokens ;)
author | cardboard |
---|---|
permlink | re-holger80-update-for-steemengine-token-precision-taken-into-account-and-several-new-cli-commands-added-20190320t170642342z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["tipu"],"app":"steemit/0.1"} |
created | 2019-03-20 17:06:42 |
last_update | 2019-03-20 17:06:42 |
depth | 1 |
children | 0 |
last_payout | 2019-03-27 17:06: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 | 23 |
author_reputation | 31,522,757,177,122 |
root_title | "Update for steemengine - token precision taken into account and several new CLI commands added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,631,574 |
net_rshares | 0 |
Any changes that have been requested for the interface. If i'm not mistaken that's where most of the requests are.
author | jarvie |
---|---|
permlink | re-holger80-update-for-steemengine-token-precision-taken-into-account-and-several-new-cli-commands-added-20190320t144913503z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak/1.9.0"} |
created | 2019-03-20 14:49:18 |
last_update | 2019-03-20 14:49:18 |
depth | 1 |
children | 0 |
last_payout | 2019-03-27 14:49:18 |
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 | 388,491,264,112,133 |
root_title | "Update for steemengine - token precision taken into account and several new CLI commands added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,625,829 |
net_rshares | 0 |
Thank you so much for participating in the Partiko Delegation Plan Round 1! We really appreciate your support! As part of the delegation benefits, we just gave you a 3.00% upvote! Together, let’s change the world!
author | partiko |
---|---|
permlink | re-update-for-steemengine-token-precision-taken-into-account-and-several-new-cli-commands-added-20190321t023038 |
category | utopian-io |
json_metadata | "{"app": "partiko"}" |
created | 2019-03-21 02:30:39 |
last_update | 2019-03-21 02:30:39 |
depth | 1 |
children | 0 |
last_payout | 2019-03-28 02:30:39 |
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 | 213 |
author_reputation | 39,207,160,334,751 |
root_title | "Update for steemengine - token precision taken into account and several new CLI commands added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,650,942 |
net_rshares | 0 |
This post has been included in the latest edition of [**SoS Daily News**](https://steemit.com/steem/@pennsif/sos-daily-news-news-about-the-state-of-steem-20-march-2019) - a digest of all the latest news on the Steem blockchain.
author | pennsif |
---|---|
permlink | re-holger80-update-for-steemengine-token-precision-taken-into-account-and-several-new-cli-commands-added-20190321t184758638z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://steemit.com/steem/@pennsif/sos-daily-news-news-about-the-state-of-steem-20-march-2019"],"app":"steemit/0.1"} |
created | 2019-03-21 18:48:00 |
last_update | 2019-03-21 18:48:00 |
depth | 1 |
children | 0 |
last_payout | 2019-03-28 18: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 | 228 |
author_reputation | 636,410,097,572,565 |
root_title | "Update for steemengine - token precision taken into account and several new CLI commands added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,694,300 |
net_rshares | 0 |
Hi, @holger80! You just got a **2.72%** upvote from SteemPlus! To get higher upvotes, earn more SteemPlus Points (SPP). On your Steemit wallet, check your SPP balance and click on "How to earn SPP?" to find out all the ways to earn. If you're not using SteemPlus yet, please check our last posts in [here](https://steemit.com/@steem-plus) to see the many ways in which SteemPlus can improve your Steem experience on Steemit and Busy.
author | steem-plus |
---|---|
permlink | update-for-steemengine-token-precision-taken-into-account-and-several-new-cli-commands-added---vote-steemplus |
category | utopian-io |
json_metadata | {} |
created | 2019-03-20 22:26:00 |
last_update | 2019-03-20 22:26:00 |
depth | 1 |
children | 0 |
last_payout | 2019-03-27 22:26: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 | 435 |
author_reputation | 247,952,188,232,400 |
root_title | "Update for steemengine - token precision taken into account and several new CLI commands added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,642,843 |
net_rshares | 0 |
#### Hi @holger80! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-update-for-steemengine-token-precision-taken-into-account-and-several-new-cli-commands-added-20190320t145605z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.18"}" |
created | 2019-03-20 14:56:06 |
last_update | 2019-03-20 14:56:06 |
depth | 1 |
children | 0 |
last_payout | 2019-03-27 14:56: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 | 287 |
author_reputation | 23,214,230,978,060 |
root_title | "Update for steemengine - token precision taken into account and several new CLI commands added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,626,105 |
net_rshares | 0 |
<strong>Success! 50.0 @tipU tokens worth of 50.0 STEEM POWER have just been sent to @holger80.</strong><br>@holger80 - you can check out your new investment at: <a href="https://tipu.online" rel="noopener">https://tipu.online</a>.<br>Please validate the transfer at <a href="https://steem-engine.com/?p=balances" rel="noopener">steem-engine wallet</a>.
author | tipu |
---|---|
permlink | re-update-for-steemengine-token-precision-taken-into-account-and-several-new-cli-commands-added-20190320t170702 |
category | utopian-io |
json_metadata | "" |
created | 2019-03-20 17:07:03 |
last_update | 2019-03-20 17:07:03 |
depth | 1 |
children | 0 |
last_payout | 2019-03-27 17:07: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 | 352 |
author_reputation | 55,927,649,275,367 |
root_title | "Update for steemengine - token precision taken into account and several new CLI commands added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,631,593 |
net_rshares | 0 |
Hey, @holger80! **Thanks for contributing on Utopian**. We’re already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-update-for-steemengine-token-precision-taken-into-account-and-several-new-cli-commands-added-20190321t131021z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-21 13:10:24 |
last_update | 2019-03-21 13:10:24 |
depth | 1 |
children | 0 |
last_payout | 2019-03-28 13:10: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 | 590 |
author_reputation | 152,955,367,999,756 |
root_title | "Update for steemengine - token precision taken into account and several new CLI commands added" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,678,276 |
net_rshares | 0 |