#### Repository https://github.com/holgern/steemmonsters ### steemmonsters - a new command line tool for python Steem monsters is a fully decentralized trading card game on the steem blockchain. This new toolbox can be used to play ranked matches and to stream currently played matches. ## Installation ``` pip install steemmonsters ``` Copy https://github.com/holgern/steemmonsters/blob/master/config.json to a directory and adapt it. Start `steemmonsters` in the directory with the `config.json`. ### Windows user clone the github ``` git clone https://github.com/holgern/steemmonsters.git ``` ## Commands The steem monsters shell can be started with ``` steemmonsters ``` `config.json` must be available in the current directory of the terminal. When cloned the github instead of using pip (e.g. on windows with the anaconda terminal): ``` python steemmonsters.py ``` ### Available commands inside the tool ``` sm> stream ```  This command shows the current battles and which player are participating ``` sm> play deck_name ``` `deck_name` is one of the stored decks defined in `config.json`. E.g. `death1`:  ``` sm> play random ``` selects randomly a deck. ``` sm> show_deck deck_name ``` shows deck `deck_name`.  ## Setup the beem wallet Create a new wallet, when not already done. ``` beempy createwallet ``` Add the posting key of the player by: ``` beempy addkey ``` ## Configuration A file `config.json` must exist in the current directory with the following content: ``` { "wallet_password": "123", "account": "holger80", "mana_cap": 23, "ruleset": "Standard", "match_type": "Ranked", "decks": { "death1": ["Zintar Mortalis", "Haunted Spirit", "Skeleton Assassin", "Twisted Jester", "Haunted Spider", "Screaming Banshee", "Undead Priest"], "water1": ["Alric Stormbringer", "Naga Warrior", "Medusa", "Mischievous Mermaid", "Pirate Captain", "Crustacean King"], "fire1": ["Malric Inferno", "Serpentine Soldier", "Elemental Phoenix", "Goblin Shaman", "Fire Demon"], }, "play_counter": 1 } ``` * `wallet_password` is the `beempy` wallet password * `account`: steem user name of the player * `mana_cap`: current mana cap * `ruleset`: current rule set * `match_type`: match type * `decks` contains the different pre defined decks. There is no mana_cap check * `play_counter` diffens how often a deck is played ## How does it work The package uses beem for broadcasting the necessary custom_json and finding the transation id. ### Play a match At first a deck is build from the `config.json`. Therefore, all cards of the player are fetched by the `get_collection` function from the Api class. The card names are than matched and the card uid is selected. It is always the card with the highest level selected. In the next step, a secret is created: ``` ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(length)) ``` and the team hash is calculated: ``` m = hashlib.md5() m.update((summoner+',' + ','.join(monsters)+ ','+secret).encode("utf-8")) team_hash = m.hexdigest() ``` The first custom_json with id `sm_find_match` can then be broadcasted: ``` json_data = {"match_type":match_type, "mana_cap":mana_cap,"team_hash":team_hash,"summoner_level":summoner_level,"ruleset":ruleset} trx = self.stm.custom_json('sm_find_match', json_data, required_posting_auths=[acc["name"]]) ``` All custom_json are now streamed until a custom_json with the correct team_hash is found: ``` for h in self.b.stream(opNames=["custom_json"]): if h["id"] == 'sm_find_match': if json.loads(h['json'])["team_hash"] == team_hash: found = True break ``` The `trx_id` is then stored into the `deck` dict: ``` deck["trx_id"] = h['trx_id'] ``` It is now checked that a opponent wants to play with the `get_from_block` function from the steemmonsters api. When at least one player also searches for a match, the second custom_json is send ``` json_data = deck trx = self.stm.custom_json('sm_team_reveal', json_data, required_posting_auths=[acc["name"]]) ``` Now the battle result is checked: ``` response = requests.get("https://steemmonsters.com/transactions/lookup?trx_id=%s" % deck["trx_id"]) ``` and printed. ### Roadmap * Improved config file handling * Show more details about the battle * Fetch currently played decks and allow using them for the next battle #### How to contribute Please create issues in https://github.com/holgern/steemmonsters when something does no work or for a feature wish or improvement. Pull requests are welcome. You can contact me also in discord holger80 [Witness]#3688 #### GitHub Account https://github.com/holgern/
author | holger80 |
---|---|
permlink | steemmonsters-a-new-command-line-tool-for-battling-opponents-with-your-decks |
category | utopian-io |
json_metadata | "{"community": "busy", "app": "beempy/0.23.10", "format": "markdown", "tags": ["utopian-io", "development", "steemmonsters", "python", "busy"], "links": ["https://github.com/holgern/steemmonsters", "https://github.com/holgern/steemmonsters/blob/master/config.json", "https://github.com/holgern/"], "image": ["https://ipfs.busy.org/ipfs/QmTUKeF2hLXKyC4CaggkFp6GwGBaDcFjn8zTPxiBJKRqJN", "https://ipfs.busy.org/ipfs/QmbQrtwL2aohc2YQTgxGsXYU4WkcqWm7krcW8FQiMRjg29", "https://ipfs.busy.org/ipfs/QmbQRkUHGCHgxShzCzmyTkTsfPT8mooEcaPyjq9oQ337A3"], "canonical_url": "https://hive.blog/utopian-io/@holger80/steemmonsters-a-new-command-line-tool-for-battling-opponents-with-your-decks"}" |
created | 2018-10-19 22:02:27 |
last_update | 2020-05-23 14:46:30 |
depth | 0 |
children | 11 |
last_payout | 2018-10-26 22:02:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 75.158 HBD |
curator_payout_value | 23.389 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,976 |
author_reputation | 358,857,509,568,825 |
root_title | "steemmonsters, a new command line tool for battling opponents with your cards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,647,280 |
net_rshares | 82,585,368,685,416 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
teamsteem | 0 | 322,983,516,799 | 5% | ||
thecryptodrive | 0 | 67,551,024,638 | 30% | ||
quigua | 0 | 80,794,374 | 100% | ||
shaka | 0 | 1,575,846,110,071 | 50% | ||
twinner | 0 | 1,774,303,283,241 | 100% | ||
timcliff | 0 | 600,685,821,928 | 86% | ||
snwolak | 0 | 5,776,000,701 | 90% | ||
azizbd | 0 | 43,202,169,170 | 40% | ||
aggroed | 0 | 758,395,726,915 | 100% | ||
sambillingham | 0 | 23,766,710,032 | 100% | ||
busy.pay | 0 | 294,236,086,906 | 1.46% | ||
rach | 0 | 3,763,283,840 | 100% | ||
apsu | 0 | 8,882,178,133 | 25% | ||
teamhumble | 0 | 121,653,861,862 | 100% | ||
steemperor | 0 | 91,879,130,601 | 50% | ||
steempire | 0 | 91,921,553,295 | 50% | ||
anthonyadavisii | 0 | 45,374,941,091 | 87% | ||
ratxue | 0 | 1,476,386,174 | 100% | ||
mothership | 0 | 90,157,542,956 | 50% | ||
freebornsociety | 0 | 9,381,214,970 | 20% | ||
jarunik | 0 | 1,202,323,913,170 | 100% | ||
imperfect-one | 0 | 20,093,895,747 | 15% | ||
passion-fruit | 0 | 4,329,984,807 | 30% | ||
fortune-master | 0 | 4,304,234,526 | 30% | ||
xplosive | 0 | 3,175,505,142 | 100% | ||
unatalmaria | 0 | 270,663,251 | 100% | ||
mys | 0 | 19,413,160,751 | 15% | ||
monoc | 0 | 23,520,239 | 100% | ||
reggaemuffin | 0 | 9,946,537,143,653 | 100% | ||
masterthematrix | 0 | 34,241,513,566 | 40% | ||
anfitriones | 0 | 10,612,307 | 100% | ||
robofox | 0 | 6,145,585,209 | 100% | ||
anouk.nox | 0 | 6,898,815,497 | 25% | ||
cardumen | 0 | 108,203,421 | 100% | ||
ew-and-patterns | 0 | 278,257,007,741 | 35% | ||
haiyangdeperci | 0 | 6,824,745,106 | 20% | ||
theaustrianguy | 0 | 434,418,677,498 | 50% | ||
jacekw | 0 | 87,785,589,209 | 100% | ||
drorion | 0 | 4,334,451,708 | 50% | ||
codingdefined | 0 | 3,986,056,871 | 4.7% | ||
abigail-dantes | 0 | 585,308,167,044 | 50% | ||
pixelfan | 0 | 495,240,087 | 0.25% | ||
upgoat | 0 | 1,463,196,002 | 100% | ||
resheep | 0 | 411,257,390 | 100% | ||
upcroak | 0 | 170,815,030 | 100% | ||
glitterbooster | 0 | 3,565,869,204 | 30% | ||
badham | 0 | 102,546,479 | 50% | ||
make-a-whale | 0 | 38,942,694,123 | 6.6% | ||
jedigeiss | 0 | 641,858,270,748 | 100% | ||
boontjie | 0 | 1,486,780,379 | 100% | ||
crokkon | 0 | 95,027,265,883 | 100% | ||
kamikaze | 0 | 239,977,426,649 | 15% | ||
espoem | 0 | 2,846,071,853 | 2% | ||
yabapmatt | 0 | 2,918,319,782,745 | 100% | ||
feedyourminnows | 0 | 5,316,579,299 | 4% | ||
isnochys | 0 | 7,107,569,087 | 13% | ||
feo | 0 | 15,671,924 | 100% | ||
karinxxl | 0 | 1,670,222,424 | 25% | ||
utopian-io | 0 | 51,572,681,393,859 | 36.21% | ||
shammi | 0 | 68,371,397,440 | 75% | ||
mike-nascar | 0 | 741,473,561 | 100% | ||
cryptonik | 0 | 680,111,629 | 49% | ||
ayasha | 0 | 24,601,194,984 | 56% | ||
smitop | 0 | 1,794,788,069 | 100% | ||
greenorange | 0 | 551,604,596 | 100% | ||
bubbleburst | 0 | 4,979,909,731 | 100% | ||
qustodian | 0 | 238,934,452,122 | 61.51% | ||
obvious | 0 | 7,065,792,727 | 10% | ||
geekpowered | 0 | 61,616,191,794 | 100% | ||
steembasicincome | 0 | 1,184,343,037,465 | 25% | ||
taug | 0 | 1,062,509,388 | 25% | ||
thomasgift | 0 | 2,051,215,220 | 50% | ||
oliverschmid | 0 | 284,534,781,083 | 100% | ||
piotr-galas | 0 | 3,746,245,664 | 100% | ||
amosbastian | 0 | 94,778,363,583 | 51.95% | ||
grzesiekb | 0 | 147,624,122,325 | 100% | ||
rondras | 0 | 22,022,423,651 | 100% | ||
smjn | 0 | 15,686,665,933 | 15% | ||
steemmonsters | 0 | 562,296,943,381 | 10% | ||
mattockfs | 0 | 20,750,625,786 | 100% | ||
jarvie | 0 | 54,285,624,655 | 45% | ||
freeupvote | 0 | 0 | 100% | ||
neokuduk | 0 | 1,430,614,585 | 100% | ||
lukasmining | 0 | 2,760,514,035 | 50% | ||
michaelizer | 0 | 5,069,773,544 | 100% | ||
maxpatternman | 0 | 30,468,492,184 | 100% | ||
bearded-benjamin | 0 | 28,660,368,174 | 100% | ||
janse | 0 | 490,122,101 | 100% | ||
flugschwein | 0 | 32,109,439,792 | 75% | ||
akifane | 0 | 536,245,653 | 100% | ||
themuffinman | 0 | 72,862,165 | 100% | ||
sttest2 | 0 | 5,046,723 | 44.26% | ||
chicoree | 0 | 126,077,572 | 100% | ||
reazuliqbal | 0 | 21,659,167,673 | 35% | ||
designpod | 0 | 1,114,679,257 | 100% | ||
hakancelik | 0 | 14,651,884,304 | 20% | ||
tineschreibt | 0 | 91,595,620 | 5% | ||
mariusjuk | 0 | 69,016,788,136 | 100% | ||
schlafhacking | 0 | 99,962,228,176 | 100% | ||
louis88 | 0 | 181,022,749,421 | 100% | ||
thefunfactory | 0 | 71,099,322 | 100% | ||
someonefun | 0 | 71,091,084 | 100% | ||
funbox | 0 | 71,096,337 | 100% | ||
funlands | 0 | 406,036,837 | 100% | ||
funanime | 0 | 71,098,654 | 100% | ||
funkyfun | 0 | 71,097,808 | 100% | ||
funnyfun | 0 | 71,082,716 | 100% | ||
dmonia | 0 | 71,091,007 | 100% | ||
goldrym | 0 | 71,097,922 | 100% | ||
qeoddrir | 0 | 71,097,945 | 100% | ||
dodrorth | 0 | 71,125,518 | 100% | ||
iedot | 0 | 72,794,474 | 100% | ||
zcool | 0 | 188,102,065 | 10% | ||
dera123 | 0 | 6,426,269,116 | 100% | ||
codebull | 0 | 407,654,906 | 91% | ||
mhossain | 0 | 847,111,955 | 70% | ||
sheikhsayem | 0 | 1,336,294,056 | 70% | ||
flagawhale | 0 | 20,205,846,448 | 49% | ||
ryuna.siege | 0 | 208,831,230 | 100% | ||
ikarus56 | 0 | 900,000,613 | 5% | ||
neutralizer | 0 | 2,513,672,474 | 100% | ||
randohealer | 0 | 3,182,981,918 | 100% | ||
loosely-lucid | 0 | 544,329,553 | 87% | ||
soundworks | 0 | 847,674,444 | 100% | ||
nullahnung | 0 | 99,162,439 | 24.5% | ||
linco | 0 | 23,215,377,021 | 70% | ||
smartmeme | 0 | 771,868,305 | 43.5% | ||
lipraproductions | 0 | 314,488,132 | 25% | ||
arsadulislam | 0 | 224,105,815 | 45% | ||
k0wsk1 | 0 | 19,828,002,054 | 100% | ||
literaturkritik | 0 | 39,289,276,536 | 100% | ||
elohim4 | 0 | 392,097,975 | 3% | ||
qurator-tier-1-2 | 0 | 32,013,511,514 | 3.5% | ||
lebenaufachsen | 0 | 9,415,079,605 | 36% | ||
deman | 0 | 268,874,711 | 100% | ||
wstanley226 | 0 | 3,262,096,235 | 50% | ||
gpcx86 | 0 | 212,932,864 | 6% | ||
steemchoose | 0 | 7,176,786,030 | 0.8% | ||
stever82 | 0 | 10,483,270,176 | 100% | ||
zayedsakib | 0 | 14,568,465,513 | 70% | ||
fullnodeupdate | 0 | 3,788,231,897 | 100% | ||
mops2e | 0 | 15,043,989 | 2% | ||
justperfect | 0 | 1,517,357,084 | 100% | ||
bluengel | 0 | 224,567,716 | 100% | ||
wargamer | 0 | 556,942,192 | 100% | ||
fulltimebot40 | 0 | 123,260,203,981 | 100% | ||
fulltimebot42 | 0 | 123,217,946,557 | 100% | ||
perepilichnyy | 0 | 1,997,585,249,626 | 100% | ||
fulltimebot67 | 0 | 122,903,133,648 | 100% | ||
linkerstinker | 0 | 412,550,368 | 50% | ||
steem-ua | 0 | 427,215,353,259 | 3.26% | ||
peakmonsters | 0 | 81,595,754,244 | 100% | ||
alvinvoo | 0 | 807,134,689 | 100% | ||
jjaman | 0 | 0 | 5% | ||
steemitbuzz | 0 | 226,056,248 | 50% | ||
cj3000 | 0 | 137,549,308,139 | 50% | ||
finallynetwork | 0 | 24,468,181,332 | 100% | ||
nurah | 0 | 199,742,032 | 50% | ||
kingnosa | 0 | 137,323,002 | 50% | ||
dfen | 0 | 542,152,059 | 100% | ||
samsemilia7 | 0 | 294,922,179 | 100% | ||
steemtank | 0 | 1,935,181,996,621 | 100% |
That looks great Holger. A couple of notes: - Why don't you follow PEP8? Long lines of source codes really hurts readability. :) I suggest using [flake8](http://flake8.pycqa.org/en/latest/), and adding it as a git commit hook. (locally) - You already know the questionnaire as a long time Utopian contributor, but I had to score low on the "commit messages" evaluation. *** 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/2212232). ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | emrebeyler |
---|---|
permlink | re-holger80-steemmonsters-a-new-command-line-tool-for-battling-opponents-with-your-decks-20181020t190218197z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["http://flake8.pycqa.org/en/latest/","https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2212232","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2018-10-20 19:02:18 |
last_update | 2018-10-20 19:02:18 |
depth | 1 |
children | 1 |
last_payout | 2018-10-27 19:02:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 7.184 HBD |
curator_payout_value | 2.316 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 867 |
author_reputation | 448,528,959,341,273 |
root_title | "steemmonsters, a new command line tool for battling opponents with your cards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,705,223 |
net_rshares | 8,016,135,118,995 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yuxi | 0 | 8,546,900,199 | 30% | ||
mys | 0 | 746,826,144 | 0.62% | ||
codingdefined | 0 | 8,595,164,750 | 10% | ||
pixelfan | 0 | 1,058,597,002 | 0.5% | ||
utopian-io | 0 | 7,898,921,054,849 | 6.15% | ||
emrebeyler | 0 | 14,107,313,821 | 1% | ||
amosbastian | 0 | 14,537,727,660 | 7.54% | ||
oups | 0 | 1,551,370,131 | 3% | ||
organicgardener | 0 | 3,348,610,358 | 25% | ||
reazuliqbal | 0 | 5,020,570,987 | 8% | ||
hakancelik | 0 | 14,891,381,596 | 20% | ||
mightypanda | 0 | 42,778,135,830 | 40% | ||
fastandcurious | 0 | 2,031,465,668 | 45% |
Thank you for your review, @emrebeyler! So far this week you've reviewed 3 contributions. Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-holger80-steemmonsters-a-new-command-line-tool-for-battling-opponents-with-your-decks-20181020t190218197z-20181024t103522z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.1"}" |
created | 2018-10-24 10:35:24 |
last_update | 2018-10-24 10:35:24 |
depth | 2 |
children | 0 |
last_payout | 2018-10-31 10:35: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 | 113 |
author_reputation | 152,955,367,999,756 |
root_title | "steemmonsters, a new command line tool for battling opponents with your cards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,950,929 |
net_rshares | 0 |
This is awesome! I already installed it but I guess I'll wait until the morning to try playing it, since I need to create that json file.
author | geekpowered |
---|---|
permlink | re-holger80-steemmonsters-a-new-command-line-tool-for-battling-opponents-with-your-decks-20181020t061101092z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-10-20 06:11:00 |
last_update | 2018-10-20 06:11:00 |
depth | 1 |
children | 0 |
last_payout | 2018-10-27 06:11: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 | 137 |
author_reputation | 99,319,261,112,097 |
root_title | "steemmonsters, a new command line tool for battling opponents with your cards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,666,943 |
net_rshares | 0 |
very cool to see some other applications playing with the steemmonsters API and protocols!
author | jarvie |
---|---|
permlink | re-holger80-steemmonsters-a-new-command-line-tool-for-battling-opponents-with-your-decks-20181019t221724173z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak"} |
created | 2018-10-19 22:17:27 |
last_update | 2018-10-19 22:17:27 |
depth | 1 |
children | 0 |
last_payout | 2018-10-26 22:17:27 |
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 | 90 |
author_reputation | 388,481,133,440,824 |
root_title | "steemmonsters, a new command line tool for battling opponents with your cards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,647,942 |
net_rshares | 12,671,116,086 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jarunik | 0 | 12,671,116,086 | 1% |
Great insight into your work with Steemmonsters code. Looking forward to more statistics from you. Keep up the good work! Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | masterthematrix |
---|---|
permlink | masterthematrix-re-holger80-steemmonsters-a-new-command-line-tool-for-battling-opponents-with-your-decks-20181019t224113967z |
category | utopian-io |
json_metadata | {"app":"partiko"} |
created | 2018-10-19 22:41:15 |
last_update | 2018-10-19 22:41:15 |
depth | 1 |
children | 0 |
last_payout | 2018-10-26 22:41:15 |
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 | 191 |
author_reputation | 9,868,666,626,842 |
root_title | "steemmonsters, a new command line tool for battling opponents with your cards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,648,953 |
net_rshares | 0 |
No Al? I'm disappointed. *Kidding*. **This is great!**
author | oliverschmid |
---|---|
permlink | re-holger80-steemmonsters-a-new-command-line-tool-for-battling-opponents-with-your-decks-20181020t052444556z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-10-20 05:24:45 |
last_update | 2018-10-20 05:24:45 |
depth | 1 |
children | 1 |
last_payout | 2018-10-27 05:24:45 |
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 | 54 |
author_reputation | 108,456,372,075,578 |
root_title | "steemmonsters, a new command line tool for battling opponents with your cards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,664,844 |
net_rshares | 0 |
code an AI if you need one :D
author | schlafhacking |
---|---|
permlink | re-oliverschmid-re-holger80-steemmonsters-a-new-command-line-tool-for-battling-opponents-with-your-decks-20181020t080318670z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-10-20 08:03:15 |
last_update | 2018-10-20 08:03:15 |
depth | 2 |
children | 0 |
last_payout | 2018-10-27 08:03:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 15,067,517,752,330 |
root_title | "steemmonsters, a new command line tool for battling opponents with your cards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,671,611 |
net_rshares | 32,660,086,389 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oliverschmid | 0 | 32,660,086,389 | 10% |
#### Hi @holger80! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your **UA** account score is currently 7.011 which ranks you at **#84** across all Steem accounts. Your rank has not changed in the last three days. In our last Algorithmic Curation Round, consisting of 225 contributions, your post is ranked at **#6**. ##### Evaluation of your UA score: * Your follower network is great! * The readers appreciate your great work! * Good user engagement! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-steemmonsters-a-new-command-line-tool-for-battling-opponents-with-your-decks-20181020t173727z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.7"}" |
created | 2018-10-20 17:37:30 |
last_update | 2018-10-20 17:37:30 |
depth | 1 |
children | 0 |
last_payout | 2018-10-27 17:37:30 |
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 | 595 |
author_reputation | 23,214,230,978,060 |
root_title | "steemmonsters, a new command line tool for battling opponents with your cards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,700,335 |
net_rshares | 0 |
Congratulations @holger80! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : [](http://steemitboard.com/@holger80) Award for the number of upvotes received <sub>_Click on the badge to view your Board of Honor._</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-ranking-update-resteem-and-resteemed-added"><img src="https://steemitimages.com/64x128/https://cdn.steemitimages.com/DQmfRVpHQhLDhnjDtqck8GPv9NPvNKPfMsDaAFDE1D9Er2Z/header_ranking.png"></a></td><td><a href="https://steemit.com/steemitboard/@steemitboard/steemitboard-ranking-update-resteem-and-resteemed-added">SteemitBoard Ranking update - Resteem and Resteemed added</a></td></tr></table> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-holger80-20181021t110401000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-10-21 11:04:00 |
last_update | 2018-10-21 11:04:00 |
depth | 1 |
children | 0 |
last_payout | 2018-10-28 11:04: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 | 1,209 |
author_reputation | 38,975,615,169,260 |
root_title | "steemmonsters, a new command line tool for battling opponents with your cards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,742,812 |
net_rshares | 0 |
Hmm it looks interesting I want to check it! Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | travoved |
---|---|
permlink | travoved-re-holger80-steemmonsters-a-new-command-line-tool-for-battling-opponents-with-your-decks-20181020t034155326z |
category | utopian-io |
json_metadata | {"app":"partiko"} |
created | 2018-10-20 03:42:00 |
last_update | 2018-10-20 03:42:00 |
depth | 1 |
children | 0 |
last_payout | 2018-10-27 03:42: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 | 114 |
author_reputation | 48,422,674,105,375 |
root_title | "steemmonsters, a new command line tool for battling opponents with your cards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,660,804 |
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-steemmonsters-a-new-command-line-tool-for-battling-opponents-with-your-decks-20181026t090512z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2018-10-26 09:05:15 |
last_update | 2018-10-26 09:05:15 |
depth | 1 |
children | 0 |
last_payout | 2018-11-02 09:05:15 |
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 | "steemmonsters, a new command line tool for battling opponents with your cards" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 74,080,924 |
net_rshares | 0 |