Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol by yabapmatt

View this thread on steempeak.com
· @yabapmatt ·
$152.96
Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol
![](https://i.imgur.com/AMwTf6K.jpg)
*To make this post a little more interesting for the non-techies, I'll give 10 STEEM to whoever comes up with the funniest text to go in the text bubbles in the image above!*

I know that everyone is eagerly awaiting the release of the card stats and gameplay mechanics, and I promise that is coming soon - and I mean for real soon, not SMTs soon! In the meantime, I thought I would take some time to talk about the planned protocol for the decentralized match-making and battle/tournament system. I hope everyone can contain their excitement :-P

## Finding a Match

The first step to starting a 1-on-1 battle with another player is to broadcast an "sm_find_match" custom JSON transaction with the details about the type of match you're looking for and a hash of your team (more on this later). The content of the operation is as follows:

```
{ 
    match_type: 'standard', 
    mana_cap: 20, 
    expiration_seconds: 120, 
    team_hash: 'some_hash_value'
}
```

The "match_type" property will indicate what format you are looking to play. Initially we will start with a single format - "standard" - but in the future we plan to create many different formats with all sorts of different rules and mechanics and to keep things interesting.

The "mana_cap" specifies the max combined mana cost for all of the cards on each team and "expiration_seconds" specifies the amount of time available to find a match before the transaction expires. Time here is actually measured in blocks so the value will be divided by 3 and rounded down to determine the number of blocks before the transaction expires.

Lastly, the "team_hash" is an MD5 hash of the cards that make up your team. We use a hash here instead of publishing the team directly so that you cannot see what cards other players looking for matches are using and cherry-pick the ones you feel you have a better chance of beating.

The hash is calculated as follows:

```md5(summoner + ',' + monsters.join() + ',' + secret);```

where "summoner" is the UID of the Summoner card chosen and "monsters" is an array of the UIDs of the Monster cards. "secret" can be any value and is just used so that people can't brute-force guess what a player's team is by hashing different combinations of card UIDs.

## Match-Making

Whenever a new "sm_find_match" transaction is broadcast and included into a block, the protocol will search through the list of open "sm_find_match" transactions in the match queue in a deterministic fashion to see if it finds a match.

A match is found if there is another "sm_find_match" transaction that has not been matched yet and has not expired which has the same "match_type" and "mana_cap" and both players ratings are within a specified range.

We are planning to use the Elo system to assign ratings to all players based on their performance in the 1-on-1 battles. This will help ensure that matches are fair and that players get matched against players with similar card levels and similar skill levels.

If no match is found from the transactions currently in the match queue, then the new transaction is placed in the match queue until it either expires or gets matched with a new "sm_find_match" transaction that comes in.

## Team Reveal

Once two players have been matched up for battle, it's time for them to reveal the cards on their teams. At this point, the match has officially started, and if any player fails to reveal their team it will count as a loss and their rating will decrease accordingly. If both players fail to reveal their teams then the match will be cancelled. 

Each player will have 20 blocks (1 minute) from the block containing the second "sm_find_match" transaction to reveal their team. To do this, each player must broadcast an "sm_team_reveal" custom JSON transaction with the following content:

```
{
    "trx_id":"84edab614797bfbd5d117f3ef387f20f3491389e",
    "summoner":"C-PCPBW2W82O",
    "monsters":["C-V8JFUUPV1C","C-FFNFY8RBS0","C-WCAPN7E0Q8"],
    "secret":"a6MkvmV2R1"
}
```

The properties are as follows:
- "trx_id" is the transaction ID of the initial "sm_find_match" transaction
- "summoner" is the UID of the team's Summoner card
- "monsters" is a list of the UIDs of the Monster cards on the team
- "secret" is the secret value used to compute the hash broadcast in the "sm_find_match" transaction

At this point, the protocol will perform the following checks to validate that the team is valid:

1. Check that the player actually owns all of the cards listed and that they are not currently for sale on the market.
2. Calculate the MD5 hash using the summoner, monsters, and secret values to ensure that it matches the one broadcast in the "sm_find_match" transaction.
3. Check that the cards used are all allowed in the specified match format and that the total mana cost is under the specified mana cap.

If one of the player's team reveal is invalid and the other player's is valid, then it will count as a loss for that player and their rating will be adjusted accordingly. If both player's team reveals are invalid, or one is invalid and the other does not submit a team reveal transaction in time, then the match will be cancelled.

It is important to note that a different account can sign and broadcast the "sm_team_reveal" transaction than the one that signed and broadcasted the original "sm_find_match" transaction. As long as the hash matches, and everything else is otherwise valid, it will be considered a valid team reveal.

This will be useful for things like tournaments where a player might enter a tournament that doesn't start for a number of days. Instead of that player having to either make sure they broadcast their team reveal at the right time, or trust another account with their keys, they can instead just share their team and their secret with a service that they trust to keep it secret (such as steemmonsters.com) which can do the reveal for them.

## Enough Talk, Let's Fight Already!

This probably all sounds like a lot, but it will all be under the hood and taken care of by the user interface. From the typical player's point of view they'll just choose their team, click submit, and get matched up without knowing any of this is taking place behind the scenes on the blockchain.

So, once all the stuff I wrote above happens, and two players are matched up and have revealed valid teams, the battle will take place!

The battles will be done completely deterministically and in a provably fair manner so that anyone can calculate the battle results for themselves and verify that they match the results calculated by steemmonsters.com or any other future UI that supports battling. This is the same as how card packs are generated and how we pick our raffle prize winners!

The random number generator used for the battles will be seeded with the MD5 hash of the block id, previous block id, and transaction id of the second "sm_team_reveal" transaction, since that is the final transaction necessary to start the battle.

## Tournaments

I haven't built out the protocol for running tournaments yet, but the idea is that anyone will be able to create their own tournament by broadcasting a custom JSON transaction with all of the tournament details including:

- Start Date/Time (indicated by block #)
- Min/Max Entries
- Tournament Format
- Match Format & Mana Cap
- Prizes

Then players who want to enter the tournament can submit a transaction similar to "sm_find_match" described above with a hash of their team and the ID of the tournament they want to enter.

Once we have reached the start block for the tournament, no new entries will be accepted, and all entrants will have a set period of time (in blocks) to submit their "sm_team_reveal" transactions.

Once that is done, any invalid teams will be discarded and assuming there are enough valid teams to cover the minimum required entries the tournament will take place in an automated, fully deterministic, and verifiable manner.

As for the prizes, we will likely create some type of escrow service for third-parties who want to run tournaments for blockchain-based prizes. This way they can send Steem, SBD, Cards or Card Packs, and @steemmonsters will automatically pay them out to the specified winners at the conclusion of the tournament, or refund them to the creator if the tournament does not take place for any reason.

All of this remains TBD at this point though, so please feel free to let me know if you have any other ideas, thoughts, or comments!

## Tournament Prizes

As we have been saying since the beginning, the plan is to have tournaments sponsored by Steem Monsters.  These tournaments will happen weekly and feature payouts of at least $1,000 worth of Steem/SBD to winners! We plan to also feature regular and gold foil variants.

## Thanks For Your Support

As always, I want to sincerely thank everyone who has supported me by giving me upvotes, approving my witness, buying Steem Monsters packs, or just leaving an encouraging comment or message! We never would have built Steem Monsters, and probably wouldn't even still be using Steem, if it wasn't for the amazing community of people here!

---
[![](https://i.imgur.com/WjMuMb2.png)](https://v2.steemconnect.com/sign/account-witness-vote?witness=yabapmatt&approve=1)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 246 others
👎  
properties (23)
post_id60,192,961
authoryabapmatt
permlinksteem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol
categorysteemmonsters
json_metadata{"image":["https:\/\/i.imgur.com\/AMwTf6K.jpg"],"links":["https:\/\/v2.steemconnect.com\/sign\/account-witness-vote?witness=yabapmatt&approve=1"],"tags":["steemmonsters","steem","gaming","dev","steemdev"],"format":"markdown","app":"steemit\/0.1","users":["steemmonsters"]}
created2018-08-20 00:17:30
last_update2018-08-20 00:17:30
depth0
children61
net_rshares114,554,071,484,199
last_payout2018-08-27 00:17:30
cashout_time1969-12-31 23:59:59
total_payout_value119.047 SBD
curator_payout_value33.917 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9,319
author_reputation96,235,062,639,808
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (311)
@jarvie ·
$0.55
Correct me if i'm mistaken but this sounds a lot like the starcraft system when you could create all sorts of types of games and people could jump in. And on that note i am very nostalgic of those days. 
👍  
properties (23)
post_id60,193,337
authorjarvie
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t002439343z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"community":"steempeak","app":"steempeak"}
created2018-08-20 00:24:39
last_update2018-08-20 00:24:39
depth1
children3
net_rshares412,006,057,628
last_payout2018-08-27 00:24:39
cashout_time1969-12-31 23:59:59
total_payout_value0.412 SBD
curator_payout_value0.137 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length203
author_reputation119,307,203,632,653
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@crystalhuman ·
$0.02
The first game like starcraft I ever played was warcraft.  

http://www.oldpcgaming.net/wp-content/uploads/2017/08/10.gif



Just look at these gfx!  #NostalgiaToTheMax
👍  ,
properties (23)
post_id60,201,790
authorcrystalhuman
permlinkre-jarvie-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t024441932z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters","nostalgiatothemax"],"image":["http:\/\/www.oldpcgaming.net\/wp-content\/uploads\/2017\/08\/10.gif"]}
created2018-08-20 02:44:42
last_update2018-08-20 02:44:42
depth2
children2
net_rshares17,164,730,291
last_payout2018-08-27 02:44:42
cashout_time1969-12-31 23:59:59
total_payout_value0.018 SBD
curator_payout_value0.004 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length168
author_reputation26,168,436,644,284
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@coldicehotwater ·
I remember those days.
- I’ve just spent an hour building all these cannons, going to crush this level,
-entire army defeated by giant fire orc

.![7BA6E975-7874-421B-AE93-F3355A0B9341.jpeg](https://cdn.steemitimages.com/DQmNVes89BNTLWvofpjcTeUa4MPUYRAH66FLgBDsAbXZhqY/7BA6E975-7874-421B-AE93-F3355A0B9341.jpeg)

“Weary is the flesh upon the stakes which yet hold sway against an onslaught of perpetual. Frailty encompasses as a swarm stings, ten upon ten into the hundreads. This place, once pastures and ponds, feeding the peace and pleasentry, is besieged. Lascivious creations of all a fowl manner spew forth from the sky, from the bowels of mantles even unto the unseen darkness of dark folds unraveling. Madnesses lays rest to civility as the monsters march upon every monument of sanctuary held dear. Conflict is inescapable, who amongst the stemmians will crawl from the depths of slumber to battle STEEMMONSTERS!?!?!?”
-M
properties (22)
post_id60,207,379
authorcoldicehotwater
permlinkre-crystalhuman-re-jarvie-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t042213660z
categorysteemmonsters
json_metadata{"image":["https:\/\/cdn.steemitimages.com\/DQmNVes89BNTLWvofpjcTeUa4MPUYRAH66FLgBDsAbXZhqY\/7BA6E975-7874-421B-AE93-F3355A0B9341.jpeg"],"tags":["steemmonsters"],"app":"steemit\/0.1"}
created2018-08-20 04:22:12
last_update2018-08-20 04:22:12
depth3
children0
net_rshares0
last_payout2018-08-27 04:22:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length930
author_reputation204,173,794,466
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@clove71 ·
It's so exciting!! :-)
properties (22)
post_id60,302,290
authorclove71
permlinkre-crystalhuman-re-jarvie-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180821t033646387z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-21 03:36:45
last_update2018-08-21 03:36:45
depth3
children0
net_rshares0
last_payout2018-08-28 03:36:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length22
author_reputation213,249,925,879,266
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@harrisonmir ·
Dude no idea what that code means but I'm super psyched for it :D. Keep up the killer work.
properties (22)
post_id60,193,506
authorharrisonmir
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t002759717z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit\/0.1"}
created2018-08-20 00:27:57
last_update2018-08-20 00:27:57
depth1
children2
net_rshares0
last_payout2018-08-27 00:27:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length91
author_reputation25,507,427,837,113
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@clove71 ·
$0.02
I don't know code either but I'm with you, I'm so excited! I can't wait to have so much fun and it's all right here on the Steem Blockchain! No high gas costs,etc. Like the Ethereum Blockchain and games I played there. I'm happy!!! :-) Nice collection you have! I sent you that Peacebringer!
👍  
properties (23)
post_id60,302,184
authorclove71
permlinkre-harrisonmir-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180821t033511149z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-21 03:35:12
last_update2018-08-21 03:35:12
depth2
children1
net_rshares16,798,877,544
last_payout2018-08-28 03:35:12
cashout_time1969-12-31 23:59:59
total_payout_value0.016 SBD
curator_payout_value0.005 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length291
author_reputation213,249,925,879,266
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@harrisonmir ·
Thanks so much @clove71, that's too nice of you!
properties (22)
post_id60,402,033
authorharrisonmir
permlinkre-clove71-re-harrisonmir-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180822t044145218z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","users":["clove71"],"tags":["steemmonsters"]}
created2018-08-22 04:41:42
last_update2018-08-22 04:41:42
depth3
children0
net_rshares0
last_payout2018-08-29 04:41:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length48
author_reputation25,507,427,837,113
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@peakmonsters ·
$0.55
I think based on what you said about tournaments it seems many people can do sponsored tournaments with prizes and say that a particular tournament has a prize. 

I think we'd like to jump in and do some. Not as big as your 1000 steem contests but still we can add to the fun. right?
👍  
properties (23)
post_id60,193,654
authorpeakmonsters
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t003039070z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"community":"steempeak","app":"steempeak"}
created2018-08-20 00:30:39
last_update2018-08-20 00:30:39
depth1
children1
net_rshares412,006,057,628
last_payout2018-08-27 00:30:39
cashout_time1969-12-31 23:59:59
total_payout_value0.412 SBD
curator_payout_value0.137 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length283
author_reputation22,791,755,523,244
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@yabapmatt ·
Definitely! I should have mentioned that we'll probably be listing all of the tournaments on the official site, not just our own.
properties (22)
post_id60,199,510
authoryabapmatt
permlinkre-peakmonsters-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t021040291z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-20 02:10:39
last_update2018-08-20 02:10:39
depth2
children0
net_rshares0
last_payout2018-08-27 02:10:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length129
author_reputation96,235,062,639,808
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@marinaart ·
I think I will read this post one more time because I am not a thech person , I really like steemmonsters and want to understand all details of this game
properties (22)
post_id60,193,992
authormarinaart
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t003655602z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit\/0.1"}
created2018-08-20 00:36:54
last_update2018-08-20 00:36:54
depth1
children0
net_rshares0
last_payout2018-08-27 00:36:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length153
author_reputation1,373,339,077,399
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tomask-de ·
fossbot voter comment
Nice read. I leave an upvote for this article *thumbsup*
properties (22)
post_id60,194,240
authortomask-de
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t004059528z
categorysteemmonsters
json_metadata{}
created2018-08-20 00:41:00
last_update2018-08-20 00:41:00
depth1
children0
net_rshares0
last_payout2018-08-27 00:41:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length56
author_reputation-1,082,541,226,086
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tts ·
To listen to the audio version of this article click on the play image.
[![](https://s18.postimg.org/51o0kpijd/play200x46.png)](http://ec2-52-72-169-104.compute-1.amazonaws.com/yabapmatt__steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol.mp3)
Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvoting this reply.
properties (22)
post_id60,194,299
authortts
permlinkre-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t004158
categorysteemmonsters
json_metadata{}
created2018-08-20 00:41:57
last_update2018-08-20 00:41:57
depth1
children0
net_rshares0
last_payout2018-08-27 00:41:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length392
author_reputation-4,535,933,372,579
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tornadoman ·
@yabapmatt what would I use to create a bot
properties (22)
post_id60,194,608
authortornadoman
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t004820711z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit\/0.1"}
created2018-08-20 00:48:21
last_update2018-08-20 00:48:21
depth1
children0
net_rshares0
last_payout2018-08-27 00:48:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length43
author_reputation989,818,474,729
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars0
@cryplectibles ·
$1.40
https://i.supload.com/H1ZfoMqD87.jpg

https://i.supload.com/B1Mzof9w8Q.jpg

Blank template if anyone needs

https://i.supload.com/ryx-bQqwI7.jpg
👍  , , , ,
properties (23)
post_id60,195,358
authorcryplectibles
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t010220901z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"image":["https:\/\/i.supload.com\/H1ZfoMqD87.jpg"],"app":"steemit\/0.1"}
created2018-08-20 01:02:21
last_update2018-08-20 01:02:21
depth1
children1
net_rshares1,051,495,284,795
last_payout2018-08-27 01:02:21
cashout_time1969-12-31 23:59:59
total_payout_value1.056 SBD
curator_payout_value0.348 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length144
author_reputation78,222,795,638,600
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (5)
@freyman ·
$0.05
properties (23)
post_id60,233,199
authorfreyman
permlinkre-cryplectibles-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t111016466z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-20 11:10:18
last_update2018-08-20 11:10:18
depth2
children0
net_rshares35,044,713,787
last_payout2018-08-27 11:10:18
cashout_time1969-12-31 23:59:59
total_payout_value0.037 SBD
curator_payout_value0.009 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length7
author_reputation3,114,105,584,446
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@palasatenea ·
$0.55
![AMwTf6K.jpg](https://cdn.steemitimages.com/DQmarcpH4z9veJVH47pdE9Uos21kS5kCjczVwgrGNvcFAkb/AMwTf6K.jpg)

Great news, I like the possibility to make tournaments on our own, still that code think is too much for me. I don't think I would be able to promote one :).
👍  
properties (23)
post_id60,196,198
authorpalasatenea
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t011652367z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"image":["https:\/\/cdn.steemitimages.com\/DQmarcpH4z9veJVH47pdE9Uos21kS5kCjczVwgrGNvcFAkb\/AMwTf6K.jpg"],"app":"steemit\/0.1"}
created2018-08-20 01:16:54
last_update2018-08-20 01:16:54
depth1
children0
net_rshares412,006,057,628
last_payout2018-08-27 01:16:54
cashout_time1969-12-31 23:59:59
total_payout_value0.411 SBD
curator_payout_value0.137 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length264
author_reputation3,621,503,330,124
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@experiment ·
Hi @yabapmatt  I'm a bot, and wanted you to know that I've upvoted and re-steemed your post to help you with your promotion efforts!  -exp
properties (22)
post_id60,199,179
authorexperiment
permlinksteem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol
categorysteemmonsters
json_metadata{}
created2018-08-20 02:04:54
last_update2018-08-20 02:04:54
depth1
children1
net_rshares0
last_payout2018-08-27 02:04:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length138
author_reputation817,000,311,697
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@experiment · (edited)
And on a personal note, you've had my vote for witness also :)
-exp
properties (22)
post_id60,199,659
authorexperiment
permlinkre-experiment-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t021248690z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-20 02:12:48
last_update2018-08-20 02:13:15
depth2
children0
net_rshares0
last_payout2018-08-27 02:12:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length67
author_reputation817,000,311,697
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@crystalhuman ·
$0.55
Create your own tournament by broadcasting a custom JSON transaction!?!?!

Escrow service for third-parties!?  This just gets better every day!

This game is the future IMO.  So much potential here.  Keep up the great work Matt. :)
👍  
properties (23)
post_id60,199,361
authorcrystalhuman
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t020752052z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-20 02:07:51
last_update2018-08-20 02:07:51
depth1
children0
net_rshares412,006,057,628
last_payout2018-08-27 02:07:51
cashout_time1969-12-31 23:59:59
total_payout_value0.537 SBD
curator_payout_value0.013 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length231
author_reputation26,168,436,644,284
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@crystalhuman ·
$0.58
![monstermeme.png](https://cdn.steemitimages.com/DQmbgDvmQRQ7K4U3DUyVY19GwaJCcUgWsktTFKqdWda1Ae8/monstermeme.png)
👍  ,
properties (23)
post_id60,200,444
authorcrystalhuman
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t022331321z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"],"image":["https:\/\/cdn.steemitimages.com\/DQmbgDvmQRQ7K4U3DUyVY19GwaJCcUgWsktTFKqdWda1Ae8\/monstermeme.png"]}
created2018-08-20 02:23:33
last_update2018-08-20 02:23:33
depth1
children0
net_rshares434,133,402,154
last_payout2018-08-27 02:23:33
cashout_time1969-12-31 23:59:59
total_payout_value0.436 SBD
curator_payout_value0.143 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length113
author_reputation26,168,436,644,284
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@nieuscarin ·
Buenas noche. Excelente propuesta de juego. Saludos desde Venezuela
properties (22)
post_id60,201,041
authornieuscarin
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t030201746z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-20 02:32:27
last_update2018-08-20 02:32:27
depth1
children0
net_rshares0
last_payout2018-08-27 02:32:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length67
author_reputation96,728,745,549,582
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@davemccoy ·
$0.58
Matt, this is very exciting and I like what you are doing here!  Opening the mechanics up so that people can have their own tourneys will just enhance the user experience and lead to all kinds of new game creations.  I'm very happy to see the progress and think you are doing an amazing job!  Keep it up!!! :)
👍  ,
properties (23)
post_id60,204,809
authordavemccoy
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t033852252z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-20 03:38:54
last_update2018-08-20 03:38:54
depth1
children0
net_rshares436,462,115,040
last_payout2018-08-27 03:38:54
cashout_time1969-12-31 23:59:59
total_payout_value0.439 SBD
curator_payout_value0.144 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length309
author_reputation20,209,499,381,910
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@a0x1 ·
So we have to learn a bit of coding to play this game?
👍  ,
properties (23)
post_id60,205,243
authora0x1
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t034629666z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit\/0.1"}
created2018-08-20 03:46:42
last_update2018-08-20 03:46:42
depth1
children1
net_rshares722,480,030
last_payout2018-08-27 03:46:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length54
author_reputation608,757,667,650
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@yabapmatt ·
No not at all, this is just how it will work under the hood. As a player you don’t have to know about any of this.
properties (22)
post_id60,238,860
authoryabapmatt
permlinkre-a0x1-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t122614567z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-20 12:26:15
last_update2018-08-20 12:26:15
depth2
children0
net_rshares0
last_payout2018-08-27 12:26:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length114
author_reputation96,235,062,639,808
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@worthtrick ·
@yabapmatt

Interesting thought many would like to jumpin and participate..
properties (22)
post_id60,207,563
authorworthtrick
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t042444895z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit\/0.1"}
created2018-08-20 04:24:54
last_update2018-08-20 04:24:54
depth1
children0
net_rshares0
last_payout2018-08-27 04:24:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length75
author_reputation2,227,295,182,823
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@postpromoter ·
re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t042719123z
You got a 80.60% upvote from @postpromoter courtesy of @steemmonsters!

Want to promote your posts too? Check out the [Steem Bot Tracker website](https://steembottracker.com) for more info. If you would like to support the development of @postpromoter and the bot tracker please [vote for @yabapmatt for witness!](https://v2.steemconnect.com/sign/account-witness-vote?witness=yabapmatt&approve=1)
properties (22)
post_id60,207,721
authorpostpromoter
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t042719123z
categorysteemmonsters
json_metadata{"app":"postpromoter\/2.1.0"}
created2018-08-20 04:27:18
last_update2018-08-20 04:27:18
depth1
children0
net_rshares0
last_payout2018-08-27 04:27:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length397
author_reputation21,053,937,692,175
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ronel ·
Excited!

https://media.giphy.com/media/YVoVTVZVhaVQA/giphy.gif
properties (22)
post_id60,211,576
authorronel
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t052707374z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit\/0.1","image":["https:\/\/media.giphy.com\/media\/YVoVTVZVhaVQA\/giphy.gif"]}
created2018-08-20 05:27:09
last_update2018-08-20 05:27:09
depth1
children0
net_rshares0
last_payout2018-08-27 05:27:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length63
author_reputation12,239,897,411,079
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@planosdeunacasa ·
$0.58
![contest to Steemmonsters.jpg](https://ipfs.busy.org/ipfs/QmVSnaAuKK7ATsThttozQ5DQk3CN3xCsmG7f8c4MLB5ij1)
I hope to practice the rules of the game before the tournament.
I like the progress of Steem Monsters!
👍  
properties (23)
post_id60,212,184
authorplanosdeunacasa
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t053558942z
categorysteemmonsters
json_metadata{"users":[],"tags":["steemmonsters"],"app":"busy\/2.5.6","image":["https:\/\/ipfs.busy.org\/ipfs\/QmVSnaAuKK7ATsThttozQ5DQk3CN3xCsmG7f8c4MLB5ij1"],"links":[],"community":"busy","format":"markdown"}
created2018-08-20 05:36:00
last_update2018-08-20 05:36:00
depth1
children0
net_rshares433,855,741,245
last_payout2018-08-27 05:36:00
cashout_time1969-12-31 23:59:59
total_payout_value0.436 SBD
curator_payout_value0.145 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length209
author_reputation15,527,842,277,894
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@minnowpond ·
You have recieved a free upvote from minnowpond, Send 0.1 -> 10 SBD with your post url as the memo to recieve an upvote from up to 100 accounts!
properties (22)
post_id60,215,062
authorminnowpond
permlinkre-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t061948
categorysteemmonsters
json_metadata{}
created2018-08-20 06:19:54
last_update2018-08-20 06:19:54
depth1
children0
net_rshares0
last_payout2018-08-27 06:19:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length144
author_reputation13,216,337,213,922
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@cryptocopy ·
Lol! I was getting worried in the begining of your post with all the talk about hashes and code. Thanks for clearing up that it was all happening under the hood. You got me worried there, for a bit.
properties (22)
post_id60,215,884
authorcryptocopy
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t063123384z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-20 06:31:24
last_update2018-08-20 06:31:24
depth1
children0
net_rshares0
last_payout2018-08-27 06:31:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length198
author_reputation15,252,229,565,390
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@palikari123 · (edited)
$0.58
Everyone is eagerly awaiting the arrival of Steem Monsters Matt! A lot of excitement in the air, and some super cool features for all levels of players to enjoy...Here is my effort at being funny:)

![ryx-bQqwI7.jpg](https://cdn.steemitimages.com/DQmZhQBQqXkrRN3jgXqksVHg481tJTwF3AHJaHQekzhYCTT/ryx-bQqwI7.jpg)

![Steem Monsters Meme2.jpg](https://cdn.steemitimages.com/DQmRpwjoUEo2TEzjBqGLWmzhyCU7dx1iz46cwPDs8XevNzb/Steem%20Monsters%20Meme2.jpg)
👍  ,
properties (23)
post_id60,219,619
authorpalikari123
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t072900474z
categorysteemmonsters
json_metadata{"image":["https:\/\/cdn.steemitimages.com\/DQmZhQBQqXkrRN3jgXqksVHg481tJTwF3AHJaHQekzhYCTT\/ryx-bQqwI7.jpg"],"tags":["steemmonsters"],"app":"steemit\/0.1"}
created2018-08-20 07:29:00
last_update2018-08-20 09:05:54
depth1
children0
net_rshares434,133,402,154
last_payout2018-08-27 07:29:00
cashout_time1969-12-31 23:59:59
total_payout_value0.439 SBD
curator_payout_value0.144 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length447
author_reputation22,967,361,763,386
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@geronimo ·
$0.67
Hey @yabapmatt,

nice post and thanks for taking the time to share your wisdom.

I have two questions:

1) What is a Summoner Card ? 

2) Wouldn’t make it more sense to check if the player owns all cards listed before he/she sends out the `sm_find_match`?
👍  , ,
👎  ,
properties (23)
post_id60,221,773
authorgeronimo
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t080519147z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit\/0.1"}
created2018-08-20 08:05:18
last_update2018-08-20 08:05:18
depth1
children2
net_rshares499,822,194,820
last_payout2018-08-27 08:05:18
cashout_time1969-12-31 23:59:59
total_payout_value0.550 SBD
curator_payout_value0.121 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length255
author_reputation2,921,161,415,347
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (5)
@yabapmatt ·
$0.05
You can see which cards are summoners vs monsters on steemmonsters.com while viewing your collection. Currently there is one summoner for each color/element. More details about how the different types of cards will work will be released soon with the full gameplay mechanics and stats.

As for your second question, the cards being used are not published with the "sm_find_match" transaction, only the hash is published, so it's not possible for the protocol to verify them at this time.  Most UIs, however, will enforce proper team creation prior to publishing the "sm_find_match" transaction so I expect it will be very rare that invalid teams are revealed.
👍  
properties (23)
post_id60,240,199
authoryabapmatt
permlinkre-geronimo-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t124344804z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-20 12:43:45
last_update2018-08-20 12:43:45
depth2
children1
net_rshares38,584,271,639
last_payout2018-08-27 12:43:45
cashout_time1969-12-31 23:59:59
total_payout_value0.038 SBD
curator_payout_value0.012 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length659
author_reputation96,235,062,639,808
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@franciferrer ·
i wish i had a collection to view hah. i want to see gameplay of these steemonsters, please direct me.
properties (22)
post_id60,765,981
authorfranciferrer
permlinkre-yabapmatt-re-geronimo-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180826t090614262z
categorysteemmonsters
json_metadata{"community":"busy","app":"busy\/2.5.6","format":"markdown","image":[],"tags":["steemmonsters"],"users":[],"links":[]}
created2018-08-26 09:06:21
last_update2018-08-26 09:06:21
depth3
children0
net_rshares0
last_payout2018-09-02 09:06:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length102
author_reputation1,211,527,658,628
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@salmawatii ·
very interesting in this battle, it will be very necessary to try this
properties (22)
post_id60,222,342
authorsalmawatii
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t081532228z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit\/0.1"}
created2018-08-20 08:15:36
last_update2018-08-20 08:15:36
depth1
children0
net_rshares0
last_payout2018-08-27 08:15:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length70
author_reputation-145,657,661,552
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mattclarke ·
$0.58
Thanks for a fascinating insight, Matt. 
Will a tournament creator have a lot of free reign to set entry requirements (assuming they know how to code them) or will they be picking from a list? 
(If for example somebody wanted to run an underdog tournament, with entry limited to those who've opened at least 100 packs; with a lifetime legendary drop rate below, say 0.7 %)
👍  
properties (23)
post_id60,224,001
authormattclarke
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t084324701z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"community":"steempeak","app":"steempeak"}
created2018-08-20 08:43:27
last_update2018-08-20 08:43:27
depth1
children1
net_rshares433,855,741,245
last_payout2018-08-27 08:43:27
cashout_time1969-12-31 23:59:59
total_payout_value0.438 SBD
curator_payout_value0.145 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length372
author_reputation65,732,140,940,596
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@yabapmatt ·
$0.61
This is all still TBD so I don't want to promise anything, but one of the options could be a private tournament where only people who the creator invites or approves can join. So you could manually check and approve people based on the rules in the example above, or if you know how to code you could automate that process.
👍  
properties (23)
post_id60,239,932
authoryabapmatt
permlinkre-mattclarke-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t124021635z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-20 12:40:21
last_update2018-08-20 12:40:21
depth2
children0
net_rshares453,666,304,304
last_payout2018-08-27 12:40:21
cashout_time1969-12-31 23:59:59
total_payout_value0.459 SBD
curator_payout_value0.153 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length323
author_reputation96,235,062,639,808
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@bifilarcoil ·
![tech talk 01.png](https://ipfs.busy.org/ipfs/QmWGRPcM5fBeXAMWtUeMJrqkStsnYWKHb9UBT8qGkTyTyZ)
properties (22)
post_id60,225,768
authorbifilarcoil
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t091409502z
categorysteemmonsters
json_metadata{"links":[],"users":[],"format":"markdown","app":"busy\/2.5.6","community":"busy","image":["https:\/\/ipfs.busy.org\/ipfs\/QmWGRPcM5fBeXAMWtUeMJrqkStsnYWKHb9UBT8qGkTyTyZ"],"tags":["steemmonsters"]}
created2018-08-20 09:14:12
last_update2018-08-20 09:14:12
depth1
children0
net_rshares0
last_payout2018-08-27 09:14:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length95
author_reputation5,609,044,543,142
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bifilarcoil ·
![tech talk 02.png](https://ipfs.busy.org/ipfs/QmcAt9Ca8X2SdMfbqLfPNRQ7XTE3WbpJEoVJ7BiwZ8LYyo)
properties (22)
post_id60,226,218
authorbifilarcoil
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t092147136z
categorysteemmonsters
json_metadata{"links":[],"users":[],"format":"markdown","app":"busy\/2.5.6","community":"busy","image":["https:\/\/ipfs.busy.org\/ipfs\/QmcAt9Ca8X2SdMfbqLfPNRQ7XTE3WbpJEoVJ7BiwZ8LYyo"],"tags":["steemmonsters"]}
created2018-08-20 09:21:48
last_update2018-08-20 09:21:48
depth1
children0
net_rshares0
last_payout2018-08-27 09:21:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length95
author_reputation5,609,044,543,142
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bifilarcoil ·
$0.58
![tech talk 03.png](https://ipfs.busy.org/ipfs/QmPzhZx5B7T3ESvrEX32SYtpbScqoLawZwuXseJnyecmHn)

👍  
properties (23)
post_id60,226,910
authorbifilarcoil
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t093355476z
categorysteemmonsters
json_metadata{"links":[],"users":[],"format":"markdown","app":"busy\/2.5.6","community":"busy","image":["https:\/\/ipfs.busy.org\/ipfs\/QmPzhZx5B7T3ESvrEX32SYtpbScqoLawZwuXseJnyecmHn"],"tags":["steemmonsters"]}
created2018-08-20 09:33:57
last_update2018-08-20 09:33:57
depth1
children0
net_rshares433,855,741,245
last_payout2018-08-27 09:33:57
cashout_time1969-12-31 23:59:59
total_payout_value0.438 SBD
curator_payout_value0.145 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length96
author_reputation5,609,044,543,142
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@rohitarena ·
interesting stuff.
properties (22)
post_id60,228,562
authorrohitarena
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t100044415z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit\/0.1"}
created2018-08-20 10:00:48
last_update2018-08-20 10:00:48
depth1
children0
net_rshares0
last_payout2018-08-27 10:00:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length18
author_reputation73,188,769,311
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@sheikhshahin ·
I really enjoyed the writing. Thanks a lot of this attractive content.
properties (22)
post_id60,236,679
authorsheikhshahin
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t115847694z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-20 11:58:57
last_update2018-08-20 11:58:57
depth1
children0
net_rshares0
last_payout2018-08-27 11:58:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length70
author_reputation149,050,464,338
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@neddykelly ·
$0.58
Well played @yabapmatt love your work my friend 

![photostudio_1534770223591.jpg](https://cdn.steemitimages.com/DQmTknjvimtymfaoGxs7hFk35J4mWBEYNMkq4wcD5615ccQ/photostudio_1534770223591.jpg)
👍  
properties (23)
post_id60,241,944
authorneddykelly
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t130504301z
categorysteemmonsters
json_metadata{"users":["yabapmatt"],"app":"steemit\/0.1","image":["https:\/\/cdn.steemitimages.com\/DQmTknjvimtymfaoGxs7hFk35J4mWBEYNMkq4wcD5615ccQ\/photostudio_1534770223591.jpg"],"tags":["steemmonsters"]}
created2018-08-20 13:03:45
last_update2018-08-20 13:03:45
depth1
children0
net_rshares431,424,120,120
last_payout2018-08-27 13:03:45
cashout_time1969-12-31 23:59:59
total_payout_value0.438 SBD
curator_payout_value0.145 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length191
author_reputation2,356,254,637,000
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@onefatindian ·
$0.58
Hey @yabapmatt,

I love these updates, keep 'em coming! lol

Since you're implementing the Elo ranking system, you must have given thought to showcasing a 'player rank ladder'... if that's true, are you thinking of a weekly/monthly/all-time ladder? Maybe a seasonal reset, based around releases of new cards (beta, season 1, etc.). Any or all of these would be great 😃

Also, as much as I like the Elo ranking system for this zero-sum game, many other games have chosen to abandon this system due to players (and their fragile ego's) complaining about why they are ranked at the level they are. Do you see this possibly changing in the future, or just stick with it and let the 1v1's speak for themselves? The reason I ask is this: from what I've seen/heard so far, this game heavily favours players who spend more ($$$) vs players who may be more skilled.

Anyhow, food for thought. I love games. lol

Cheers,
![OFI-sig.JPG](https://cdn.steemitimages.com/DQmfAkyQtC219K53Ggverg7oFoJADhPC2jYv2LgP6EPSPDa/OFI-sig.JPG)
👍  
properties (23)
post_id60,248,639
authoronefatindian
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t141620888z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"],"users":["yabapmatt"],"image":["https:\/\/cdn.steemitimages.com\/DQmfAkyQtC219K53Ggverg7oFoJADhPC2jYv2LgP6EPSPDa\/OFI-sig.JPG"]}
created2018-08-20 14:16:21
last_update2018-08-20 14:16:21
depth1
children3
net_rshares433,880,619,702
last_payout2018-08-27 14:16:21
cashout_time1969-12-31 23:59:59
total_payout_value0.552 SBD
curator_payout_value0.032 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,016
author_reputation1,833,721,315,508
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@yabapmatt ·
Thanks - I really appreciate this type of feedback and these ideas! The short answer, for pretty much everything, is that we we want to make sure that the community of players is happy with how everything works. So if we go in one direction and it has issues or the majority of players don't like it, we will change it. Making this a really fun game for everyone is our top priority.

More specifically, we are DEFINITELY going to have leaderboards/ladders/whatever you want to call them. We will also probably modify the Elo system a bit to make sure it's fun and that players can feel like they are constantly progressing.

As for the "pay to win" aspect, there is definitely part of that in the game - a player who buys a lot of cards will have cards at higher levels and will typically beat a player who didn't buy many cards even if they are less skilled. But we plan to make all different types of game / tournament / ladder formats to appeal to all different types of players. For example, there may be tournaments that limit the levels of all cards, so that there's not an advantage to players who bought a ton. In general we are going to try to have something for all levels of players and all levels of spenders.
properties (22)
post_id60,250,488
authoryabapmatt
permlinkre-onefatindian-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t143619029z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit\/0.1"}
created2018-08-20 14:36:18
last_update2018-08-20 14:36:18
depth2
children2
net_rshares0
last_payout2018-08-27 14:36:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,222
author_reputation96,235,062,639,808
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@onefatindian ·
This is so great to hear!
Balancing a game (in this case, from cards to gameplay) is no easy feat, and I'm really happy to hear that you and your team have given it much thought (as I can tell from your response).

>We will also probably modify the Elo system a bit to make sure it's fun and that players can feel like they are constantly progressing.

Awesome - this is going to keep players around fora long, long time.

Time to add that witness vote :D

Cheers,
![OFI-sig.JPG](https://cdn.steemitimages.com/DQmfAkyQtC219K53Ggverg7oFoJADhPC2jYv2LgP6EPSPDa/OFI-sig.JPG)
properties (22)
post_id60,252,103
authoronefatindian
permlinkre-yabapmatt-re-onefatindian-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t145312916z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit\/0.1","image":["https:\/\/cdn.steemitimages.com\/DQmfAkyQtC219K53Ggverg7oFoJADhPC2jYv2LgP6EPSPDa\/OFI-sig.JPG"]}
created2018-08-20 14:53:12
last_update2018-08-20 14:53:12
depth3
children0
net_rshares0
last_payout2018-08-27 14:53:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length570
author_reputation1,833,721,315,508
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@aiyumi · (edited)
Great to know. After coming across so many posts by people saying they were buying dozens of cards and maxing their entire deck's levels, I was getting worried the game might become purely "pay to win." Well, one of the initial posts months ago (I think it was the alpha release post) said it wouldn't be so much, but we had had practically no updates about the battling part after that, so... good to confirm that there'll be space for everyone!

Last but not least, I really hope the UI for setting up the battles will be accessible to screen readers :D .
properties (22)
post_id60,284,453
authoraiyumi
permlinkre-yabapmatt-re-onefatindian-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t222846382z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"community":"busy","app":"steemit\/0.1","format":"markdown"}
created2018-08-20 22:27:51
last_update2018-08-21 00:44:39
depth3
children0
net_rshares0
last_payout2018-08-27 22:27:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length557
author_reputation6,953,800,425,091
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@fitinfun ·
$0.58
Top Balloon - You look like some kind of Pokemon!

Bottom Balloon - So what? You are a fake Pharaoh!

I am a mom who only played pokemon red years ago, because my son was too young to read at that time. The rest of this topic has passed me by. Maybe in my next life.

I found you on twitter and came for the "non-techies" part. I am highly qualified in this area. Many people can vouch for my technical stupidity. I did not read the rest of your post, but I'm sure it is very good :)
👍  
properties (23)
post_id60,258,503
authorfitinfun
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t160423961z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit\/0.1"}
created2018-08-20 16:04:24
last_update2018-08-20 16:04:24
depth1
children0
net_rshares431,424,120,120
last_payout2018-08-27 16:04:24
cashout_time1969-12-31 23:59:59
total_payout_value0.436 SBD
curator_payout_value0.144 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length483
author_reputation155,676,200,050,373
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@onefatindian ·
$0.72
![yabapmatt - entry 1.jpg](https://cdn.steemitimages.com/DQmXMMDuhMqgYVR44xjM1bU2JNnrUGVFv8F5XZjmHFLuXPy/yabapmatt%20-%20entry%201.jpg)

--- 

![yabapmatt - entry 2.jpg](https://cdn.steemitimages.com/DQmYvigVn9udd5AWubUmUgV7P4122Ym28CDRUieuDK71njS/yabapmatt%20-%20entry%202.jpg)
👍  ,
properties (23)
post_id60,259,968
authoronefatindian
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t162225965z
categorysteemmonsters
json_metadata{"image":["https:\/\/cdn.steemitimages.com\/DQmXMMDuhMqgYVR44xjM1bU2JNnrUGVFv8F5XZjmHFLuXPy\/yabapmatt%20-%20entry%201.jpg"],"tags":["steemmonsters"],"app":"steemit\/0.1"}
created2018-08-20 16:22:27
last_update2018-08-20 16:22:27
depth1
children0
net_rshares531,497,569,598
last_payout2018-08-27 16:22:27
cashout_time1969-12-31 23:59:59
total_payout_value0.538 SBD
curator_payout_value0.177 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length278
author_reputation1,833,721,315,508
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@afzal.khan ·
@yabapmatt really amazing article....
properties (22)
post_id60,266,722
authorafzal.khan
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t175208075z
categorysteemmonsters
json_metadata{"users":["yabapmatt"],"tags":["steemmonsters"],"app":"steemit\/0.1"}
created2018-08-20 17:52:06
last_update2018-08-20 17:52:06
depth1
children0
net_rshares0
last_payout2018-08-27 17:52:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length37
author_reputation0
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@gonewithwind ·
$0.57
@yabapmatt
![PSX_20180821_012729.jpg](https://cdn.steemitimages.com/DQmUt6wJ4i1GbB3mscqVL2NAMd9DSQ8sW82D4NiAPXjVSXA/PSX_20180821_012729.jpg)

![PSX_20180821_013345.jpg](https://cdn.steemitimages.com/DQmTEo7VLmf6aMfpZDF4ssfo7Grv8j5rZLwXdZib1eRbyD8/PSX_20180821_013345.jpg)
👍  ,
properties (23)
post_id60,275,984
authorgonewithwind
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180820t200807663z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"image":["https:\/\/cdn.steemitimages.com\/DQmUt6wJ4i1GbB3mscqVL2NAMd9DSQ8sW82D4NiAPXjVSXA\/PSX_20180821_012729.jpg"],"app":"steemit\/0.1","users":["yabapmatt"]}
created2018-08-20 20:08:09
last_update2018-08-20 20:08:09
depth1
children0
net_rshares420,906,758,917
last_payout2018-08-27 20:08:09
cashout_time1969-12-31 23:59:59
total_payout_value0.429 SBD
curator_payout_value0.136 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length271
author_reputation718,896,992,365
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@mjtravel ·
$0.59
HELLO  @yabapmatt thanks a lot for the infos. You and your team are so AMAZING too.
 this is my entry:

![2.png](https://cdn.steemitimages.com/DQmXqCAyoEDZhL2mzhBq48m7L4fEQfWyDdyeJLjFrR4Mh4n/2.png)

![final 3.png](https://cdn.steemitimages.com/DQmaaoiVexzLsjaLW2abMpY7xT3d8Jrc2Jbozg3rx3F9xtr/final%203.png)
👍  
properties (23)
post_id60,320,967
authormjtravel
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180821t082218016z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit\/0.1","image":["https:\/\/cdn.steemitimages.com\/DQmXqCAyoEDZhL2mzhBq48m7L4fEQfWyDdyeJLjFrR4Mh4n\/2.png"],"users":["yabapmatt"]}
created2018-08-21 08:22:18
last_update2018-08-21 08:22:18
depth1
children1
net_rshares431,424,120,120
last_payout2018-08-28 08:22:18
cashout_time1969-12-31 23:59:59
total_payout_value0.440 SBD
curator_payout_value0.146 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length306
author_reputation12,208,622,540,590
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@mjtravel ·
Thank you so so much @yabapmatt . For picking my Entry. I was so surprise and very happy. Thanks again and  Congratulations with the success  and more success of The Steem Monsters and your other projects!!.
properties (22)
post_id61,031,494
authormjtravel
permlinkre-mjtravel-re-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180829t105909174z
categorysteemmonsters
json_metadata{"users":["yabapmatt"],"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-29 10:59:09
last_update2018-08-29 10:59:09
depth2
children0
net_rshares0
last_payout2018-09-05 10:59:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length207
author_reputation12,208,622,540,590
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@nissam ·
https://steemit.com/@yabapmatt  Very   nice  post
properties (22)
post_id60,353,653
authornissam
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180821t133957017z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit\/0.1","links":["https:\/\/steemit.com\/@yabapmatt"]}
created2018-08-21 15:40:15
last_update2018-08-21 15:40:15
depth1
children0
net_rshares0
last_payout2018-08-28 15:40:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length49
author_reputation14,565,766,155
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@poyim ·
$0.98
![SteemMeme.gif](https://cdn.steemitimages.com/DQmQ7AgtF4N1DEEPo6J4BqrXHwWg62hcT9WsbKYbZfDJU9z/SteemMeme.gif)
👍  ,
properties (23)
post_id60,354,229
authorpoyim
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180821t154704628z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"image":["https:\/\/cdn.steemitimages.com\/DQmQ7AgtF4N1DEEPo6J4BqrXHwWg62hcT9WsbKYbZfDJU9z\/SteemMeme.gif"],"app":"steemit\/0.1"}
created2018-08-21 15:47:03
last_update2018-08-21 15:47:03
depth1
children0
net_rshares711,670,203,897
last_payout2018-08-28 15:47:03
cashout_time1969-12-31 23:59:59
total_payout_value0.921 SBD
curator_payout_value0.056 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length109
author_reputation1,068,781,404,226
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@grey580 ·
$0.13
Very cool matt! 
I hope that everything works smoothly so we can start competing.
👍  
properties (23)
post_id60,427,444
authorgrey580
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180822t114447918z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-22 11:44:48
last_update2018-08-22 11:44:48
depth1
children0
net_rshares91,089,254,647
last_payout2018-08-29 11:44:48
cashout_time1969-12-31 23:59:59
total_payout_value0.128 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length81
author_reputation11,452,199,077,076
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@sayeds1956 ·
Great idea
👍  
properties (23)
post_id60,459,003
authorsayeds1956
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180822t184945659z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-22 18:49:48
last_update2018-08-22 18:49:48
depth1
children0
net_rshares277,660,909
last_payout2018-08-29 18:49:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length10
author_reputation1,369,829,979,214
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@zerokun ·
i'm your witness ! O.ob
properties (22)
post_id60,547,962
authorzerokun
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180823t173220278z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"]}
created2018-08-23 17:32:21
last_update2018-08-23 17:32:21
depth1
children0
net_rshares0
last_payout2018-08-30 17:32:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length23
author_reputation1,223,989,741,107
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@gonewithwind ·
@yabapmatt
Thank you thank you so much sir for your gift...you dont know how much i need it...🙏
properties (22)
post_id60,983,930
authorgonewithwind
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180828t204053406z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit\/0.1","users":["yabapmatt"]}
created2018-08-28 20:40:54
last_update2018-08-28 20:40:54
depth1
children0
net_rshares0
last_payout2018-09-04 20:40:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length95
author_reputation718,896,992,365
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@palikari123 ·
Thanks @yabapmatt for the generous prize for your meme contest! We now look forward to the battles:)
properties (22)
post_id60,996,661
authorpalikari123
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180829t005409310z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit\/0.1"}
created2018-08-29 00:54:09
last_update2018-08-29 00:54:09
depth1
children0
net_rshares0
last_payout2018-09-05 00:54:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length100
author_reputation22,967,361,763,386
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@palasatenea ·
Thank you so much @yabapmatt ^^!, this prize it's very important to me I will use it wisely to grow up my account here. Hope I can help others like you did with me this time. Thank you very much.
properties (22)
post_id61,000,627
authorpalasatenea
permlinkre-yabapmatt-steem-monsters-tech-talk-part-5-the-decentralized-match-making-protocol-20180829t020820539z
categorysteemmonsters
json_metadata{"app":"steemit\/0.1","tags":["steemmonsters"],"users":["yabapmatt"]}
created2018-08-29 02:08:24
last_update2018-08-29 02:08:24
depth1
children0
net_rshares0
last_payout2018-09-05 02:08:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length195
author_reputation3,621,503,330,124
root_title"Steem Monsters Tech Talk - Part 5 - The Decentralized Match-Making Protocol"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000