create account

Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates by yabapmatt

View this thread on: hive.blogpeakd.comecency.com
· @yabapmatt · (edited)
$274.04
Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates
![](https://steemitimages.com/0x0/https://cdn.steemitimages.com/DQmY7e3bPuP7WFYMYSLmmiKipbyt7XciMhsgNBFieEhtcMX/steem-monsters_logo_vector_01-01.jpg)

<sup>*Awesome logo design by @mrgodby*</sup>

# Monster Market DEX Protocol Updates

I feel a bit like a broken record here, but I am once again floored by the amazing response to the Monster Market and the volume of cards being bought and sold in the first week! I have gotten a LOT of feedback from the community since the launch - which is awesome! - and I'm excited to announce that the protocol updates to enable a good portion of that feedback have now been implemented!

This update is primarily focused on updates to the Monster Market DEX Protocol itself, so this post will be of most interest to those of you who are interested in building your own Steem Monsters market. No changes have been made the Monster Market user interface on the SteemMonsters.com website yet, but the framework is now in place so look for some changes coming in the near future!

## Multiple Market Items in a Single Transaction

The "sm_market_sell" custom_json operation now accepts an array of objects which will allow multiple market items to be published in a single transaction, as compared to before where you had to publish a separate custom_json for each. An example of listing four cards for sale as separate market items in the same transaction is as follows:

```
[
  { cards: ['C-PCPBW2W82O'], currency: 'USD', price: 0.1, fee_pct: 200 },
  { cards: ['C-6T8XB86ZTS'], currency: 'USD', price: 0.2, fee_pct: 200 },
  { cards: ['C-AF13N9GX6O'], currency: 'USD', price: 0.15, fee_pct: 200 },
  { cards: ['C-AF13N9GX6O'], currency: 'USD', price: 0.15, fee_pct: 200 }
]
```

With multiple market items in a single transaction, we can no longer use just the transaction ID to uniquely identify a market item. To address this, the unique identifier for market items will now be in the format: [trx_id]-[index].

In the example above, four market item records will be created with the following IDs (assuming 52c7dd26be685e281bf2097dd17db5dce265b851 is the transaction ID containing the custom_json operation):

```
52c7dd26be685e281bf2097dd17db5dce265b851-0
52c7dd26be685e281bf2097dd17db5dce265b851-1
52c7dd26be685e281bf2097dd17db5dce265b851-2
52c7dd26be685e281bf2097dd17db5dce265b851-3
```

If you wish to purchase one of these market items, you will need to use the full identifier including the index at the end in your transfer memo, for example:

```
sm_market_sale:52c7dd26be685e281bf2097dd17db5dce265b851-2
```

The index portion will be required even if there is only one market item included in the transaction (it will just be 0 in that case) and the identifier for market items published before this update will remain the same, without an index at the end.

You can always get a full listing of active market items using the steemmonsters.com/market/for_sale API endpoint.

Please note that there are limitations to the size of a single custom_json transaction, so if you try to publish a transaction with hundreds of market items, it will likely fail. Unfortunately you will have to split it up into multiple smaller transactions in that case.

## Multiple Cancellations in a Single Transaction

In addition to listing multiple items for sale in a single transaction, you can now also cancel multiple active sales in a single transaction.

The "sm_cancel_sell" custom_json operation now accepts an array property called "trx_ids" (vs the old string property "trx_id"). "trx_ids" is just a simple array of market item transaction IDs to cancel. To cancel all of the market items from the "sm_market_sell" example used above, you can publish an "sm_market_cancel" transaction with the following JSON:

```
{ "trx_ids": ["52c7dd26be685e281bf2097dd17db5dce265b851-0", "52c7dd26be685e281bf2097dd17db5dce265b851-1", "52c7dd26be685e281bf2097dd17db5dce265b851-2", "52c7dd26be685e281bf2097dd17db5dce265b851-3"] }
```

It is important to note that for both sell and cancel transactions, **if any of the items in the array have an error, the entire transaction will fail**. Please see the transaction history section below for more information on how to check if a transaction failed and what the errors were.

## Bug Fixes

Two important bugs were fixed in this update as well. The first being that if two purchase transactions for the same market item came in the same block through the market on steemmonsters.com, then both purchases would be passed through to the seller even though obviously only one of the buyers would actually get the card.

The fact that this happened numerous times shows just how quickly people were jumping on certain card sales! In any event, it has been fixed now so that the second transaction will be refunded as intended.

If anyone had this happened where they purchased a card on the market and didn't receive the card or a refund, please let me know!

The second bug that was fixed was just a messaging issue where if you were in the process of buying a card through the market on steemmonsters.com, and before you were able to complete the payment someone else purchased the same card before you, it would show a "Purchase completed!" message.

While technically the message is correct in that the purchase was completed, it was a confusing experience for many players. That message has now been changed to reflect the fact that someone else has just purchased this card.

## Steem Monsters Transaction History

In the past, a custom_json transaction would be posted to the @steemmonsters account on the Steem blockchain that confirmed all actions that had taken place. This includes gifting cards/packs, combining cards, purchasing packs, and selling/cancelling market items.

These transactions were unnecessary for the functioning of the system, but were just posted as a way for any third parties to be able to easily verify that a transaction was correct and was processed, as well as to easily keep track of the state of the system by querying the transaction history of the @steemmonsters account.

This resulted in a lot of unneeded data being stored on the blockchain and taking up space, so I decided to stop doing that. If you want to confirm if a transaction was correct and was processed you can make the following API call:

```
https://steemmonsters.com/transactions/lookup?trx_id=6df3d5a990452343ef03b7b738fce765a63fa352
```

This will return all of the details about the transaction, including whether it was processed successfully, or if there were any errors. The response for the transaction in the example above is:

```
{
  "trx_info": {
    "id": "6df3d5a990452343ef03b7b738fce765a63fa352",
    "block_id": "01740ec08f9d90a750ffa33e0989847ba983e304",
    "prev_block_id": "01740ebfa6228b5d820dd598986f250f6388f60c",
    "type": "sm_sell_cards",
    "player": "thomasgutierrez",
    "data": "[{\"cards\":[\"C-0JNBAA06DC\"],\"currency\":\"USD\",\"price\":\"0.12\",\"fee_pct\":200}]",
    "success": true,
    "error": null,
    "block_num": 24383168,
    "created_date": "2018-07-21T23:33:33.914Z"
  }
}
```

If there were any problems with the transaction, like if someone tried to sell a card that they didn't own or one that was already listed for sale, the "success" property would be "false" and the "error" property would contain a description of the problem.

If you were previously getting the transaction history of the @steemmonsters account to keep track of the current state of the system, you can now use the following API call instead:

```
https://steemmonsters.com/transactions/history?from_block=24383333
```

This will return a list of all Steem Monsters transactions that occurred after the block specified in the "from_block" property. Note that it will return a maximum of 1,000 records.

## Thank You For Your Support!

To everyone who has supported me, I want to sincerely thank you. That really gives me the motivation to keep doing this day in and day out and to know that I'm making the right decision devoting so much of my time and energy to the Steem platform.

I'm not sure if anyone is following all of this, but thank you for reading it anyway! I'm very much looking forward to continued feedback from the community to continue to make Steem Monsters better!

<center>

[![](https://steemitimages.com/0x0/https://cdn.steemitimages.com/DQmWF7oWtjrGimiHGrrM3y48kB2mGXJnsZxEo6peLEZ7MfW/yabapmatt_post-footer_metal-glow.png)](https://v2.steemconnect.com/sign/account-witness-vote?witness=yabapmatt&approve=1)
<sup>*Banner art by @nateaguila ...except I just added the Steem Monsters logo in the middle :-)*</sup>

</center>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 214 others
πŸ‘Ž  
properties (23)
authoryabapmatt
permlinksteem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates
categorysteemmonsters
json_metadata{"tags":["steemmonsters","steem","gaming","dev","steemdev"],"app":"steemit/0.1","users":["mrgodby","steemmonsters","nateaguila"],"image":["https://steemitimages.com/0x0/https://cdn.steemitimages.com/DQmY7e3bPuP7WFYMYSLmmiKipbyt7XciMhsgNBFieEhtcMX/steem-monsters_logo_vector_01-01.jpg","https://steemitimages.com/0x0/https://cdn.steemitimages.com/DQmWF7oWtjrGimiHGrrM3y48kB2mGXJnsZxEo6peLEZ7MfW/yabapmatt_post-footer_metal-glow.png"],"links":["https://v2.steemconnect.com/sign/account-witness-vote?witness=yabapmatt&approve=1"],"format":"markdown"}
created2018-07-22 00:10:00
last_update2018-07-22 00:12:42
depth0
children36
last_payout2018-07-29 00:10:00
cashout_time1969-12-31 23:59:59
total_payout_value209.831 HBD
curator_payout_value64.207 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,656
author_reputation160,224,638,135,630
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout100,000.000 HBD
percent_hbd10,000
post_id65,527,516
net_rshares128,412,286,154,122
author_curate_reward""
vote details (279)
@aiman ·
This is good update about steem monsters. Thanks for sharing good update.
Take care, have a nice day.
πŸ‘  
properties (23)
authoraiman
permlinkre-yabapmatt-2018722t53649365z
categorysteemmonsters
json_metadata{"tags":["steemmonsters","steem","gaming","dev","steemdev"],"app":"esteem/1.6.0","format":"markdown+html","community":"esteem"}
created2018-07-22 00:36:54
last_update2018-07-22 00:36:54
depth1
children0
last_payout2018-07-29 00:36:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation2,346,203,968,393
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,529,027
net_rshares529,696,304
author_curate_reward""
vote details (1)
@amina-khalid ·
Super logo design.that displayed is amazing party design
πŸ‘  
properties (23)
authoramina-khalid
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t015121316z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-07-22 01:51:30
last_update2018-07-22 01:51:30
depth1
children0
last_payout2018-07-29 01:51:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation-86,690,116,135
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id65,533,131
net_rshares387,965,761
author_curate_reward""
vote details (1)
@cherrythinks ·
Quiet  a piece of an information!
Well!! Hie.. I'm a newbie. I write. Care to read.
Here is the link to my post. Upvote if you like the content. thanks!

https://steemit.com/creativity/@cherrythinks/echoes-poem-3-death-for-life

Feedback appreciated!
properties (22)
authorcherrythinks
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180803t101455064z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"links":["https://steemit.com/creativity/@cherrythinks/echoes-poem-3-death-for-life"],"app":"steemit/0.1"}
created2018-08-03 10:14:57
last_update2018-08-03 10:14:57
depth1
children0
last_payout2018-08-10 10:14:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length250
author_reputation929,633,099,286
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,974,019
net_rshares0
@chireerocks ·
@yabapmatt, First of all i want to really congratulate you for the development of the **Steemmonsters** and for sure it's an great concept which is already spreading the effective fever and i am also holding the cards and waiting for the **Steemmonsters Battle**.

And as we know that, gaming community is #1 community in this world and card game can increase the enthusiasm because this is for all age and that also launched on the **Steem Blockchain**.

And in my opinion, for sure **Steemmonsters** will going to play an vital role in the growth of the **Steem Blockchain**, and also more and more users will be attracted towards the **Steemmonsters** game and inturn towards the **Steem Blockchain**.

And i think that the new update of **Account Creation** from the **Steemmonsters** website is really vital decision and in my opinion that will invite more users to join the Steemit Platform for sure and this update is really appreciable.

And great to see your all development updates and these stuff truly reflecting that you are engaged in the process of more developments and improvements to provide the effectivity to the platform. So, keep up the great job and i want to wish you the good luck for the upcoming projects.

Wishing you an great day and stay blessed. πŸ™‚
πŸ‘  
properties (23)
authorchireerocks
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t002103737z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-07-22 00:21:09
last_update2018-07-22 00:21:09
depth1
children5
last_payout2018-07-29 00:21:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,278
author_reputation327,821,690,945,691
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,528,110
net_rshares551,005,926
author_curate_reward""
vote details (1)
@colorme ·
thank you for your sharing and i like it !
I want to share with you about "Short space of time to PhΓΊ YΓͺn in Vietnam"
https://steemit.com/travel/@colorme/short-space-of-time-to-phu-yen-in-vietnam
properties (22)
authorcolorme
permlinkre-chireerocks-re-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180729t174202082z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"links":["https://steemit.com/travel/@colorme/short-space-of-time-to-phu-yen-in-vietnam"],"app":"steemit/0.1"}
created2018-07-29 17:42:03
last_update2018-07-29 17:42:03
depth2
children4
last_payout2018-08-05 17:42:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length195
author_reputation5,886,583,698
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,417,154
net_rshares0
@chireerocks ·
Kindly, i want to give you an advice and that is, never share your **Blog Post** Links until author is advising you to share, otherwise sharing links can be considered as **SPAM**. Always comment relating to post excluding links and in that way you can receive upvote and possibly author can visit your blog to check your posts. Stay blessed. πŸ™‚
properties (22)
authorchireerocks
permlinkre-colorme-re-chireerocks-re-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180729t175107462z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-07-29 17:51:09
last_update2018-07-29 17:51:09
depth3
children3
last_payout2018-08-05 17:51:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length344
author_reputation327,821,690,945,691
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,417,982
net_rshares0
@clove71 ·
Thank you for all your hard work! We all Love Steem Monsters, it's just so fun and it hasn't even really started yet!! Keep up the great work! :-)
properties (22)
authorclove71
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t081556495z
categorysteemmonsters
json_metadata{"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["steemmonsters"],"users":[],"links":[],"image":[]}
created2018-07-22 08:15:57
last_update2018-07-22 08:15:57
depth1
children0
last_payout2018-07-29 08:15:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length146
author_reputation679,459,126,480,413
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,557,961
net_rshares0
@colorme ·
thank you for your sharing and i like it !
I want to share with you about "Short space of time to PhΓΊ YΓͺn in Vietnam"
https://steemit.com/travel/@colorme/short-space-of-time-to-phu-yen-in-vietnam
properties (22)
authorcolorme
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180729t174047927z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"links":["https://steemit.com/travel/@colorme/short-space-of-time-to-phu-yen-in-vietnam"],"app":"steemit/0.1"}
created2018-07-29 17:40:48
last_update2018-07-29 17:40:48
depth1
children0
last_payout2018-08-05 17:40:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length195
author_reputation5,886,583,698
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,417,046
net_rshares0
@elima ·
$0.58
MAT, This is awesome! I had no idea that you were the developer behind Steem Monsters until today. I started a podcast called the "blockchain gaming podcast." So far I have interviewed the COO of World of Ether and one of the developers working on Axie Infinity. I would LOVE to get you on the podcast!! let me know if thats something we can make happen :)
πŸ‘  
properties (23)
authorelima
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180806t182153545z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-08-06 18:21:54
last_update2018-08-06 18:21:54
depth1
children1
last_payout2018-08-13 18:21:54
cashout_time1969-12-31 23:59:59
total_payout_value0.577 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length356
author_reputation32,966,754,357,077
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,325,981
net_rshares400,406,021,948
author_curate_reward""
vote details (1)
@yabapmatt ·
That's great, I would love to come on the podcast! Hit me up on Discord (https://discord.gg/CAFJRjY) and hopefully we can set something up.
πŸ‘  
properties (23)
authoryabapmatt
permlinkre-elima-re-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180806t182519251z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"links":["https://discord.gg/CAFJRjY"],"app":"steemit/0.1"}
created2018-08-06 18:25:15
last_update2018-08-06 18:25:15
depth2
children0
last_payout2018-08-13 18:25:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation160,224,638,135,630
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,326,253
net_rshares8,051,661,520
author_curate_reward""
vote details (1)
@fahad603 ·
thanks for sharing this important article. great job
πŸ‘  
properties (23)
authorfahad603
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t035810226z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-07-22 03:58:12
last_update2018-07-22 03:58:12
depth1
children0
last_payout2018-07-29 03:58:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation98,616,922,323
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,541,303
net_rshares283,165,346
author_curate_reward""
vote details (1)
@firstnatural ·
$1.61
I Just Became Your 6000th Follower!

WooHoo!

![Screen Shot 2018-08-03 at 3.18.30 AM.png](https://cdn.steemitimages.com/DQmcjqeT3eeZJvKApFt6aPR8jTXQKrWkhPgxRCbpkta5p4c/Screen%20Shot%202018-08-03%20at%203.18.30%20AM.png)
πŸ‘  
properties (23)
authorfirstnatural
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180803t071907592z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"image":["https://cdn.steemitimages.com/DQmcjqeT3eeZJvKApFt6aPR8jTXQKrWkhPgxRCbpkta5p4c/Screen%20Shot%202018-08-03%20at%203.18.30%20AM.png"],"app":"steemit/0.1"}
created2018-08-03 07:19:06
last_update2018-08-03 07:19:06
depth1
children1
last_payout2018-08-10 07:19:06
cashout_time1969-12-31 23:59:59
total_payout_value1.204 HBD
curator_payout_value0.401 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length219
author_reputation18,464,371,754
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,960,517
net_rshares1,024,217,941,713
author_curate_reward""
vote details (1)
@yabapmatt ·
That's awesome, thanks! I better get off my butt and post more :-)
properties (22)
authoryabapmatt
permlinkre-firstnatural-re-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180804t002719691z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-08-04 00:27:18
last_update2018-08-04 00:27:18
depth2
children0
last_payout2018-08-11 00:27:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation160,224,638,135,630
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,040,343
net_rshares0
@flagfixer ·
@yabapmatt you were flagged by a worthless gang of trolls, so, I gave you an upvote to counteract it!  Enjoy!!
properties (22)
authorflagfixer
permlinkflagfixer-re-yabapmattsteem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates
categorysteemmonsters
json_metadata""
created2018-07-24 16:56:21
last_update2018-07-24 16:56:21
depth1
children0
last_payout2018-07-31 16:56:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation2,148,467,197,579
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,836,429
net_rshares0
@gamefiles ·
I got in touch with the guy who made the new Steem Monster's logo he's very talented, he's going to help me with a project!
πŸ‘  
properties (23)
authorgamefiles
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t040006133z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-07-22 04:00:06
last_update2018-07-22 04:00:06
depth1
children0
last_payout2018-07-29 04:00:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation2,145,024,282,595
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,541,424
net_rshares3,228,382,296
author_curate_reward""
vote details (1)
@garudi · (edited)
properties (23)
authorgarudi
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t020504644z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-07-22 02:05:03
last_update2019-03-25 18:57:03
depth1
children0
last_payout2018-07-29 02:05:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation11,121,884,448,559
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id65,533,896
net_rshares-96,914,790,112
author_curate_reward""
vote details (5)
@jaichai · (edited)
Just visited http://isteemd.com/

Upvoted (just for props, I know this is past being a 7-Day Pumpkin), followed  AND casted a Witness vote for you (@yabapmatt - #39? Impressive) just now (Currently, with you, I have only 3 active Witness votes).

Namaste, JaiChai
properties (22)
authorjaichai
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180806t054838587z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"links":["http://isteemd.com/"],"app":"steemit/0.1"}
created2018-08-06 05:48:39
last_update2018-08-06 05:49:36
depth1
children0
last_payout2018-08-13 05:48:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length263
author_reputation-5,759,614,035,864
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,263,178
net_rshares0
@mellofello ·
$0.53
Hey Matt. It’s Mello. I have not kept up with Steemit lately, but I have been hearing very great things about you and SteemMonsters from Paula and Dave from Newbieresteemday. Sounds like you are super busy and rightfully so. Keep up the great work buddy. I will get caught up with your new game very shortly. You’re going to make me do something I hate to do...spend money, haha. I gotta show my suppprt though. All the best with the development. Take care.
πŸ‘  
properties (23)
authormellofello
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t053738125z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-07-22 05:37:36
last_update2018-07-22 05:37:36
depth1
children1
last_payout2018-07-29 05:37:36
cashout_time1969-12-31 23:59:59
total_payout_value0.395 HBD
curator_payout_value0.130 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length457
author_reputation67,078,537,643,577
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,547,651
net_rshares245,318,237,892
author_curate_reward""
vote details (1)
@farro2 ·
hmm it's good,  If anyone wants this movie Hotel transilvania 3 download link visit here : https://steemit.com/drac/@farro2/hotel-transilvania-3-vacaciones-de-verano-film-complet
πŸ‘  , ,
properties (23)
authorfarro2
permlinkre-mellofello-re-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180724t072107677z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"links":["https://steemit.com/drac/@farro2/hotel-transilvania-3-vacaciones-de-verano-film-complet"],"app":"steemit/0.1"}
created2018-07-24 07:21:12
last_update2018-07-24 07:21:12
depth2
children0
last_payout2018-07-31 07:21:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length178
author_reputation-2,595,934,132
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,785,271
net_rshares1,698,100,023
author_curate_reward""
vote details (3)
@millionmoney ·
Well post sir..welcome... Sir plz give me a upvote
properties (22)
authormillionmoney
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180803t160013074z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-08-03 16:00:18
last_update2018-08-03 16:00:18
depth1
children0
last_payout2018-08-10 16:00:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length50
author_reputation16,355,600,829
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,003,989
net_rshares0
@palasatenea · (edited)
I know this isn't the article issue but I do the question anyway, there are any rules for the game yet?, I tried to search some rulebook but I don't found one. 

Great job btw, I think this game it's an excellent idea, I've played MTG (magic the gathering) for years, and I think this game will be very successful. Congrats to all who work at the development.
properties (22)
authorpalasatenea
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t004938174z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-07-22 00:49:36
last_update2018-07-22 00:50:48
depth1
children0
last_payout2018-07-29 00:49:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length359
author_reputation6,973,925,098,488
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,529,728
net_rshares0
@panditsaurabh ·
$0.04
@yabapmatt ,sir what are terms if I want to add myself on steembottracker . Will you pls send me link
πŸ‘  , ,
properties (23)
authorpanditsaurabh
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t010914734z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-07-22 01:09:18
last_update2018-07-22 01:09:18
depth1
children0
last_payout2018-07-29 01:09:18
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation1,693,183,228,874
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,530,833
net_rshares18,353,079,478
author_curate_reward""
vote details (3)
@postpromoter ·
re-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t010353188z
You got a 60.31% 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)
authorpostpromoter
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t010353188z
categorysteemmonsters
json_metadata{"app":"postpromoter/2.0.2"}
created2018-07-22 01:03:51
last_update2018-07-22 01:03:51
depth1
children0
last_payout2018-07-29 01:03:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length397
author_reputation12,722,616,650,811
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,530,547
net_rshares0
@raviyadav3597 ·
hello sir 
can u please upvote my just any one post 
please sir

https://steemit.com/@raviyadav3597
πŸ‘  
properties (23)
authorraviyadav3597
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180727t145336451z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"links":["https://steemit.com/@raviyadav3597"],"app":"steemit/0.1"}
created2018-07-27 14:53:36
last_update2018-07-27 14:53:36
depth1
children0
last_payout2018-08-03 14:53:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation579,465,433
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,168,810
net_rshares533,941,929
author_curate_reward""
vote details (1)
@saqlainnaik ·
Fantastic work with this one, kudos
properties (22)
authorsaqlainnaik
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t065631736z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-07-22 06:56:36
last_update2018-07-22 06:56:36
depth1
children1
last_payout2018-07-29 06:56:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation19,219,629,611
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,552,327
net_rshares0
@spaminator ·
[Source]()
When you copy/paste or repeatedly type the same comments you could be mistaken for a bot. 

More information: 
[The Art of Commenting](https://steemit.com/steemcleaners/@steemcleaners/the-art-of-commenting)
[Comment Classifications](https://steemcleaners.org/comment-classifications/)
πŸ‘  
properties (23)
authorspaminator
permlinkre-saqlainnaik-re-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t065631736z-20180723t185517102z
categorysteemmonsters
json_metadata{"app":"steemcleaners/0.3","format":"markdown+html","community":"steemcleaners"}
created2018-07-23 18:55:18
last_update2018-07-23 18:55:18
depth2
children0
last_payout2018-07-30 18:55:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length301
author_reputation68,078,150,632,608
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,730,075
net_rshares712,536,782
author_curate_reward""
vote details (1)
@shubham90 ·
I liked your post, I have to learn something from your post. you do  will be educational post everyday
properties (22)
authorshubham90
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180728t035302787z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-07-28 03:53:06
last_update2018-07-28 03:53:06
depth1
children0
last_payout2018-08-04 03:53:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation-196,165,320
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id66,232,835
net_rshares0
@simplegame ·
Are you available to hire ?
If so what is a good way to contact you
If not sorry to bother you
properties (22)
authorsimplegame
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180805t002056334z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-08-05 00:20:57
last_update2018-08-05 00:20:57
depth1
children0
last_payout2018-08-12 00:20:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length94
author_reputation127,514,703,594,954
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,138,195
net_rshares0
@steem-mart ·
re-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180723t203714114z
You got a 100.00% upvote from @steem-mart courtesy of @mjrcrypto!
properties (22)
authorsteem-mart
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180723t203714114z
categorysteemmonsters
json_metadata{"app":"postpromoter/2.1.0"}
created2018-07-23 20:37:12
last_update2018-07-23 20:37:12
depth1
children0
last_payout2018-07-30 20:37:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation159,734,470
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,738,225
net_rshares0
@sumeetsingh ·
Hello yabapmatt,hope you are doing good.i am newbie in steemit and after some research i landed on the steem bot tracker page and from there to your profile.i have few query in hope of you will answer and solve my problms..
I wanted to know how to make my own bid voting bot ?do you create it and give us or i have to create one and after creating the bot how can i register it on steem bot tracker?do i need coding knowledge to make my own bid bot ?
properties (22)
authorsumeetsingh
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180808t194721735z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-08-08 19:49:48
last_update2018-08-08 19:49:48
depth1
children0
last_payout2018-08-15 19:49:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length450
author_reputation1,145,083,778,195
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id67,560,453
net_rshares0
@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-45---monster-market-dex-protocol-updates.mp3)
Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvoting this reply.
πŸ‘  
properties (23)
authortts
permlinkre-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t004132
categorysteemmonsters
json_metadata""
created2018-07-22 00:41:33
last_update2018-07-22 00:41:33
depth1
children0
last_payout2018-07-29 00:41:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length393
author_reputation-4,535,154,553,995
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,529,291
net_rshares541,873,231
author_curate_reward""
vote details (1)
@vargasjosesss ·
Thank you to share your good activity with us
properties (22)
authorvargasjosesss
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t084132117z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-07-22 08:41:33
last_update2018-07-22 08:41:33
depth1
children0
last_payout2018-07-29 08:41:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation28,971,403,250
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,559,884
net_rshares0
@vik007 ·
good
properties (22)
authorvik007
permlinkre-yabapmatt-steem-monsters-tech-talk---part-45---monster-market-dex-protocol-updates-20180722t034018182z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-07-22 03:40:24
last_update2018-07-22 03:40:24
depth1
children0
last_payout2018-07-29 03:40:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation459,657,470
root_title"Steem Monsters Tech Talk - Part 4.5 - Monster Market DEX Protocol Updates"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id65,540,123
net_rshares0