In this post we would like to announce a major refactor of python-steem, a library written in Python 3 that allows developers to build full-featured tools on top of the Steem Blockchain such as [streemian.com](https://streemian.com) or [piston](http://piston.rocks). ## Distinct Domain with documentation Since a couple of days, the major resource for this library can be accessed using our new domain called #### [pysteem.com](http://pysteem.com) For now, it only holds the current in-code documentation using a rather standard-ish design. We would love to see more python and web-developer join our team of voluntaries to improve the library, documentation and presentation. ## Cooperation with steem-tools/steemsports We are happy to announce a fruitful ongoing cooperation with @furion (the author of `steemtools`) and are happy to have him integrate his library into python-steem! The new version of the python-steem has been in part battle tested by powering [SteemSports](https://steemsports.com) and [Streemian.com](https://streemian.com). ## Additional Modules * Amount: For the sake of easier handling of Assets on the blockchain ```python from steem.amount import Amount Amount("1 SBD") + Amount("20 SBD") ``` * Account: Obtaining and accounts ```python from steem.account import Account account = Account("xeroc") print(account.reputation()) print(account.balances) ``` * Block: Easily read data in a Block ```python from steem.block import Block from pprint import pprint pprint(Block(1)) ``` * Blog: Read a users Blog ```python from steem.blog import Blog print(Blog("xeroc")) ``` * Witness: Read data about a witness ```python from steem.witness import Witness Witness("chainsquad.com") ``` * Blockchain: Blockchain stuff ```python from steem.blockchain import Blockchain chain = Blockchain() print(chain.get_current_block()) print(chain.info()) for block in chain.blocks(): print(block) break for operations in chain.ops(): print(operations) break ``` * Transaction Builder: To build your own transactions and sign them ```python from steem.transactionbuilder import TransactionBuilder from steembase.operations import Vote tx = TransactionBuilder() tx.appendOps(Vote( **{"voter": voter, "author": post_author, "permlink": post_permlink, "weight": int(weight * STEEMIT_1_PERCENT)} # STEEMIT_1_PERCENT = 100 )) tx.appendSigner("xeroc", "posting") tx.sign() tx.broadcast() ``` # Howto update pip3 install --upgrade steem # Changelog ``` [Amount] make None Amounts be zero [Amount] prevent different assets from adding up [Block] block class [Blog] remove dead code [GOLOS] Modifications + improved assets (#14) [TransactionBuilder] Make sure we have a wif key to sign a tx [Transactions] build transactions in it's own class [account create] prevent new accounts with more than 16 chars [account,blockchain,setup] removed dateutil dependency [account/amount] show balances as float or string [account] allow to obtain more than 200 followers [account] cleanup - removed methods not catering to most users [account] converter is now a property that is loaded when needed [account] fix a bug in curation_stats [account] fix imports [account] fix minor issues with keys [account] fixed bugs induced by Account.history return struct changes [account] fixed imports [account] get_blog now in a separated class [account] improved account virtual operation return object [account] renamed Account.export method [account] round precision by argument [account] simplify check_if_already_voted and rename to has_voted(post) [amount,converter] removed redundant Converter class from amount.py, re-added caches [amount] even more powerful [amount] improve operations [amount] make amount more powerful [api.exceptions] Another exception message [api] add 'end' to block_stream [api] add missing posting key exception [api] add timestamp to operations on streams [api] allow long version for mode [api] cleanup API module and move things to corresponding modules [api] improve rpc.stream output structure [api] new exception [api] remove legacy graphene overloading [base] move operationids outside of operations.py [blockchain] fix class variable [blockchain] fix get_block_from_time [blockchain] make mode a variable of the instance [blockchain] minor tweak [blockchain] simplify stream and reduce load in RPC for virtual_ops only [blockchain] stream() now uses two different api calls depending on the set of ops to filter for [blockchain] updates of blockchain class [blockchain] use default parameters for blocks() [blog,post] Properly load Blog posts and fix api terminology [blog] Blog is now an efficient iterator, implementing steemit like lazy infinite scroll [blog] cleanup module loading [blog] list has no item() [converter] Commenting [converter] can now compute with Amount objects [converter] fix sbd_median_price [converter] fix steem_per_mvests [converter] move caches to .utils entirely [depracation warning] Markets and Tickers [dict] dictification [docs] update of docs [docs] update of documentation [error] exception handling for unhandled but decodeable RPC Errors [examples] imported examples from steemtools [examples] updated examples [exceptions] add Duplicate tx failed exception [exceptions] added missing file [exceptions] do not use BroadCastError anymore, instead reraise RPCError [exceptions] initial work on nicer exception handling [exceptions] setup more exceptions [execptions] improve regular expression for error handling [keystorage] only ask for new wallet when using keystorage [lazyness] allow to enable lazy loading, no lazy by default [markets] avg_witness_price now includes quote price in its calculation [markets] implemented weighted average function, removed dependence on numpy [operations] comment_options [post,steem] steem instance on post is now an optional [post] allow to set comment options from loaded post [post] cleaned up the Post object and its methods [post] correction of fa48ffca06, self.refresh() is only required on @property methods [post] fix #18 [post] fix amounts and parse 'tags' [post] fixed regressions caused by Post refactoring [post] imported superset methods from steemtools [post] improve loading time [post] legacy api compatibility [post] make Post a dictionary and use caching [post] make sure there us a 'tags' even for comments [post] methods on Post cannot access 'self'' properties without calling self.refresh() first [post] minor tweak [post] more parseing and fixed export() [post] payout amounts are now also parsed as Amount [post] re-added meta helper [rename] transaction -> transactionbuilder [setup.py] added missing python-dateutil [setup] linting [steem.post] allow to define comment options [steem.transactions] minor fixes [steem] Remove SteemConnector [steem] Update steem slightly [steem] added follow api to the defaults [steem] allow a list of ops to be signed [steem] comment_options [steem] fix import cycles for convenience classes such as Blockchain, Account... [steem] get_post call [steem] implemented some of steemtools transactions (without tests) [steem] make use of module instead of calling rpc directly [steem] make wallet and rpc static variables [steem] re-add the broadcast call [steem] reraise broadcast errors not overwrite them [steem] use Account() frequently [steemapi] bypass operation type filtering if rpc.stream receives falsy opNames [steemtools] integrated Account and Converter modules [steemtools] integrated Markets module [steemtools] integrated the Blockchain module [storage] make sure nonexisting keys can be updated [tests] [utils] improted utils from steemtools [utils] improved dictionary filtering utilities [utils] improved formatting [utils] improved is_comment documentation [utils] improved is_comment function [utils] re-added missing functions [utils] refactored is_comment [utils] refactored time handling functions [utils] remove dependence on dateutil [utils] time_elapsed can accept strings as well as datetime objects [wallet] do not require a wallet if not require keys [wallet] make the keyMap a singleton [witness] add witness class ```
author | chainsquad |
---|---|
permlink | python-steem-0-4-0---massive-changes-to-greatly-simplify-onboarding---merged-steemtools |
category | steem |
json_metadata | "{"tags": ["chainsquad", "python", "release"]}" |
created | 2017-01-18 14:35:21 |
last_update | 2017-01-18 14:35:21 |
depth | 0 |
children | 18 |
last_payout | 2017-02-18 22:36:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 186.777 HBD |
curator_payout_value | 19.716 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8,263 |
author_reputation | 42,383,038,531,003 |
root_title | "Python STEEM 0.4.0 - Massive changes to greatly simplify onboarding - Merged Steemtools" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 2,279,052 |
net_rshares | 202,020,242,526,420 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smooth | 0 | 27,465,567,702,455 | 100% | ||
anonymous | 0 | 421,218,870,883 | 100% | ||
penambang | 0 | 23,517,642,320 | 100% | ||
berkah | 0 | 97,041,422,313 | 100% | ||
neogen1 | 0 | 311,221,277,489 | 100% | ||
val-a | 0 | 18,524,870,754,880 | 100% | ||
jamesc | 0 | 34,577,298,887,094 | 100% | ||
freedom | 0 | 32,194,492,285,278 | 100% | ||
hermes | 0 | 329,926,575,422 | 100% | ||
hermes-miner | 0 | 405,302,110,848 | 100% | ||
thorium1 | 0 | 225,899,010,797 | 100% | ||
thorium2 | 0 | 197,793,804,233 | 100% | ||
datasecuritynode | 0 | 3,482,153,242,910 | 100% | ||
bunkermining | 0 | 236,354,691,634 | 100% | ||
wackou | 0 | 4,751,759,812,425 | 100% | ||
badassmother | 0 | 320,983,191,574 | 50% | ||
bitshares.org | 0 | 101,576,436,333 | 100% | ||
blockchainbunker | 0 | 67,177,759,970 | 100% | ||
blocktech | 0 | 24,157,962,338 | 100% | ||
neominer2016 | 0 | 6,290,854,729 | 100% | ||
abderus | 0 | 100,141,419,288 | 100% | ||
olympus-steemy | 0 | 4,340,351,224 | 100% | ||
hephaestus | 0 | 110,773,505,101 | 100% | ||
aquarius.com | 0 | 56,964,009,961 | 100% | ||
minosman | 0 | 24,269,934,216 | 100% | ||
aphrodite | 0 | 69,403,896,918 | 100% | ||
hotels.com | 0 | 8,448,334,184 | 100% | ||
aries.com | 0 | 7,129,747,658 | 100% | ||
rabbitminer | 0 | 40,532,219,831 | 100% | ||
insurance.com | 0 | 11,413,247,551 | 100% | ||
fund.com | 0 | 50,196,683,353 | 100% | ||
tombstone | 0 | 12,503,005,613,752 | 60% | ||
sandra | 0 | 44,281,860,342 | 100% | ||
heracles | 0 | 6,685,237,153 | 100% | ||
ihashfury | 0 | 627,463,272,564 | 100% | ||
bunkerchainlabs | 0 | 9,952,159,310 | 100% | ||
rossco99 | 0 | 325,379,349,178 | 100% | ||
liondani | 0 | 2,102,034,678,642 | 100% | ||
roadscape | 0 | 8,959,923,603,081 | 100% | ||
wang | 0 | 906,587,703,907 | 57% | ||
jaewoocho | 0 | 996,496,818,344 | 31% | ||
steemit200 | 0 | 1,062,873,849,947 | 50% | ||
xeroc | 0 | 554,300,415,981 | 100% | ||
steem-id | 0 | 253,300,261,707 | 100% | ||
clayop | 0 | 1,199,504,603,030 | 31% | ||
tigerminer | 0 | 803,163,912 | 100% | ||
lovejoy | 0 | 71,367,090,478 | 100% | ||
bhuz | 0 | 3,183,343,917,155 | 100% | ||
aizensou | 0 | 670,114,611,902 | 100% | ||
au1nethyb1 | 0 | 1,074,459,460,467 | 50% | ||
gandalf | 0 | 23,446,550,393 | 100% | ||
boatymcboatface | 0 | 173,922,039,241 | 100% | ||
pfunk | 0 | 1,312,677,405,430 | 100% | ||
pairmike | 0 | 78,410,431,187 | 100% | ||
pheonike | 0 | 37,125,306,709 | 40% | ||
proctologic | 0 | 90,430,884,301 | 100% | ||
markopaasila | 0 | 91,645,395,917 | 100% | ||
tuck-fheman | 0 | 646,747,125,710 | 100% | ||
donkeypong | 0 | 1,103,241,818,242 | 50% | ||
peerplays | 0 | 274,368,972,603 | 100% | ||
hcf27 | 0 | 7,556,399,300 | 100% | ||
full-steem-ahead | 0 | 73,166,628,087 | 100% | ||
apollo | 0 | 636,432,734,188 | 100% | ||
athena | 0 | 5,405,315,486 | 100% | ||
jchch | 0 | 101,114,670,300 | 100% | ||
muses | 0 | 862,030,867 | 100% | ||
perseus | 0 | 139,840,950 | 100% | ||
ash | 0 | 170,925,394,956 | 100% | ||
ilanaakoundi | 0 | 84,873,420,238 | 100% | ||
relativelyboston | 0 | 1,819,435,703 | 100% | ||
chris4210 | 0 | 170,686,033,492 | 100% | ||
acidsun | 0 | 61,180,556,504 | 100% | ||
noisy | 0 | 193,600,066,595 | 100% | ||
chryspano | 0 | 412,797,228,317 | 100% | ||
morning | 0 | 81,957,093,274 | 100% | ||
ervin-lemark | 0 | 28,947,034,937 | 100% | ||
cyan91 | 0 | 71,711,273,062 | 100% | ||
jamtaylor | 0 | 313,410,098,138 | 100% | ||
densmirnov | 0 | 1,483,321,917 | 100% | ||
gavvet | 0 | 2,302,541,458,557 | 100% | ||
steemship | 0 | 491,692,622,159 | 60% | ||
kaj-huisman | 0 | 509,762,925 | 100% | ||
eatgrits | 0 | 930,010,092 | 100% | ||
fkn | 0 | 22,861,486,625 | 100% | ||
kingscrown | 0 | 117,775,372,495 | 100% | ||
hipster | 0 | 763,519,023,703 | 100% | ||
spaninv | 0 | 4,945,431,470 | 100% | ||
instructor2121 | 0 | 51,500,782,123 | 100% | ||
teamsteem | 0 | 442,625,461,152 | 100% | ||
elishagh1 | 0 | 30,060,709,395 | 100% | ||
cryptoctopus | 0 | 1,387,715,395,957 | 100% | ||
nanzo-scoop | 0 | 1,350,631,770,906 | 100% | ||
acidyo | 0 | 79,249,802,667 | 100% | ||
hossary | 0 | 41,129,362,533 | 45% | ||
steve-walschot | 0 | 419,011,468,385 | 100% | ||
mummyimperfect | 0 | 149,909,593,163 | 100% | ||
klye | 0 | 154,053,007,442 | 100% | ||
cryptofunk | 0 | 14,333,912,897 | 100% | ||
blakemiles84 | 0 | 224,410,602,289 | 100% | ||
andu | 0 | 40,932,975,191 | 100% | ||
theshell | 0 | 25,199,610,219 | 100% | ||
ak2020 | 0 | 63,877,600,542 | 100% | ||
thecryptofiend | 0 | 385,365,708,694 | 100% | ||
brich | 0 | 13,612,352,191 | 100% | ||
drinkzya | 0 | 32,872,016,670 | 100% | ||
eric-boucher | 0 | 78,507,747,238 | 100% | ||
noganoo | 0 | 38,102,933,906 | 100% | ||
applecrisp | 0 | 3,903,675,508 | 100% | ||
hedge-x | 0 | 566,992,641,474 | 100% | ||
hisnameisolllie | 0 | 171,964,982,998 | 100% | ||
wingz | 0 | 101,555,904,092 | 100% | ||
juanmiguelsalas | 0 | 53,862,136,069 | 100% | ||
kenny-crane | 0 | 119,056,961,131 | 100% | ||
pangur-ban | 0 | 2,495,294,066 | 100% | ||
ratel | 0 | 21,972,614,759 | 100% | ||
thecryptodrive | 0 | 189,588,672,539 | 100% | ||
faddat | 0 | 137,235,211,649 | 100% | ||
gardening | 0 | 359,223,220 | 100% | ||
survival | 0 | 359,372,967 | 100% | ||
arisa | 0 | 7,848,197,902 | 100% | ||
schro | 0 | 116,447,891,533 | 100% | ||
tee-em | 0 | 61,463,458,021 | 100% | ||
michaelx | 0 | 23,383,152,644 | 100% | ||
anwenbaumeister | 0 | 509,711,767,514 | 60% | ||
grandpere | 0 | 49,781,529,338 | 100% | ||
albertogm | 0 | 30,852,786,268 | 100% | ||
ozzy-vega | 0 | 41,240,376,364 | 100% | ||
christoryan | 0 | 13,950,770,864 | 100% | ||
finpunk | 0 | 35,325,194,472 | 50% | ||
geoffrey | 0 | 364,851,295,398 | 100% | ||
seth-krings | 0 | 11,913,670,451 | 100% | ||
crok | 0 | 7,461,800,313 | 100% | ||
lukestokes | 0 | 370,250,575,095 | 100% | ||
christoph3 | 0 | 11,488,217,981 | 100% | ||
technology | 0 | 37,053,405,488 | 100% | ||
tyler-fletcher | 0 | 8,760,311,605 | 100% | ||
emily-cook | 0 | 45,835,397,537 | 100% | ||
razvanelulmarin | 0 | 69,867,500,413 | 100% | ||
fyrstikken | 0 | 54,685,227,748 | 2% | ||
cryptoiskey | 0 | 70,246,016,390 | 100% | ||
mrhankeh | 0 | 725,503,089 | 100% | ||
clement | 0 | 18,802,481,499 | 100% | ||
isteemit | 0 | 69,040,267,979 | 100% | ||
skapaneas | 0 | 13,845,570,151 | 100% | ||
auction | 0 | 5,683,513,488 | 100% | ||
bacchist | 0 | 169,935,771,370 | 100% | ||
venuspcs | 0 | 77,285,903,164 | 100% | ||
sgtechservices | 0 | 14,532,029,819 | 100% | ||
michaellamden68 | 0 | 2,109,927,299 | 100% | ||
asmolokalo | 0 | 42,393,623,700 | 100% | ||
good-karma | 0 | 124,023,978,767 | 60% | ||
roelandp | 0 | 1,036,416,985,877 | 100% | ||
romanskv | 0 | 15,040,112,057 | 100% | ||
lehard | 0 | 44,790,654,376 | 100% | ||
getssidetracked | 0 | 7,111,873,140 | 100% | ||
stealthtrader | 0 | 21,370,934,020 | 100% | ||
stranger27 | 0 | 10,405,754,543 | 100% | ||
ffane | 0 | 4,991,344,226 | 100% | ||
trees | 0 | 1,710,662,577 | 100% | ||
strawhat | 0 | 2,616,336,149 | 100% | ||
r4fken | 0 | 21,798,552,066 | 100% | ||
tcfxyz | 0 | 25,378,752,234 | 100% | ||
ukrainian | 0 | 3,640,689,622 | 100% | ||
cryptochannel | 0 | 5,325,785,846 | 100% | ||
bartcant | 0 | 990,953,449 | 100% | ||
rxhector | 0 | 2,458,005,812 | 100% | ||
picokernel | 0 | 155,957,620,483 | 100% | ||
honey | 0 | 272,495,815 | 100% | ||
coinbitgoldde | 0 | 242,878,902 | 100% | ||
furion | 0 | 318,607,985,476 | 100% | ||
ch0c0latechip | 0 | 547,153,833 | 100% | ||
strangerarray | 0 | 36,446,135,724 | 100% | ||
on0tole | 0 | 21,262,566,712 | 100% | ||
anasya | 0 | 45,117,390,388 | 100% | ||
mrgreen | 0 | 13,961,576,104 | 100% | ||
kovatelj | 0 | 279,847,604 | 100% | ||
adrehajiuh | 0 | 301,108,370 | 100% | ||
rolik | 0 | 2,006,127,990 | 100% | ||
demyan7 | 0 | 1,119,273,368 | 100% | ||
sigmajin | 0 | 73,480,537,028 | 100% | ||
ausbitbank | 0 | 102,036,262,657 | 100% | ||
jacor | 0 | 210,099,743,807 | 100% | ||
mrwang | 0 | 47,325,379,693 | 100% | ||
vl248 | 0 | 21,105,832,582 | 100% | ||
sairji | 0 | 243,269,294 | 100% | ||
dicov | 0 | 1,468,153,476 | 100% | ||
steem1653 | 0 | 5,705,075,696 | 100% | ||
losos | 0 | 2,118,281,266 | 100% | ||
sveokla | 0 | 9,857,482,644 | 100% | ||
marinabogumil | 0 | 12,243,256,214 | 100% | ||
repholder | 0 | 107,709,191,894 | 100% | ||
jesta | 0 | 1,711,597,754,992 | 100% | ||
toxonaut | 0 | 38,966,171,509 | 100% | ||
snowden | 0 | 270,636,692 | 100% | ||
bitland | 0 | 4,065,867,904 | 100% | ||
anmuravjev | 0 | 4,953,573,317 | 100% | ||
rishaaa | 0 | 288,457,782 | 100% | ||
igster | 0 | 17,260,188,152 | 100% | ||
deviedev | 0 | 22,446,854,397 | 100% | ||
dr2073 | 0 | 402,355,548 | 100% | ||
jaycobbell | 0 | 15,375,592,851 | 100% | ||
juvyjabian | 0 | 37,926,688,098 | 100% | ||
condra | 0 | 52,918,409,594 | 100% | ||
raymondspeaks | 0 | 11,129,781,388 | 100% | ||
bycz | 0 | 16,275,900,284 | 100% | ||
tbcpodcast | 0 | 117,973,099 | 100% | ||
kell234 | 0 | 4,000,004,089 | 100% | ||
pkattera | 0 | 216,103,688,232 | 100% | ||
luisucv34 | 0 | 18,006,003,571 | 100% | ||
hyiparena | 0 | 9,126,140,613 | 100% | ||
anduweb | 0 | 29,777,922,638 | 100% | ||
krystle | 0 | 30,845,885,549 | 100% | ||
inertia | 0 | 167,759,367,972 | 100% | ||
shla-rafia | 0 | 16,458,211,752 | 55% | ||
kendewitt | 0 | 76,619,105,801 | 100% | ||
arcange | 0 | 67,814,479,743 | 100% | ||
wildchild | 0 | 123,441,747 | 100% | ||
warrensteem | 0 | 20,909,225,748 | 100% | ||
the-future | 0 | 26,025,906,470 | 100% | ||
cryptojoy.com | 0 | 2,679,060,469 | 100% | ||
konti | 0 | 11,405,798,058 | 100% | ||
fiona777 | 0 | 4,134,519,160 | 100% | ||
phenom | 0 | 21,240,639,122 | 100% | ||
mynameisbrian | 0 | 80,719,663,326 | 100% | ||
kimmar | 0 | 15,288,545,097 | 100% | ||
blueorgy | 0 | 229,674,881,601 | 100% | ||
opheliafu | 0 | 171,270,762,156 | 100% | ||
thylbom | 0 | 412,736,122,110 | 100% | ||
fubar-bdhr | 0 | 82,519,691,718 | 100% | ||
bitcoiner | 0 | 66,556,810,361 | 100% | ||
tarindel | 0 | 8,793,991,609 | 100% | ||
ellamaeamor | 0 | 485,365,907 | 100% | ||
liberosist | 0 | 244,074,206,777 | 100% | ||
deanliu | 0 | 56,867,798,715 | 100% | ||
siol | 0 | 600,168,001 | 100% | ||
sharker | 0 | 18,144,606,266 | 100% | ||
tokyodude | 0 | 6,188,119,197 | 100% | ||
sokal | 0 | 8,639,721,753 | 100% | ||
hemp | 0 | 1,690,432,920 | 100% | ||
flowers | 0 | 171,890,738 | 100% | ||
pokemon | 0 | 284,226,671 | 100% | ||
zaebars | 0 | 104,124,197,598 | 100% | ||
seb | 0 | 1,143,755,298 | 100% | ||
positive | 0 | 18,662,722,566 | 100% | ||
raymonjohnstone | 0 | 4,799,204,746 | 100% | ||
jedau | 0 | 5,014,721,465 | 100% | ||
sokoloffa | 0 | 4,836,598,214 | 100% | ||
social | 0 | 156,027,939 | 100% | ||
steemchain | 0 | 147,269,948 | 100% | ||
whalepool | 0 | 122,099,103 | 100% | ||
mondeja | 0 | 5,385,170,186 | 100% | ||
mysteem | 0 | 5,932,807,188 | 60% | ||
crypto.owl | 0 | 14,924,846,807 | 100% | ||
johnsmith | 0 | 204,044,460,494 | 100% | ||
winstonwolfe | 0 | 85,523,332,320 | 100% | ||
kooshikoo | 0 | 27,909,630,157 | 100% | ||
claudiop63 | 0 | 89,553,004,165 | 100% | ||
tygergamer | 0 | 15,587,727,704 | 100% | ||
fnait | 0 | 1,719,848,572 | 100% | ||
samu-paha | 0 | 263,143,259 | 100% | ||
kibela | 0 | 2,146,593,263 | 100% | ||
greymass | 0 | 23,948,037,917 | 100% | ||
smailer | 0 | 97,901,901,039 | 100% | ||
tommyhansen | 0 | 76,692,629,952 | 100% | ||
dmilash | 0 | 31,767,467,626 | 100% | ||
jasonstaggers | 0 | 66,217,553,524 | 100% | ||
jed78 | 0 | 9,357,817,691 | 100% | ||
shortcut | 0 | 76,104,453,692 | 100% | ||
steemdrive | 0 | 143,206,757,609 | 100% | ||
bergy | 0 | 7,324,648,406 | 100% | ||
gomeravibz | 0 | 47,884,734,699 | 100% | ||
nekromarinist | 0 | 48,981,806,025 | 100% | ||
theprophet0 | 0 | 84,305,107,250 | 100% | ||
felixxx | 0 | 67,420,616,442 | 100% | ||
merej99 | 0 | 65,383,736,360 | 100% | ||
always1success | 0 | 12,715,184,288 | 100% | ||
timcliff | 0 | 145,871,117,593 | 100% | ||
transhuman | 0 | 2,337,532,549 | 55% | ||
cmp2020 | 0 | 27,604,215,721 | 100% | ||
brendio | 0 | 73,825,194,673 | 100% | ||
asdes | 0 | 9,100,378,491 | 100% | ||
mama-steem | 0 | 3,125,352,119 | 100% | ||
denn | 0 | 13,300,874,495 | 100% | ||
achim86 | 0 | 28,510,044,487 | 100% | ||
ullikume | 0 | 9,034,221,873 | 100% | ||
marinaz | 0 | 2,404,641,722 | 100% | ||
stephen.king989 | 0 | 27,033,335,992 | 100% | ||
kurtbeil | 0 | 121,255,080,317 | 100% | ||
uuuhha | 0 | 25,669,123,814 | 100% | ||
romancs | 0 | 5,805,897,903 | 100% | ||
steemleak | 0 | 9,304,975,353 | 100% | ||
shiri | 0 | 1,473,599,143 | 100% | ||
zahar | 0 | 5,048,467,325 | 100% | ||
ipumba | 0 | 6,987,226,652 | 100% | ||
d3nv3r | 0 | 2,852,604,823 | 100% | ||
dolov | 0 | 1,527,801,914 | 60% | ||
ekitcho | 0 | 735,219,959,252 | 100% | ||
bigsambucca | 0 | 1,347,524,896 | 100% | ||
steemradio | 0 | 779,027,458 | 100% | ||
randyclemens | 0 | 19,647,396,960 | 100% | ||
krishtopa | 0 | 121,136,516,908 | 100% | ||
future24 | 0 | 61,563,298,695 | 100% | ||
villainblack | 0 | 11,215,720,222 | 100% | ||
cmorton | 0 | 1,977,351,030 | 50% | ||
numberone | 0 | 11,078,558,026 | 100% | ||
bryan-imhoff | 0 | 40,155,640,715 | 100% | ||
vegascomic | 0 | 14,249,388,826 | 100% | ||
ottodv | 0 | 63,499,232,562 | 100% | ||
stevescriber | 0 | 326,698,962 | 100% | ||
nano2nd | 0 | 120,154,429 | 100% | ||
nextgen622 | 0 | 20,367,120,517 | 100% | ||
razberrijam | 0 | 629,719,190 | 100% | ||
kyriacos | 0 | 98,893,914,632 | 100% | ||
pjheinz | 0 | 17,365,644,579 | 100% | ||
cryptoblu | 0 | 101,173,333 | 100% | ||
virtualgrowth | 0 | 8,357,784,950 | 30% | ||
jayfox | 0 | 2,341,440,293 | 100% | ||
seadroo22 | 0 | 3,934,981,168 | 100% | ||
jesus2 | 0 | 190,713,576 | 100% | ||
dollarvigilante | 0 | 1,267,586,533,076 | 100% | ||
anotherjoe | 0 | 186,653,044,664 | 100% | ||
lamech-m | 0 | 4,896,815,465 | 100% | ||
kafkanarchy84 | 0 | 83,785,173,157 | 100% | ||
serejandmyself | 0 | 307,590,129,999 | 100% | ||
pollina | 0 | 582,634,940 | 100% | ||
awgbibb | 0 | 11,349,605,836 | 100% | ||
neptun | 0 | 478,481,966,196 | 100% | ||
rjbauer85 | 0 | 741,550,122 | 100% | ||
jaredcwillis | 0 | 8,631,126,447 | 100% | ||
dark.sun | 0 | 246,378,037 | 100% | ||
mrlogic | 0 | 17,598,712,136 | 100% | ||
kamil5 | 0 | 1,720,714,551 | 100% | ||
garywilson | 0 | 10,410,431,298 | 100% | ||
professorx | 0 | 7,752,432,254 | 100% | ||
barrycooper | 0 | 170,195,418,409 | 100% | ||
sethlinson | 0 | 25,060,257,492 | 100% | ||
hilarski | 0 | 215,645,603,896 | 100% | ||
imag1ne | 0 | 4,371,046,121 | 100% | ||
shadowspub | 0 | 15,018,840,498 | 100% | ||
leno4ek | 0 | 2,113,403,509 | 100% | ||
rimann | 0 | 8,395,971,836 | 100% | ||
escapeamericanow | 0 | 3,829,879,220 | 100% | ||
etcmike | 0 | 138,805,476,292 | 50% | ||
englishtchrivy | 0 | 18,131,169,030 | 25% | ||
nulliusinverba | 0 | 7,605,670,799 | 100% | ||
sharingeverybite | 0 | 43,437,622,571 | 100% | ||
pollux.one | 0 | 72,620,836,771 | 100% | ||
shenanigator | 0 | 279,464,277,613 | 100% | ||
charlie777pt | 0 | 4,493,435,281 | 100% | ||
carrinm | 0 | 161,217,657,143 | 100% | ||
daveks | 0 | 110,122,495,314 | 100% | ||
mikehere | 0 | 23,513,214,736 | 100% | ||
ivet | 0 | 12,583,268,229 | 50% | ||
richardcrill | 0 | 59,929,961,800 | 100% | ||
blockcodes | 0 | 2,050,095,281 | 100% | ||
chrisaiki | 0 | 1,057,809,545 | 100% | ||
nadin3 | 0 | 12,062,652,918 | 100% | ||
xanoxt | 0 | 45,534,012,134 | 100% | ||
victoriart | 0 | 19,183,539,229 | 100% | ||
tibonova | 0 | 9,504,742,974 | 100% | ||
l0k1 | 0 | 55,698,756,913 | 100% | ||
titusfrost | 0 | 20,253,535,372 | 100% | ||
triplep | 0 | 1,438,043,224 | 100% | ||
maryfromsochi | 0 | 5,059,925,539 | 100% | ||
tatianka | 0 | 4,369,357,351 | 100% | ||
debmund | 0 | 2,035,101,499 | 100% | ||
zettar | 0 | 3,293,508,277 | 100% | ||
wise-elf | 0 | 56,784,141 | 100% | ||
freewallet | 0 | 0 | 0% | ||
the-ego-is-you | 0 | 2,009,610,404 | 100% | ||
kiwideb | 0 | 43,862,789,154 | 100% | ||
jacobts | 0 | 5,549,840,778 | 100% | ||
dubi | 0 | 112,238,600,231 | 100% | ||
pjo | 0 | 2,023,989,338 | 100% | ||
goose | 0 | 11,119,683,087 | 100% | ||
elena-singer | 0 | 12,655,944,357 | 100% | ||
renzoarg | 0 | 12,660,866,509 | 100% | ||
finleyexp | 0 | 861,771,082 | 60% | ||
dexter-k | 0 | 74,243,777,593 | 100% | ||
steemboost | 0 | 2,276,315,334 | 100% | ||
ct-gurus | 0 | 1,538,518,716 | 100% | ||
sci | 0 | 1,439,851,288 | 100% | ||
charlieshrem | 0 | 1,634,622,491,349 | 100% | ||
tracemayer | 0 | 40,233,813,296 | 100% | ||
littlescribe | 0 | 14,958,340,703 | 100% | ||
feruz | 0 | 574,267,858 | 100% | ||
steemafon | 0 | 1,886,941,236 | 100% | ||
burnin | 0 | 13,979,762,127 | 100% | ||
bestoftherest | 0 | 4,743,900,847 | 100% | ||
z3r0d4yz | 0 | 1,105,388,259 | 100% | ||
bitcoinparadise | 0 | 2,507,070,182 | 20% | ||
anton333 | 0 | 11,545,462,420 | 100% | ||
ballinconscious | 0 | 15,072,233,347 | 100% | ||
gringalicious | 0 | 177,897,718,518 | 100% | ||
zodiac | 0 | 279,855,198 | 100% | ||
paxmagnus | 0 | 23,245,591,646 | 100% | ||
robinhoodwhale | 0 | 343,187,137,722 | 100% | ||
freebornangel | 0 | 6,291,678,910 | 100% | ||
steemsquad | 0 | 2,648,921,852 | 100% | ||
pickoum | 0 | 21,783,276,933 | 100% | ||
inarix03 | 0 | 114,050,299 | 100% | ||
bitcoiner1 | 0 | 816,320,496 | 100% | ||
arama | 0 | 1,814,727,265,799 | 100% | ||
ekaterinka | 0 | 4,019,215,139 | 100% | ||
drac59 | 0 | 4,728,947,885 | 100% | ||
develcuy | 0 | 6,856,464,030 | 100% | ||
greatdabu | 0 | 73,831,454,122 | 100% | ||
psyduck | 0 | 130,155,880 | 100% | ||
lajulius | 0 | 9,669,046,377 | 100% | ||
jang | 0 | 12,182,477,271 | 100% | ||
steemalf | 0 | 5,400,059,490 | 93% | ||
borishaifa | 0 | 13,730,903,070 | 100% | ||
mapalatv | 0 | 3,321,760,102 | 100% | ||
stringer | 0 | 736,414,296 | 100% | ||
teemsteem | 0 | 107,843,244 | 100% | ||
thegame | 0 | 1,555,849,652 | 30% | ||
lloyddavis | 0 | 7,665,618,611 | 75% | ||
haphazard-hstead | 0 | 26,633,504,844 | 100% | ||
fortinbuff | 0 | 11,847,662,547 | 100% | ||
surpassinggoogle | 0 | 10,828,998,086 | 100% | ||
steembets | 0 | 1,580,098,314 | 30% | ||
steemitrecipes | 0 | 13,788,220,285 | 100% | ||
luzcypher | 0 | 104,503,224,214 | 100% | ||
darkminded153 | 0 | 15,257,525,786 | 100% | ||
i-spec | 0 | 1,510,307,677 | 100% | ||
spanishwhale | 0 | 696,985,540 | 100% | ||
grisha-danunaher | 0 | 21,703,915,180 | 100% | ||
dylanhobalart | 0 | 8,546,429,579 | 100% | ||
curie | 0 | 618,189,605,956 | 100% | ||
killbis | 0 | 7,100,554,251 | 100% | ||
cebymaster | 0 | 11,733,668,494 | 100% | ||
dhrms | 0 | 2,371,542,941 | 100% | ||
kiks14 | 0 | 159,918,982 | 100% | ||
htyfn | 0 | 4,592,334,344 | 100% | ||
cub1 | 0 | 8,434,781,088 | 100% | ||
anasz | 0 | 29,929,478,444 | 100% | ||
teamsteem-live | 0 | 159,472,914 | 100% | ||
rusteemitblog | 0 | 10,518,043,830 | 100% | ||
chainsquad | 0 | 33,618,536,516 | 100% | ||
safar01 | 0 | 17,730,728,793 | 100% | ||
proverbs | 0 | 333,903,034 | 100% | ||
dianargenti | 0 | 4,543,427,089 | 100% | ||
pinc | 0 | 106,300,566 | 100% | ||
boomer | 0 | 159,742,826 | 100% | ||
modernbukowski | 0 | 3,778,869,168 | 100% | ||
majes | 0 | 19,452,512,080 | 100% | ||
dealzgal | 0 | 163,618,989 | 100% | ||
orenshani7 | 0 | 17,976,026,378 | 100% | ||
storage | 0 | 186,766,185 | 100% | ||
cbd | 0 | 183,480,846 | 100% | ||
junk | 0 | 183,470,405 | 100% | ||
hug | 0 | 183,499,364 | 100% | ||
bearcub | 0 | 184,146,847 | 100% | ||
cyberpunk | 0 | 183,499,331 | 100% | ||
reddust | 0 | 58,702,005,660 | 100% | ||
keisha | 0 | 182,727,735 | 100% | ||
blackmarket | 0 | 186,030,485 | 100% | ||
gifts | 0 | 187,595,661 | 100% | ||
muffin | 0 | 154,208,038 | 100% | ||
int | 0 | 182,750,639 | 100% | ||
sirandrei | 0 | 189,026,073 | 100% | ||
gamer00 | 0 | 133,544,102,269 | 100% | ||
expat | 0 | 97,231,769 | 100% | ||
therajmahal | 0 | 2,865,921,095 | 100% | ||
steemtrail | 0 | 23,049,835,286 | 100% | ||
miqdad | 0 | 141,416,001 | 100% | ||
marel | 0 | 2,721,751,902 | 100% | ||
steemlift | 0 | 5,828,197,936 | 100% | ||
toddemaher1 | 0 | 2,273,543,893 | 100% | ||
steemsports | 0 | 1,109,122,897,301 | 100% | ||
otterproper | 0 | 148,697,336 | 100% | ||
tomino | 0 | 156,478,074,506 | 100% | ||
steemvest17 | 0 | 33,099,699,225 | 100% | ||
kachinhenry | 0 | 49,745,879,057 | 100% | ||
alcibiades | 0 | 16,979,319,558 | 100% | ||
tdv.witness | 0 | 26,524,258,407 | 100% | ||
digit | 0 | 3,289,221,691 | 100% | ||
hovo | 0 | 143,709,793 | 100% | ||
icorating | 0 | 1,657,107,875 | 100% | ||
supergoodliving | 0 | 30,896,684,905 | 100% | ||
voronenka | 0 | 2,445,659,797 | 100% | ||
meanpeoplesuck | 0 | 139,723,141 | 100% | ||
aaront | 0 | 204,151,236 | 100% | ||
mental | 0 | 276,815,746 | 100% | ||
ianboil | 0 | 5,411,395,766 | 100% | ||
jdbry | 0 | 2,365,026,679 | 100% | ||
zatrhas | 0 | 5,353,731,582 | 100% | ||
zathras | 0 | 7,138,544,983 | 100% | ||
ebryans | 0 | 15,613,279,610 | 100% | ||
dragosroua | 0 | 78,975,623,390 | 100% | ||
jessamynorchard | 0 | 18,512,276,466 | 100% | ||
steemspeak | 0 | 222,757,653 | 2% | ||
tablettenformat | 0 | 977,953,185 | 100% | ||
gif-art | 0 | 140,519,172 | 100% | ||
dropahead | 0 | 138,286,277 | 100% | ||
voterinterstpool | 0 | 142,059,939 | 100% | ||
max-max | 0 | 6,371,005,424 | 100% | ||
raluca | 0 | 9,587,307,752 | 100% | ||
sstefan | 0 | 11,369,225,127 | 100% | ||
idnit | 0 | 2,668,494,931 | 100% | ||
joshuaatiemo | 0 | 844,868,162 | 100% | ||
jejujinfarm | 0 | 167,520,188,638 | 100% | ||
garvofe | 0 | 5,236,401,341 | 100% | ||
astrologybits | 0 | 434,569,571 | 100% | ||
xochicotta | 0 | 13,241,654,560 | 100% | ||
steemland.com | 0 | 1,576,876,123 | 30% | ||
joanaltres | 0 | 47,494,972,599 | 100% | ||
m3rcos1ty | 0 | 172,745,465 | 100% | ||
expatembassy | 0 | 90,982,855 | 100% | ||
xer | 0 | 73,348,041,658 | 100% | ||
stevebj | 0 | 87,607,952 | 100% | ||
travel-trail | 0 | 1,752,771,561 | 100% | ||
food-trail | 0 | 287,779,897 | 100% | ||
gardening-trail | 0 | 2,106,310,404 | 100% | ||
business-trail | 0 | 1,024,171,623 | 100% | ||
crypto-trail | 0 | 370,991,037 | 100% | ||
chessminator | 0 | 122,041,983 | 100% | ||
siberianshamen | 0 | 216,049,357 | 100% | ||
liliana.duarte | 0 | 23,570,944,297 | 100% | ||
foraging-trail | 0 | 1,155,067,238 | 100% | ||
muhtadiaremi | 0 | 2,708,210,768 | 100% | ||
artemisnorth | 0 | 1,666,019,049 | 100% | ||
italian-trail | 0 | 358,766,985 | 100% | ||
bitcoiner10 | 0 | 632,286,946 | 100% | ||
bitcoiner11 | 0 | 344,499,579 | 100% | ||
breezin | 0 | 2,001,564,818 | 60% | ||
baerdric | 0 | 25,881,285,174 | 100% | ||
mrfoot | 0 | 1,336,481,285 | 100% | ||
excavator | 0 | 247,378,018 | 100% | ||
pozitivityspace | 0 | 1,780,927,223 | 100% | ||
steempredict | 0 | 630,304,936 | 100% | ||
commenthunter | 0 | 1,480,036,894 | 100% | ||
bitcoiner12 | 0 | 175,901,049 | 100% | ||
bitcoiner21 | 0 | 372,130,603 | 100% | ||
gutzofter | 0 | 33,414,573,383 | 100% | ||
fosho | 0 | 606,084,546 | 100% | ||
mistere | 0 | 580,408,438 | 100% | ||
bitcoiner13 | 0 | 70,613,869 | 100% | ||
bitcoiner14 | 0 | 58,841,112 | 100% | ||
bitcoiner15 | 0 | 58,836,835 | 100% | ||
bitcoiner16 | 0 | 85,239,854 | 100% | ||
bitcoiner22 | 0 | 173,889,980 | 100% | ||
bitcoiner23 | 0 | 69,668,030 | 100% | ||
teukumukhlis | 0 | 1,971,622,434 | 100% | ||
godzilla | 0 | 603,664,325 | 100% | ||
alex1983ch | 0 | 4,340,667,033 | 100% | ||
bitcoiner41 | 0 | 103,844,113 | 100% | ||
bitcoiner100 | 0 | 758,690,481 | 100% | ||
bitcoiner61 | 0 | 650,893,710 | 100% | ||
bitcoiner62 | 0 | 522,002,033 | 100% | ||
bitcoiner63 | 0 | 321,658,241 | 100% | ||
bitcoiner64 | 0 | 164,548,654 | 100% | ||
hopehuggs | 0 | 10,093,754,154 | 100% | ||
technovedanta | 0 | 24,412,262,865 | 100% | ||
esteemapp | 0 | 596,170,826 | 100% | ||
bitcoiner65 | 0 | 114,814,628 | 100% | ||
steem-myanmar | 0 | 547,012,397 | 100% | ||
chessmasters | 0 | 19,441,740,138 | 100% | ||
bitcoiner66 | 0 | 80,304,867 | 100% | ||
bitcoiner67 | 0 | 68,761,689 | 100% | ||
bitcoiner68 | 0 | 95,224,796 | 100% | ||
chiliec | 0 | 23,302,959,504 | 100% | ||
steemprentice | 0 | 15,808,261,046 | 30% | ||
collabornation | 0 | 1,299,053,627 | 100% | ||
spbesner | 0 | 7,318,258,346 | 100% | ||
sweetsteem | 0 | 350,370,089 | 100% | ||
steemperor | 0 | 26,633,183,389 | 100% | ||
steempire | 0 | 79,401,488,321 | 100% | ||
bitcoiner-61 | 0 | 2,033,482,482 | 100% | ||
mafeeva | 0 | 26,755,320,329 | 100% | ||
bitcoiner-100 | 0 | 833,492,093 | 100% | ||
reisman | 0 | 2,886,155,003 | 100% | ||
bitcoiner-41 | 0 | 241,804,944 | 100% | ||
bitcoiner-62 | 0 | 1,325,544,082 | 100% | ||
bitcoiner-63 | 0 | 777,892,898 | 100% | ||
bitcoiner-64 | 0 | 510,854,442 | 100% | ||
bitcoiner-21 | 0 | 756,179,405 | 100% | ||
bitcoiner-22 | 0 | 220,182,690 | 100% | ||
bitcoiner-81 | 0 | 381,949,968 | 100% | ||
bitcoiner-1 | 0 | 1,159,630,742 | 100% | ||
bitcoiner-65 | 0 | 212,363,642 | 100% | ||
bitcoiner-42 | 0 | 94,370,956 | 100% | ||
bitcoiner-10 | 0 | 458,233,018 | 100% | ||
bitcoiner-11 | 0 | 165,628,265 | 100% | ||
bitcoiner-82 | 0 | 99,187,705 | 100% | ||
idnit1 | 0 | 1,737,197,058 | 100% | ||
damiendecoster | 0 | 1,242,837,299 | 100% | ||
bottymcbotface | 0 | 321,379,123 | 100% | ||
chocolate-ghost | 0 | 570,924,372 | 100% | ||
yucatan-white | 0 | 615,996,152 | 100% | ||
helicopter | 0 | 1,024,546,073 | 100% | ||
lindo | 0 | 652,048,433 | 100% | ||
bitcoiner-66 | 0 | 102,189,060 | 100% | ||
kaneyung | 0 | 567,318,417 | 100% | ||
beomelda | 0 | 563,368,715 | 100% | ||
taskmanager | 0 | 12,661,566,768 | 20% | ||
seablue | 0 | 3,922,202,138 | 50% | ||
writingamigo | 0 | 23,801,489,828 | 100% | ||
timm | 0 | 310,757,190 | 100% | ||
chappers | 0 | 22,529,742,978 | 100% | ||
milimali | 0 | 2,201,180,021 | 100% | ||
steemittalk | 0 | 1,692,044,297 | 100% | ||
cardboard | 0 | 6,390,267,309 | 100% | ||
vcelier | 0 | 238,087,300,900 | 100% | ||
libert | 0 | 546,811,570 | 100% | ||
coffeehouse | 0 | 692,099,660 | 100% | ||
the-devil | 0 | 632,371,711 | 100% | ||
songkran | 0 | 543,725,685 | 100% | ||
val-c | 0 | 543,623,123 | 100% | ||
bittrax | 0 | 542,792,490 | 100% | ||
polloniex | 0 | 541,125,678 | 100% | ||
dreemit | 0 | 26,090,959,503 | 100% | ||
saleg25 | 0 | 1,922,933,360 | 100% | ||
john-schroder | 0 | 2,051,131,233 | 100% | ||
killuminatic | 0 | 549,378,011 | 100% | ||
jcaxo83 | 0 | 1,268,296,313 | 100% | ||
tonicbbleking | 0 | 1,568,593,086 | 100% | ||
meysam | 0 | 6,963,534,761 | 100% | ||
pizzagate-trail | 0 | 2,368,520,224 | 100% | ||
appz | 0 | 541,339,514 | 100% | ||
dxrafi | 0 | 701,131,045 | 100% | ||
steemit.news | 0 | 1,083,275,569 | 100% | ||
karamellka | 0 | 4,177,675,122 | 100% | ||
hypnosisawaken | 0 | 1,128,723,922 | 100% | ||
simply1moore | 0 | 2,301,484,033 | 100% | ||
throughtheglass | 0 | 5,261,418,709 | 100% | ||
enchanting | 0 | 526,228,282 | 100% | ||
cherished | 0 | 411,468,353 | 100% | ||
the-architect | 0 | 411,491,183 | 100% | ||
danyelum | 0 | 524,267,783 | 100% | ||
crowman | 0 | 1,853,915,237 | 100% | ||
timothyb | 0 | 1,745,798,769 | 100% | ||
jphenderson | 0 | 1,703,021,319 | 100% | ||
colin-porter | 0 | 819,642,016 | 100% | ||
tamersameeh | 0 | 497,667,519 | 100% | ||
idnit0 | 0 | 764,169,532 | 100% | ||
witidnit10 | 0 | 398,549,542 | 100% | ||
smileyface | 0 | 336,130,921 | 100% | ||
angels | 0 | 373,572,258 | 100% | ||
springtime | 0 | 336,130,460 | 100% | ||
delightful | 0 | 336,080,223 | 100% | ||
charm | 0 | 336,121,995 | 100% | ||
simplest | 0 | 378,042,753 | 100% | ||
beerbot | 0 | 4,935,707,578 | 100% | ||
idnit2 | 0 | 621,092,646 | 100% | ||
idnit3 | 0 | 662,521,021 | 100% | ||
idnit4 | 0 | 583,548,917 | 100% | ||
idnit5 | 0 | 577,800,485 | 100% | ||
idnit6 | 0 | 590,377,564 | 100% | ||
idnit7 | 0 | 600,564,093 | 100% | ||
idnit8 | 0 | 574,579,411 | 100% | ||
idnit9 | 0 | 1,665,947,702 | 100% | ||
victorious | 0 | 369,573,905 | 100% | ||
legends | 0 | 413,326,884 | 100% | ||
steemnews.online | 0 | 926,784,097 | 100% | ||
clixbase | 0 | 417,945,678 | 100% | ||
organicrecreate | 0 | 4,781,918,583 | 100% | ||
standpoint | 0 | 219,563,147 | 100% | ||
michaeladamparis | 0 | 4,996,776,009 | 40% | ||
richa.proffy | 0 | 423,390,536 | 100% | ||
darth-azrael | 0 | 1,589,858,400 | 100% | ||
triddin | 0 | 29,072,020,751 | 50% | ||
avikz | 0 | 0 | 100% | ||
internutter | 0 | 2,975,541,100 | 40% | ||
christian-trail | 0 | 477,313,057 | 100% | ||
birrulibmc | 0 | 0 | 100% | ||
fiction-trail | 0 | 2,241,893,725 | 100% | ||
roydowding | 0 | 421,678,455 | 100% | ||
kostaslou | 0 | 584,593,162 | 100% | ||
noagenda | 0 | 1,971,002,325,558 | 100% | ||
get-baking | 0 | 97,960,830 | 20% | ||
nik69 | 0 | 52,137,364 | 100% | ||
herzl | 0 | 259,549,472,466 | 100% | ||
juandemarte | 0 | 909,389,865 | 100% | ||
playfulfoodie | 0 | 1,471,981,437 | 100% | ||
firesteem | 0 | 429,919,528 | 100% | ||
poetry-trail | 0 | 691,489,326 | 100% | ||
paleo-trail | 0 | 425,698,457 | 100% | ||
amazontargetz | 0 | 1,164,114,824 | 100% | ||
ericas | 0 | 417,393,443 | 100% | ||
aaronc | 0 | 417,397,240 | 100% | ||
marvink | 0 | 417,374,669 | 100% | ||
travelers | 0 | 1,077,410,077 | 100% | ||
bitcoiner-67 | 0 | 65,399,775 | 100% | ||
bitcoiner-68 | 0 | 57,712,449 | 100% | ||
bitcoiner-69 | 0 | 50,013,958 | 100% | ||
steempoll | 0 | 300,457,043 | 100% | ||
skugormihaela | 0 | 783,191,711 | 100% | ||
eem | 0 | 303,134,822 | 100% | ||
europeasahole | 0 | 417,271,248 | 100% | ||
blockained | 0 | 256,619,518 | 100% | ||
blockchained | 0 | 329,152,825 | 100% | ||
marco.world | 0 | 256,619,426 | 100% | ||
robertmacdonald | 0 | 679,263,671 | 100% | ||
neogia | 0 | 17,693,052,401 | 100% | ||
carljames | 0 | 0 | 0% | ||
wakstim | 0 | 400,527,983 | 100% | ||
snbb | 0 | 408,866,938 | 100% | ||
sminoemanuel | 0 | 417,199,568 | 100% | ||
rizkiavonna | 0 | 408,854,329 | 100% | ||
reddyyeswanth | 0 | 408,852,866 | 100% | ||
deejaylp | 0 | 417,183,890 | 100% | ||
fahmiauliasfr | 0 | 73,788,753 | 100% | ||
oscarps | 0 | 0 | 100% | ||
dnjsgkr11 | 0 | 0 | 100% | ||
muftykutink | 0 | 0 | 100% | ||
muhammadtalal | 0 | 0 | 100% | ||
musliadiamd | 0 | 0 | 100% |
You guys are really pushing the boat out, I don't see as much help on other blockchains! Thanks for all your efforts.
author | cryptofunk |
---|---|
permlink | re-chainsquad-python-steem-0-4-0---massive-changes-to-greatly-simplify-onboarding---merged-steemtools-20170118t161241526z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-01-18 16:12:39 |
last_update | 2017-01-18 16:12:39 |
depth | 1 |
children | 0 |
last_payout | 2017-02-18 22:36: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 | 117 |
author_reputation | 22,006,702,786,195 |
root_title | "Python STEEM 0.4.0 - Massive changes to greatly simplify onboarding - Merged Steemtools" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,279,776 |
net_rshares | 0 |
Thanks for posting the extra goodness our way and keep us all up to date on the matters. Great job! All for one and one for all! Namaste :)
author | eric-boucher |
---|---|
permlink | re-chainsquad-python-steem-0-4-0---massive-changes-to-greatly-simplify-onboarding---merged-steemtools-20170118t231621976z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-01-18 23:16:21 |
last_update | 2017-01-18 23:16:21 |
depth | 1 |
children | 0 |
last_payout | 2017-02-18 22:36: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 | 144 |
author_reputation | 68,503,601,066,539 |
root_title | "Python STEEM 0.4.0 - Massive changes to greatly simplify onboarding - Merged Steemtools" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,282,673 |
net_rshares | 78,507,747,238 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
eric-boucher | 0 | 78,507,747,238 | 100% |
>Providing Keys: Here, you can provide the keys for your accounts manually. All you need to do is add the wif keys for the accounts you want to use as a simple array using the keys parameter to Steem(). how do i provide a single key as a simple array ? i checked steem.py to see "kwargs " and "keys" somewhere ... I don't understand, how that's supposed to work. I like the functions that came with steemtools. Good Work.
author | felixxx |
---|---|
permlink | re-chainsquad-python-steem-0-4-0---massive-changes-to-greatly-simplify-onboarding---merged-steemtools-20170124t143538151z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-01-24 14:35:39 |
last_update | 2017-01-24 14:42:06 |
depth | 1 |
children | 8 |
last_payout | 2017-02-18 22:36: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 | 424 |
author_reputation | 217,825,762,716,184 |
root_title | "Python STEEM 0.4.0 - Massive changes to greatly simplify onboarding - Merged Steemtools" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,330,123 |
net_rshares | 0 |
author | xeroc |
---|---|
permlink | re-felixxx-re-chainsquad-python-steem-0-4-0---massive-changes-to-greatly-simplify-onboarding---merged-steemtools-20170124t145925092z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-01-24 14:59:24 |
last_update | 2017-01-24 14:59:36 |
depth | 2 |
children | 7 |
last_payout | 2017-02-18 22:36: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 | 73 |
author_reputation | 118,819,064,085,695 |
root_title | "Python STEEM 0.4.0 - Massive changes to greatly simplify onboarding - Merged Steemtools" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,330,280 |
net_rshares | 487,970,569,522 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonymous | 0 | 421,855,597,702 | 100% | ||
felixxx | 0 | 66,114,971,820 | 100% |
I tried a list. It then asks me for a passphrase to my new wallet. It doesn't use the key/ doesn't take the argument.
author | felixxx |
---|---|
permlink | re-xeroc-re-felixxx-re-chainsquad-python-steem-0-4-0---massive-changes-to-greatly-simplify-onboarding---merged-steemtools-20170124t150306186z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-01-24 15:03:06 |
last_update | 2017-01-24 15:03:39 |
depth | 3 |
children | 6 |
last_payout | 2017-02-18 22:36: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 | 118 |
author_reputation | 217,825,762,716,184 |
root_title | "Python STEEM 0.4.0 - Massive changes to greatly simplify onboarding - Merged Steemtools" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,330,315 |
net_rshares | 0 |
This is a pretty significant release, and due to the substantial refactoring and re-design efforts, it is not fully backwards compatible. If your project depends on the old version of the piston stack, I encourage you to skim trough the [documentation](http://pysteem.com/) and play with some core utilities in REPL to get a feel for underlying changes and a plethora of new features.
author | furion |
---|---|
permlink | re-chainsquad-python-steem-0-4-0---massive-changes-to-greatly-simplify-onboarding---merged-steemtools-20170118t151251392z |
category | steem |
json_metadata | {"tags":["steem"],"links":["http://pysteem.com/"],"app":"steemit/0.1"} |
created | 2017-01-18 15:12:51 |
last_update | 2017-01-18 15:13:30 |
depth | 1 |
children | 1 |
last_payout | 2017-02-18 22:36: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 | 386 |
author_reputation | 116,503,940,714,958 |
root_title | "Python STEEM 0.4.0 - Massive changes to greatly simplify onboarding - Merged Steemtools" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,279,340 |
net_rshares | 137,998,161,250 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kenny-crane | 0 | 116,627,227,230 | 100% | ||
stealthtrader | 0 | 21,370,934,020 | 100% |
> it is not fully backwards compatible. Thanks for the heads-up.
author | biophil |
---|---|
permlink | re-furion-re-chainsquad-python-steem-0-4-0---massive-changes-to-greatly-simplify-onboarding---merged-steemtools-20170118t200911531z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-01-18 20:09:12 |
last_update | 2017-01-18 20:09:12 |
depth | 2 |
children | 0 |
last_payout | 2017-02-18 22:36: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 | 65 |
author_reputation | 45,223,914,794,461 |
root_title | "Python STEEM 0.4.0 - Massive changes to greatly simplify onboarding - Merged Steemtools" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,281,473 |
net_rshares | 12,105,170,572 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
matrixdweller | 0 | 12,105,170,572 | 100% |
Always great to see the work you are doing for the platform! I JUST got a Raspberry Pi 3 Monday, and installed Piston on it. I wrote a few test programs to interact with steem; very cool and fun! So do I need to do pip3 install --upgrade steem or not? I'm not sure! :-)
author | kenny-crane |
---|---|
permlink | re-chainsquad-python-steem-0-4-0---massive-changes-to-greatly-simplify-onboarding---merged-steemtools-20170118t150940245z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-01-18 15:09:39 |
last_update | 2017-01-18 15:09:39 |
depth | 1 |
children | 1 |
last_payout | 2017-02-18 22:36: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 | 273 |
author_reputation | 235,491,861,653,057 |
root_title | "Python STEEM 0.4.0 - Massive changes to greatly simplify onboarding - Merged Steemtools" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,279,320 |
net_rshares | 0 |
If all works fine, you don't *need* to. It's just a bit nicer. You will also see a new release of `piston` quite soon. Once you updated piston, you will probably see a couple warning messages. That is because most of piston's "library"-sh functions have been moved to python-steem. You can upgrade you code afterwards by simply replacing from piston.XXXXX import YYYYYY to from steem.XXXXXX import YYYYY
author | xeroc |
---|---|
permlink | re-kenny-crane-re-chainsquad-python-steem-0-4-0---massive-changes-to-greatly-simplify-onboarding---merged-steemtools-20170118t151809226z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-01-18 15:18:09 |
last_update | 2017-01-18 15:18:09 |
depth | 2 |
children | 0 |
last_payout | 2017-02-18 22:36: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 | 415 |
author_reputation | 118,819,064,085,695 |
root_title | "Python STEEM 0.4.0 - Massive changes to greatly simplify onboarding - Merged Steemtools" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,279,376 |
net_rshares | 611,013,392,080 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anonymous | 0 | 421,219,536,763 | 100% | ||
full-steem-ahead | 0 | 73,166,628,087 | 100% | ||
kenny-crane | 0 | 116,627,227,230 | 100% |
Thanks for this kind Sir!!
author | mrfoot |
---|---|
permlink | re-chainsquad-python-steem-0-4-0---massive-changes-to-greatly-simplify-onboarding---merged-steemtools-20170120t040835313z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-01-20 04:08:36 |
last_update | 2017-01-20 04:08:36 |
depth | 1 |
children | 0 |
last_payout | 2017-02-18 22:36: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 | 26 |
author_reputation | 13,513,881,596,920 |
root_title | "Python STEEM 0.4.0 - Massive changes to greatly simplify onboarding - Merged Steemtools" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,293,679 |
net_rshares | 0 |
Cool...
author | reddyyeswanth |
---|---|
permlink | re-chainsquad-python-steem-0-4-0---massive-changes-to-greatly-simplify-onboarding---merged-steemtools-20170119t194329155z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2017-01-19 19:43:42 |
last_update | 2017-01-19 19:43:42 |
depth | 1 |
children | 0 |
last_payout | 2017-02-18 22:36: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 | 7 |
author_reputation | 56,252,585,067 |
root_title | "Python STEEM 0.4.0 - Massive changes to greatly simplify onboarding - Merged Steemtools" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,290,122 |
net_rshares | 0 |
<p>This post has been ranked within the top 10 most undervalued posts in the second half of Jan 18. We estimate that this post is undervalued by $27.35 as compared to a scenario in which every voter had an equal say.</p> <p>See the full rankings and details in <a href="https://steemit.com/curation/@screenname/the-daily-tribune-most-undervalued-posts-of-jan-18---part-ii">The Daily Tribune: Jan 18 - Part II</a>. You can also read about some of our methodology, data analysis and technical details in <a href="https://steemit.com/curation/@screenname/introducing-the-daily-tribune-most-undervalued-posts-of-nov-04---part-i">our initial post</a>.</p> <p>If you are the author and would prefer not to receive these comments, simply reply "Stop" to this comment.</p>
author | screenname |
---|---|
permlink | re-python-steem-0-4-0---massive-changes-to-greatly-simplify-onboarding---merged-steemtools-20170119t010446 |
category | steem |
json_metadata | "{"replyto": "@chainsquad/python-steem-0-4-0---massive-changes-to-greatly-simplify-onboarding---merged-steemtools"}" |
created | 2017-01-19 01:04:48 |
last_update | 2017-01-19 01:04:48 |
depth | 1 |
children | 0 |
last_payout | 2017-02-18 22:36: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 | 766 |
author_reputation | 46,276,338,038,330 |
root_title | "Python STEEM 0.4.0 - Massive changes to greatly simplify onboarding - Merged Steemtools" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,283,431 |
net_rshares | 5,446,619,263 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dobermansden | 0 | 184,158,162 | 90% | ||
lighter | 0 | 447,450,286 | 90% | ||
badman | 0 | 210,190,804 | 90% | ||
goodtime | 0 | 250,771,388 | 90% | ||
sunnyd | 0 | 317,380,113 | 90% | ||
jayc | 0 | 211,350,293 | 90% | ||
lilwayne | 0 | 915,392,688 | 90% | ||
snoopdog | 0 | 924,340,866 | 90% | ||
tyga | 0 | 1,621,379,393 | 90% | ||
bo-1 | 0 | 122,992,050 | 90% | ||
betonit | 0 | 241,213,220 | 90% |