create account

Steem Monsters Tech Talk - Steem Blockchain Integration by yabapmatt

View this thread on: hive.blogpeakd.comecency.com
· @yabapmatt ·
$172.20
Steem Monsters Tech Talk - Steem Blockchain Integration
![](https://cdn.steemitimages.com/0x0/https://cdn.steemitimages.com/DQmeSr2AVS5guL6HqZVt1LoDyqLAxrZdsFVftMqcGooqgqh/image.png)

As @aggroed has mentioned, we are both absolutely floored by the response Steem Monsters has received from the Steem community so far! While I have strict instructions to spend all of my free time “furiously coding” new features, I thought it would be good to take some time to discuss the technical details of how the Steem Monsters project utilizes the Steem blockchain since that is obviously the primary differentiating feature of this game.

As most of you probably know, the Steem blockchain does not support custom-built smart contracts like blockchains such as Ethereum, EOS, and some others do. This means that it’s not possible to build a game, or any custom app really, that is run and executed directly on the blockchain in a completely decentralized manner.

While this might seem like a bad thing, it’s actually a very good thing, but I’m not going to get into that right now since it is far outside the scope of this post. You’ll just have to trust me!

So while Steem Monsters cannot be run on the Steem blockchain directly, we can still utilize the Steem blockchain to **record** everything that takes place in the game in an immutable, decentralized manner, and **allow players to authorize actions using their private keys**. This allows for complete transparency, true digital asset ownership, and for the full “state” of the game to be recorded permanently and immutably.

## Custom JSON Operations FTW!
---

The game achieves the goals described above by publishing everything that happens in the game on the blockchain using Custom JSON operations. This is an operation built into and fully supported by the Steem blockchain that allows publishing any arbitrary data to the blockchain which does not show up as a blog post or comment and cannot receive votes or earn rewards. It is simply a way to store some data on the blockchain.

Whenever packs are purchased from the Steem Monsters website, a Custom JSON operation is published to the blockchain with the the unique identifier and type of each card in those packs along with the Steem account name of the purchaser. This way all of the cards that exist are published, permanently and immutably, on the blockchain, allowing anyone to check, verify, and prove what cards are owned by whom.

Any promotional packs we give out are “purchased” by the @steemmonsters account and published to the blockchain in the same way as any other packs, so there is complete transparency around that as well.

If you look at the [@steemmonsters account on a block explorer like steemd.com](https://steemd.com/@steemmonsters) you can see these custom_json transactions being posted each time packs are purchased:

![image1.png](https://cdn.steemitimages.com/DQmeAyBoM4X7GiS5iTqU7kStr5YAyBCDCiL4J7hmrw85ABN/image1.png)

You can see in the image above that each individual card in the game has a unique identifier which looks something like this: "C-1GBTAYHMHC". It’s important to note that it’s not every *type* of card, it’s every individual card. This means that if you have five Pirate Captains in your collection, they each have their own unique identifier and are each treated as separate cards which can be bought, sold, traded, and upgraded individually. You can see the unique identifier of each card in your collection on the Steem Monsters website by clicking on a specific card on the “My Collection” page to bring up the card details.

These are known as “Non-Fungible Tokens” or NFTs. Non-Fungible means that each individual token is different and can have its own properties, as compared to fungible tokens like STEEM, SBD, SMTs, BTC, ETH, etc which are tokens that are each indistinguishable and interchangeable. Cryptokitties are an example of NFTs on the Ethereum blockchain and, as far I know, Steem Monsters are the first and currently only NFTs available on the Steem blockchain. Again, I’m not going to go into the topic of NFTs too much here, but it’s a fascinating subject for those of you who are interested and want to research it further.

## Card Ownership
---

One of the great things about decentralized blockchains is that they have, for the first time, introduced the concept of true digital asset ownership. If you buy a pack of Magic the Gathering cards then you own that pack and each of the cards in it by the mere fact that you physically possess it (and presumably acquired it legally). 

If you buy a pack of cards in Hearthstone, however, you only “own” that pack and those cards because Blizzard says you do. In reality Blizzard owns them because they own and control the database in which those cards are stored. Blizzard can delete your cards from the database, or transfer them to someone else, and they would be gone and there is no way to prove that you really owned them (since you technically didn’t).

Before blockchain technology came out it was not possible to truly own digital assets in the same way you can own physical ones, but now you can! If you have the private key to an Ethereum account containing some cryptokitties then you own them and have complete control over them. There is no central entity like Blizzard that can take them away from you.

The same thing applies to Steem Monsters as well. While we do maintain a private server and database like Blizzard does for Hearthstone, in order for a card to be transferred or altered in any way **it requires the owner to publish a Custom JSON transaction using their private posting key to authorize the action**.

This means that, while we may control the Steem Monsters website and our internal database, if we were to ever transfer or alter your cards you can prove that it was an unauthorized action because you did not publish and sign the transaction with your private key.

You can see how this looks for combining cards in the screenshot below:

![image2.png](https://cdn.steemitimages.com/DQmYHkv7TBbv4cfKZyqv6kATGJzJBtHxuoL4SWzZX1WsoXD/image2.png)

Then once that is published on the player’s account, the @steemmonsters account will also publish a Custom JSON with the details / results of that action and a reference to the transaction published by the player authorizing it. This allows the full “state” of the game to still be contained within the @steemmonsters account history. You can see an example of the second transaction below:

![image3.png](https://cdn.steemitimages.com/DQmaab1A7zcV6vH42GEwiPyN6St6nDmg6aB381fxoZLVSWp/image3.png)

It’s important to also note that publishing Custom JSON operations to the blockchain from your own account in order to “authorize” actions will require you to log in to the Steem Monsters website using your private posting key. Previously we allowed logging in using the private memo key and even though very few people have used that option I wanted to make sure we were very clear and transparent about the change to require the private posting key and the reasons behind it.

Your private key is kept and used only locally within your web browser and is *never sent anywhere*. You can feel free to check the page source and network traffic sent from the site to verify this. Also you can [read a good discussion between myself and @lukestokes about these decisions here](https://steemit.com/steemmonsters/@lukestokes/re-yabapmatt-re-lukestokes-re-aggroed-steem-monsters-cartography-challenge-create-the-world-map-120-booster-deck-contest-20180529t200118687z).

## In Conclusion (i.e. back to work for me!)
---

I have spent a LOT of time thinking about how to create a game like this using NFTs on the Steem blockchain (even before Steem Monsters was ever conceived!) but that doesn’t mean that what I ended up coming up with - as described above - is necessarily the best or only way to achieve these goals.

My focus, first and foremost, will be on building out the game and adding new features, but the integration with the Steem blockchain is what makes this game unique and I would love to hear thoughts/comments/ideas from the Steem community on how the implementation may be able to be changed or improved!

Thank you for reading and for your overwhelming praise and support for Steem Monsters! I want to wish everyone the best of luck in the tournaments to come and may every pack you open contain a legendary! *But please let me know if that happens because that means something is very wrong!*

![yabapmatt_post-footer_metal-glow.png](https://cdn.steemitimages.com/DQmWF7oWtjrGimiHGrrM3y48kB2mGXJnsZxEo6peLEZ7MfW/yabapmatt_post-footer_metal-glow.png) *Banner art by @nateaguila ...except I just added the Steem Monsters logo in the middle :-)*
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 276 others
properties (23)
authoryabapmatt
permlinksteem-monsters-tech-talk-steem-blockchain-integration
categorysteemmonsters
json_metadata{"tags":["steemmonsters","steem","gaming","dev","steemdev"],"users":["aggroed","steemmonsters","nateaguila"],"image":["https://cdn.steemitimages.com/0x0/https://cdn.steemitimages.com/DQmeSr2AVS5guL6HqZVt1LoDyqLAxrZdsFVftMqcGooqgqh/image.png","https://cdn.steemitimages.com/DQmeAyBoM4X7GiS5iTqU7kStr5YAyBCDCiL4J7hmrw85ABN/image1.png","https://cdn.steemitimages.com/DQmYHkv7TBbv4cfKZyqv6kATGJzJBtHxuoL4SWzZX1WsoXD/image2.png","https://cdn.steemitimages.com/DQmaab1A7zcV6vH42GEwiPyN6St6nDmg6aB381fxoZLVSWp/image3.png","https://cdn.steemitimages.com/DQmWF7oWtjrGimiHGrrM3y48kB2mGXJnsZxEo6peLEZ7MfW/yabapmatt_post-footer_metal-glow.png"],"links":["https://steemd.com/@steemmonsters","https://steemit.com/steemmonsters/@lukestokes/re-yabapmatt-re-lukestokes-re-aggroed-steem-monsters-cartography-challenge-create-the-world-map-120-booster-deck-contest-20180529t200118687z"],"app":"steemit/0.1","format":"markdown"}
created2018-05-31 22:13:12
last_update2018-05-31 22:13:12
depth0
children107
last_payout2018-06-07 22:13:12
cashout_time1969-12-31 23:59:59
total_payout_value134.283 HBD
curator_payout_value37.921 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,710
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,664,457
net_rshares46,052,392,500,840
author_curate_reward""
vote details (340)
@ahmadmanga ·
Wow, this is getting interesting more and more, I just want to be one of the first to know about battles when they start (not necessarily THE tournament.)
properties (22)
authorahmadmanga
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t074135734z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 07:41:39
last_update2018-06-01 07:41:39
depth1
children0
last_payout2018-06-08 07:41: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_length154
author_reputation297,909,396,191,739
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,719,786
net_rshares0
@aiman · (edited)
A good post about block chain integration. 😇
-
I like your works.
Sir @yabapmatt  I've posted my post in # #steembottracker with your reference if you like tell me about it.
See my post as below:

https://steemit.com/platform/@aiman/a-helpful-question-for-all-my-good-friends
-
properties (22)
authoraiman
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180610t060312694z
categorysteemmonsters
json_metadata{"tags":["steemmonsters","steembottracker"],"users":["yabapmatt"],"links":["https://steemit.com/platform/@aiman/a-helpful-question-for-all-my-good-friends"],"app":"steemit/0.1"}
created2018-06-10 06:03:18
last_update2018-06-10 06:27:09
depth1
children0
last_payout2018-06-17 06:03: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_length277
author_reputation2,346,203,968,393
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id60,097,745
net_rshares0
@ajinantony ·
![Air Elemental.png](https://cdn.steemitimages.com/DQmeA8kaqruEvVvftha4bCWVduAXp2m8SypPpRkMidTzFwW/Air%20Elemental.png)
properties (22)
authorajinantony
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t064851369z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"image":["https://cdn.steemitimages.com/DQmeA8kaqruEvVvftha4bCWVduAXp2m8SypPpRkMidTzFwW/Air%20Elemental.png"],"app":"steemit/0.1"}
created2018-06-01 06:48:51
last_update2018-06-01 06:48:51
depth1
children0
last_payout2018-06-08 06:48: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_length119
author_reputation21,520,608,715
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,714,023
net_rshares0
@alfiandaud ·
Awesome, thanks for the explanation, I guess if someone really wanted to they could create some sort of decentralized steem monster card explorer that shows what users own what cards on the STEEM blockchain...
properties (22)
authoralfiandaud
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t194622630z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 19:46:27
last_update2018-06-01 19:46:27
depth1
children0
last_payout2018-06-08 19:46:27
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_length209
author_reputation30,820,235,405
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,806,995
net_rshares0
@ayoshewa ·
Thanks for this Educating write-up sir. More Inspirations
properties (22)
authorayoshewa
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t221610489z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 22:16:15
last_update2018-05-31 22:16:15
depth1
children0
last_payout2018-06-07 22:16: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_length57
author_reputation614,700,629,079
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,664,770
net_rshares0
@beeyou ·
$1.01
I didn't know you are involved with Steem Monsters. I was never a Pokemon card collector in my youth and don't think I will ever be one now, lol. I'm game to try it out though. Just bought a couple packs and am now a proud owner of a...wait..let me check...Air Elemental and Selena Sky. :)

Thanks for taking time to write the tech portion of it. I'm sure many are more comfortable playing the game knowing that transactions are recorded on the blockchain. You did mention on one of your older posts that you were working on a big project. Steem Monsters is definitely a big one!
👍  
properties (23)
authorbeeyou
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t235752250z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 23:57:51
last_update2018-06-01 23:57:51
depth1
children0
last_payout2018-06-08 23:57:51
cashout_time1969-12-31 23:59:59
total_payout_value0.758 HBD
curator_payout_value0.252 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length579
author_reputation6,318,116,736,784
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,832,018
net_rshares271,707,704,400
author_curate_reward""
vote details (1)
@beggars · (edited)
$1.06
Nicely explained @yabapmatt - when I first saw the Steem Monsters announcement I knew I had to support this project, because as a developer seeing this kind of stuff being built on Steem exciting. And as someone who obsessively collects things (like unique Australian $2 coins) it taps into that "Pokemon" collecting part of my brain.

In my experience always attempting to make everything completely decentralised on the blockchain comes with disadvantages. As you have seemingly have discovered, there are ways to maintain a separate database of data and then write into the blockchain, I guess technically you could call a database + blockchain combination a centralised sidechain.

I've been working on a project for Steem which will use the blockchain to write certain operations into the chain as well as read, but for other inconsequential data, it'll be encrypted in spread out MongoDB instances. The data won't be accessible to anyone other than the user who use their private key to unlock the data. It doesn't give you the ultimate redundancy that a decentralised blockchain does, but the chances of the fallback instances I have in different regions all going down is very unlikely.

You should make these technical deep-dive posts a frequent thing because it's insightful. And as someone who is building applications on the Steem blockchain myself, the shared knowledge helps with things I and others are also building.
👍  , ,
properties (23)
authorbeggars
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t230948733z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-05-31 23:07:36
last_update2018-05-31 23:11:36
depth1
children4
last_payout2018-06-07 23:07:36
cashout_time1969-12-31 23:59:59
total_payout_value1.049 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,432
author_reputation78,118,305,139,287
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,670,072
net_rshares284,099,301,555
author_curate_reward""
vote details (3)
@yabapmatt ·
Really glad you like it and thank you for your support! I definitely plan to do more "tech talk" posts as the project progresses, but no guarantees on the frequency!
👍  
properties (23)
authoryabapmatt
permlinkre-beggars-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t231008787z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 23:10:09
last_update2018-05-31 23:10:09
depth2
children3
last_payout2018-06-07 23:10: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_length165
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,670,324
net_rshares4,235,943,932
author_curate_reward""
vote details (1)
@beggars ·
No worries @yabapmatt - while I have you here (and apologies if you already answered this previously) but any plans to open source Steem Monsters? I think you would have a lot of support from the Steem developer community and it could help add new features in the current app/fix existing bugs. I, for one, would love to contribute.
properties (22)
authorbeggars
permlinkre-yabapmatt-re-beggars-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t231708604z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-05-31 23:14:57
last_update2018-05-31 23:14:57
depth3
children1
last_payout2018-06-07 23: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_length332
author_reputation78,118,305,139,287
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,670,769
net_rshares0
@stabilowl ·
Yes please!  Look forward to more technical deep dives posts from you!
properties (22)
authorstabilowl
permlinkre-yabapmatt-re-beggars-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t002200965z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 00:22:03
last_update2018-06-01 00:22:03
depth3
children0
last_payout2018-06-08 00:22: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_length70
author_reputation17,959,675,189,416
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,677,244
net_rshares0
@bolawa ·
Please how do I get started with this
properties (22)
authorbolawa
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t230003289z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 23:00:09
last_update2018-06-01 23:00:09
depth1
children0
last_payout2018-06-08 23:00: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_length37
author_reputation5,058,132,928
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,827,343
net_rshares0
@cicbar ·
$0.79
When we can expect that game will start?
P.S I have bought 150 packs today, can't wait to play :-)
👍  , ,
properties (23)
authorcicbar
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t222447999z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 22:24:45
last_update2018-05-31 22:24:45
depth1
children3
last_payout2018-06-07 22:24:45
cashout_time1969-12-31 23:59:59
total_payout_value0.788 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation50,511,820,971,454
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,665,533
net_rshares212,865,185,812
author_curate_reward""
vote details (3)
@yabapmatt ·
$0.11
Awesome! Hope you got some good cards! We're doing everything we can to get the game play started as soon as possible, including looking for some development help. I don't want to promise anything right now but I can assure you we will keep everyone posted when we have updates!
👍  ,
properties (23)
authoryabapmatt
permlinkre-cicbar-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t222800798z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 22:28:03
last_update2018-05-31 22:28:03
depth2
children2
last_payout2018-06-07 22:28:03
cashout_time1969-12-31 23:59:59
total_payout_value0.106 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length278
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,665,912
net_rshares31,130,048,691
author_curate_reward""
vote details (2)
@cicbar ·
Thanks mate :-) I've got 5 legendary cards. Similar legendary rate if you compare to Hearthstones :-)
properties (22)
authorcicbar
permlinkre-yabapmatt-re-cicbar-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t223308394z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 22:33:06
last_update2018-05-31 22:33:06
depth3
children0
last_payout2018-06-07 22:33: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_length101
author_reputation50,511,820,971,454
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,666,491
net_rshares0
@lordnigel · (edited)
My programming skills are limited, but I'm not too bad at developing game play or writing a story. I run a small RPG comp on Steemit and people like it. If you need an Alpha tester or an idea's guy I maybe I'm able to help in some way. Work and Uni are simultaneously eating allot of my time, but I love Steem and will do what I can, if its useful.

Else, keep up the good work, looking forward to seeing where this goes. Cheers
properties (22)
authorlordnigel
permlinkre-yabapmatt-re-cicbar-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t000317985z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 00:03:21
last_update2018-06-01 00:04:24
depth3
children0
last_payout2018-06-08 00:03: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_length428
author_reputation53,748,250,654,546
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,675,461
net_rshares0
@cryptocartograph ·
$0.05
Dude Steem Monsters is absolutely smashing it right now!

It's all over my newsfeed, everyone is talking about it! Hopefully it will help attract some more people to Steemit to accelerate the platform's growth, great work with the project so far!
👍  
properties (23)
authorcryptocartograph
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t102707652z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 10:27:06
last_update2018-06-01 10:27:06
depth1
children0
last_payout2018-06-08 10:27:06
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length246
author_reputation2,042,948,972,236
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,737,018
net_rshares12,532,962,023
author_curate_reward""
vote details (1)
@cryptoeater ·
$1.04
Great work @yabapmatt! 
Just wondering, how will you be utilising blockchain when tournaments come out? Will the battles be recorded on the blockchain in some way and will there be a way to meaningfully view the tournament history from the blockchain?
👍  ,
properties (23)
authorcryptoeater
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t231130190z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-05-31 23:11:36
last_update2018-05-31 23:11:36
depth1
children1
last_payout2018-06-07 23:11:36
cashout_time1969-12-31 23:59:59
total_payout_value1.031 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length251
author_reputation101,579,624,078,582
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,670,443
net_rshares279,392,449,725
author_curate_reward""
vote details (2)
@yabapmatt ·
Tournament and battle details will absolutely be recorded on the blockchain! You will be able to view the history in a meaningful way on the Steem Monsters website, but ideally there will be nothing to stop someone else from making their own "tournament viewer" site using the data published on the chain.
👍  
properties (23)
authoryabapmatt
permlinkre-cryptoeater-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t231537260z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 23:15:36
last_update2018-05-31 23:15:36
depth2
children0
last_payout2018-06-07 23:15: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_length305
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,670,824
net_rshares949,835,741
author_curate_reward""
vote details (1)
@crystalhuman ·
$0.39
I can say with 100% certainty, my wife will spend a great deal of time ignoring me now in an effort to play this game as much as she possibly can.

Thanks @yabapmatt :| 

hahaha
👍  
properties (23)
authorcrystalhuman
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t234007334z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-05-31 23:40:12
last_update2018-05-31 23:40:12
depth1
children0
last_payout2018-06-07 23:40:12
cashout_time1969-12-31 23:59:59
total_payout_value0.362 HBD
curator_payout_value0.028 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation37,829,501,059,627
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,673,217
net_rshares105,187,519,127
author_curate_reward""
vote details (1)
@dank700i ·
The game will be amazing
👍  
properties (23)
authordank700i
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t230244890z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 23:02:51
last_update2018-05-31 23:02:51
depth1
children0
last_payout2018-06-07 23:02: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_length24
author_reputation93,822,101,848
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,669,596
net_rshares1,046,226,010
author_curate_reward""
vote details (1)
@diogosantos ·
I´m not an expert on this subject, so I'm afraid I´m not a big help, but I'm definitely an enthusiast that is supporting this game at 100%, and this I know I´m good at!
So, all I have to say is, Thank You, for investing your time on what we love!!

I would love to get a legendary every pack, but it would disrupt the point and mystic behind those type of cards...
properties (22)
authordiogosantos
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t000848640z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 00:08:54
last_update2018-06-01 00:08:54
depth1
children0
last_payout2018-06-08 00:08: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_length364
author_reputation13,386,965,042,574
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,676,005
net_rshares0
@dksart ·
$0.99
Awesome, thanks for the explanation, I guess if someone really wanted to they could create some sort of decentralized steem monster card explorer that shows what users own what cards on the STEEM blockchain...
👍  
properties (23)
authordksart
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t001302919z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 00:12:54
last_update2018-06-01 00:12:54
depth1
children1
last_payout2018-06-08 00:12:54
cashout_time1969-12-31 23:59:59
total_payout_value0.769 HBD
curator_payout_value0.222 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation32,756,390,078,556
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,676,397
net_rshares265,755,980,036
author_curate_reward""
vote details (1)
@yabapmatt ·
Yes - this is exactly the idea!
properties (22)
authoryabapmatt
permlinkre-dksart-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t004025571z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 00:40:24
last_update2018-06-01 00:40:24
depth2
children0
last_payout2018-06-08 00: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_length31
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,678,913
net_rshares0
@dwarrilow2002 ·
Hello @yabapmatt

I know that you people often will spam comment sections pleading for reads and likes etc. I am not doing that. I do want to tell you about www.steemhost.com since you are instrumental in the steem universe. You don't need to do anything ... I just want you to be aware that this service is in development. Steemhost introduces a mechanism which adds advertising to the space. I describe some of the things that go on steemhost on its front page.

Any steemian can see their content on steemhost. For example you can select any user at random wwww.steemhost.com/@ned and see his posts. Since he is not registered on the site, his page is generic. If you contrast it with some of the people who have registered (bear in mind that we only rolled it out a week ago) and are moving cautiously so I have been holding hands all week. Here a couple examples of profiles set up on the site:
[www.steemhost.com/@arcange](www.steemhost.com/@arcange)
[www.steemhost.com/@raha](www.steemhost.com/@raha)

I set up @arcange mainly because people can use my site to search through his posts specifically for possible spammers/scammers. He has not registered yet so is only displaying free advertisements. 

Raha is set up because she had some customizations that she could use on her menu options but also she had some friends that she wanted to promote as contributors on her site. 
Since she is registered on the site, she is able to select advertisements to appear on her pages. These advertisements reward here and her visitors in steem power delegation (triggered after she has earned 1 steem).  

We are working on different options for some of the pages ... for example being to pin content or to schedule pages for future display. Imagine that you create a post today but want it to appear at some later date. While you would receive any curated rewards now, it also opens up the opportunity for additional rewards (in sp delegation) at the future date. One aspect of this is that you could use that page as a manual for some of your endeavors and the relevant pages would be repointed to newer ones  as changes appear on the site.
properties (22)
authordwarrilow2002
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180610t230626915z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt","arcange"],"links":["www.steemhost.com/@arcange","www.steemhost.com/@raha"],"app":"steemit/0.1"}
created2018-06-10 23:06:27
last_update2018-06-10 23:06:27
depth1
children0
last_payout2018-06-17 23:06:27
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_length2,141
author_reputation3,266,337,977,991
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id60,207,972
net_rshares0
@ebargains ·
$0.84
re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t224203207z
You got a 25.00% Upvote and Resteem from @ebargains, as well as upvotes from our curation trail followers!

If you are looking to earn a passive no hassle return on your Steem Power, delegate your SP to @ebargains by clicking on one of the ready to delegate links:
[50SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=50%20SP) | [100SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=100%20SP) | [250SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=250%20SP) | [500SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=500%20SP) | [1000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=1000%20SP) | [5000SP](https://steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=ebargains&vesting_shares=5000%20SP) | [Custom Amount](https://steembottracker.com/delegation.html?delegatee=ebargains)
 
You will earn 90% of the voting service's earnings based on your delegated SP's prorated share of the service's SP pool daily! That is up to 38.5% APR! You can also undelegate at anytime.

We are also a very profitable curation trail leader on https://steemauto.com/. Follow @ebargains today and earn more on curation rewards!
👍  
properties (23)
authorebargains
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t224203207z
categorysteemmonsters
json_metadata{"app":"auto-voter/1.0.0"}
created2018-05-31 22:42:03
last_update2018-05-31 22:42:03
depth1
children0
last_payout2018-06-07 22:42:03
cashout_time1969-12-31 23:59:59
total_payout_value0.840 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,385
author_reputation46,529,372,336,823
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,667,448
net_rshares225,369,792,156
author_curate_reward""
vote details (1)
@eddiespino ·
Very interesting topic, I don't understand all of it because I haven't studied enough, but I think that this is a great breakthrough. Looking forward for the next updates and the tournaments. I hope you get enough free time to finish soon!
properties (22)
authoreddiespino
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t002912156z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 00:29:09
last_update2018-06-01 00:29:09
depth1
children0
last_payout2018-06-08 00:29: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_length239
author_reputation1,306,425,855,301,257
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,677,866
net_rshares0
@filandosmith ·
I really enjoyed reading this post. It didn't felt long at all, and I was excited to read every line.I I am new to steem and I already bought myself a pack of steem monsters. I wish the project a hugh success :) and thank you very much for being so trasparent and informative!
properties (22)
authorfilandosmith
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t002749779z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 00:27:48
last_update2018-06-01 00:27:48
depth1
children0
last_payout2018-06-08 00:27: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_length276
author_reputation46,471,192,463
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,677,765
net_rshares0
@gray00 ·
Killer explanation, and thank you for the transparency. I believe this to be the first game that has a following to utilize steem blockchain in such an innovative way to ledger game records. I'm really excited to see this happen.
properties (22)
authorgray00
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t014540408z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 01:45:39
last_update2018-06-01 01:45:39
depth1
children0
last_payout2018-06-08 01:45: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_length229
author_reputation4,565,928,791,980
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,684,981
net_rshares0
@hansikhouse ·
$0.97
Very cool @yabapmatt, learning about this all now and I'll be sure to pick up some packs. As an avid MTG player, it's incredible to see blockchain tackle the dire problems of authenticity, ownership, and general function of digital TCGs in the modern world.

Also, we'd love to do an article on this for @sndbox / @creativecrypto if you and/or @aggroed are down for some interview questions.
👍  
properties (23)
authorhansikhouse
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t235725277z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt","sndbox","creativecrypto","aggroed"],"app":"steemit/0.1"}
created2018-05-31 23:57:24
last_update2018-05-31 23:57:24
depth1
children2
last_payout2018-06-07 23:57:24
cashout_time1969-12-31 23:59:59
total_payout_value0.952 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length391
author_reputation210,387,426,723,089
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,674,891
net_rshares260,210,051,169
author_curate_reward""
vote details (1)
@yabapmatt ·
$0.92
Thanks! I would definitely be open to doing an interview about it. Let me know!
👍  ,
properties (23)
authoryabapmatt
permlinkre-hansikhouse-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t000034087z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 00:00:33
last_update2018-06-01 00:00:33
depth2
children1
last_payout2018-06-08 00:00:33
cashout_time1969-12-31 23:59:59
total_payout_value0.699 HBD
curator_payout_value0.217 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,675,193
net_rshares245,952,188,730
author_curate_reward""
vote details (2)
@hansikhouse · (edited)
@yabapmatt do you mind throwing us an email at hello@thecreativecrypto.com? We can send you an interview questionnaire =)
properties (22)
authorhansikhouse
permlinkre-yabapmatt-re-hansikhouse-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180605t220457461z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1","users":["yabapmatt"]}
created2018-06-05 22:04:57
last_update2018-06-05 22:05:15
depth3
children0
last_payout2018-06-12 22:04: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_length121
author_reputation210,387,426,723,089
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,436,605
net_rshares0
@hawk28 ·
very good post bro :) i am a student follow me
properties (22)
authorhawk28
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180603t102204250z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-03 10:22:03
last_update2018-06-03 10:22:03
depth1
children0
last_payout2018-06-10 10:22: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_length46
author_reputation802,300,676,387
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,026,680
net_rshares0
@hypnopreneur ·
So awesome Matt, congrats man!!
properties (22)
authorhypnopreneur
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180604t040813068z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-04 04:08:03
last_update2018-06-04 04:08:03
depth1
children0
last_payout2018-06-11 04:08: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_length31
author_reputation4,087,128,719,410
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,143,855
net_rshares0
@inertia ·
$1.22
If I buy a monster pack, is the transaction id used as a component in the random distribution of the pack I receive?
👍  , ,
properties (23)
authorinertia
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t225923211z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 22:59:24
last_update2018-05-31 22:59:24
depth1
children8
last_payout2018-06-07 22:59:24
cashout_time1969-12-31 23:59:59
total_payout_value1.182 HBD
curator_payout_value0.037 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation346,568,901,399,561
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,669,226
net_rshares326,623,195,639
author_curate_reward""
vote details (3)
@yabapmatt ·
This is an awesome question! This is something I have thought about and would REALLY like to do, but I'm not sure how to implement it in a way that provides an even distribution. What I need is a way to take the transaction ID and generate N integers from it between 0 and X such that each integer has a roughly equal probability of being generated.

If you (or anyone else reading this) are able to provide that algorithm I will definitely get it implemented right away!
properties (22)
authoryabapmatt
permlinkre-inertia-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t230553460z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 23:05:54
last_update2018-05-31 23:05:54
depth2
children7
last_payout2018-06-07 23:05: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_length471
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,669,901
net_rshares0
@biophil ·
How are trxids generated? I feel like I should know this already, and I'm almost embarrassed to ask. 

Anyway, care must be taken to ensure that good cards can't be mined. If you use blockchain data to seed your RNG, you probably still need to add randomness on your end before generating cards.

Love the project, by the way! My starter pack contained no legendaries, so no worries there. ;)
👎  
properties (23)
authorbiophil
permlinkre-yabapmatt-re-inertia-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180604t001755945z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-04 00:18:00
last_update2018-06-04 00:18:00
depth3
children0
last_payout2018-06-11 00:18:00
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_length392
author_reputation45,223,914,794,461
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,121,940
net_rshares0
author_curate_reward""
vote details (1)
@inertia ·
It would probably be less important if there is a set number of monsters like it is at the moment.  But if you ever go in the direction of procedurally generated monsters, I would find it very compelling if the procedure was posted publically and the generation routine was cryptographically verifiable from the data in the blockchain.
👍  
properties (23)
authorinertia
permlinkre-yabapmatt-re-inertia-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t231709945z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 23:17:09
last_update2018-05-31 23:17:09
depth3
children1
last_payout2018-06-07 23:17: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_length335
author_reputation346,568,901,399,561
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,670,975
net_rshares1,018,561,272
author_curate_reward""
vote details (1)
@rantar ·
$0.99
You could use the transaction ID as the seed to your random number generator of choice and then generate those N numbers from that generator in a consistent fashion (like the first N calls to the random number generator).
👍  ,
properties (23)
authorrantar
permlinkre-yabapmatt-re-inertia-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t231524614z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 23:15:24
last_update2018-05-31 23:15:24
depth3
children3
last_payout2018-06-07 23:15:24
cashout_time1969-12-31 23:59:59
total_payout_value0.893 HBD
curator_payout_value0.100 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length221
author_reputation5,404,054,664,190
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,670,810
net_rshares266,755,451,698
author_curate_reward""
vote details (2)
@invadercivicziur · (edited)
This is such a inavative project I'm glad to be apart of it, also If I had a card idea what would it take to add it to the game?
properties (22)
authorinvadercivicziur
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t061313014z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 06:13:21
last_update2018-06-01 06:19:27
depth1
children0
last_payout2018-06-08 06:13: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_length128
author_reputation16,985,816,379
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,710,274
net_rshares0
@ironshield ·
>While this might seem like a bad thing, it’s actually a very good thing, but I’m not going to get into that right now since it is far outside the scope of this post. You’ll just have to trust me!

No game would be fair if the mechanics were completely transparent!  Dungeon master has a screen for a reason.

![](https://cdn.steemitimages.com/DQmQBM1GSYGC8pGbioyJZTArwm1pr9vyff6ywbeTd1ZmQSF/image.png)
*Can't do this on the blockchain.*

@ironshield
properties (22)
authorironshield
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180618t140539562z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["ironshield"],"image":["https://cdn.steemitimages.com/DQmQBM1GSYGC8pGbioyJZTArwm1pr9vyff6ywbeTd1ZmQSF/image.png"],"app":"steemit/0.1"}
created2018-06-18 14:05:42
last_update2018-06-18 14:05:42
depth1
children0
last_payout2018-06-25 14:05:42
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_reputation648,787,896,432,262
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,229,906
net_rshares0
@ismailrafael ·
#Steemmonsters it will be mostly played by the steemian all over the world.
I recommend
need to be explained again in post steemmonsters detail about this play.
Thanks to @yabapmatt
Nice to meet you
properties (22)
authorismailrafael
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t222455643z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"community":"busy","app":"busy/2.4.0"}
created2018-05-31 22:24:57
last_update2018-05-31 22:24:57
depth1
children0
last_payout2018-06-07 22:24: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_length198
author_reputation1,020,185,103,026
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,665,559
net_rshares0
@isnochys ·
Central Point here is your db. If that goes offline, there is no way to restore anything, is there?
So, it does not really happen on the blockchain, as it is not verifyable?
properties (22)
authorisnochys
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180604t165139915z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-04 16:51:42
last_update2018-06-04 16:51:42
depth1
children0
last_payout2018-06-11 16:51:42
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_length173
author_reputation47,808,087,300,108
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,233,888
net_rshares0
@jcobs ·
Everyone is getting pretty excited about it and building their collections. You don't want to miss out on this, trust me.
properties (22)
authorjcobs
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t223351808z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 22:33:54
last_update2018-05-31 22:33:54
depth1
children0
last_payout2018-06-07 22:33: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_length121
author_reputation1,140,919,157,274
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,666,573
net_rshares0
@jeezzle ·
I think you guys should buy the rights to use this platform....

 elementsthegame.com

 As far as I know the developer has abandoned that game and while there are still some players I believe it can easily be altered. 

Just a thought because elements was my favorite card game for probably about 2 years.

 I'm glad you guys are thinking about the implementation of the gaming platform itself because I think that will be the most difficult part to get right.
properties (22)
authorjeezzle
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t225021302z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 22:50:21
last_update2018-05-31 22:50:21
depth1
children0
last_payout2018-06-07 22:50: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_length460
author_reputation112,383,324,292,540
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,668,359
net_rshares0
@jeffandhisguitar ·
Hey matt, congrats on everything you do!! Freekn awesome job buddy!
I used to love Top Trumps when I was younger but these card games spin me out.. lol

I am just wondering about the Steembot tracker website.
for months now it doesn't load for me and says website not found :(

Is there an alternate route I can go to view the bots?
Cheers,
Jeff.

![steembot.JPG](https://cdn.steemitimages.com/DQmdMFSn1JiTLkWt9Ukkgk3mL211FYddietEoQn7hFaCujY/steembot.JPG)
properties (22)
authorjeffandhisguitar
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180607t053115990z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"image":["https://cdn.steemitimages.com/DQmdMFSn1JiTLkWt9Ukkgk3mL211FYddietEoQn7hFaCujY/steembot.JPG"],"app":"steemit/0.1"}
created2018-06-07 05:31:27
last_update2018-06-07 05:31:27
depth1
children0
last_payout2018-06-14 05:31:27
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_length455
author_reputation54,218,915,617,587
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id59,638,672
net_rshares0
@kryptokessler ·
Thank you.
properties (22)
authorkryptokessler
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180620t184429854z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-20 18:44:30
last_update2018-06-20 18:44:30
depth1
children0
last_payout2018-06-27 18:44: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_length10
author_reputation288,808,896,051
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id61,532,086
net_rshares0
@littymumma ·
I am looking forward to this sir @yabapmatt.

Just a question :- Will the tournament be recorded in steem blockchain or there will be some other mechanism ??

Thank you.
properties (22)
authorlittymumma
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180605t121902410z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-06-05 12:19:15
last_update2018-06-05 12:19:15
depth1
children0
last_payout2018-06-12 12:19: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_length169
author_reputation9,100,456,404,740
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,364,176
net_rshares0
@marpaung ·
sir how to steemd the witness, let me know sir @yabapmatt.
properties (22)
authormarpaung
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t223714261z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-05-31 22:37:21
last_update2018-05-31 22:37:21
depth1
children0
last_payout2018-06-07 22:37: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_length58
author_reputation55,454,682,516
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,666,964
net_rshares0
@michaelcabiles ·
$0.03
Man, I just bought my monsters lately before reading this. Well, It's getting me feel excited about the battle. So, I can't wait but, of course, to WAIT for that BATTLE! :D
👍  
properties (23)
authormichaelcabiles
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t060152549z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 06:01:54
last_update2018-06-01 06:01:54
depth1
children0
last_payout2018-06-08 06:01:54
cashout_time1969-12-31 23:59:59
total_payout_value0.027 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation35,842,046,470,950
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,709,229
net_rshares7,968,487,450
author_curate_reward""
vote details (1)
@mona123 ·
Anyway, care must be taken to ensure that good cards can't be mined. If you use blockchain data to seed your RNG, you probably still need to add randomness on your end before generating cards. I'm almost embarrassed to ask so no worries there
properties (22)
authormona123
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180614t181700362z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"community":"busy","app":"busy/2.4.0"}
created2018-06-14 18:17:00
last_update2018-06-14 18:17:00
depth1
children0
last_payout2018-06-21 18:17:00
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_length242
author_reputation9,292,487,049
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id60,756,118
net_rshares0
@mountrock ·
Cool. I bought the pack :) Can't wait.... haha
properties (22)
authormountrock
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t142646102z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"community":"busy","app":"busy/2.4.0"}
created2018-06-01 14:27:00
last_update2018-06-01 14:27:00
depth1
children0
last_payout2018-06-08 14:27:00
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_length46
author_reputation10,118,100,819,203
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,765,609
net_rshares0
@muftii ·
good manners sir  @yabapmatt  ..., his explanation is very aspirative, accommodative and implementative sir.i have resteem your post sir @yabapmatt . thanks you
properties (22)
authormuftii
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t222026802z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-05-31 22:20:39
last_update2018-05-31 22:20:39
depth1
children0
last_payout2018-06-07 22:20: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_length160
author_reputation717,337,925,898
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,665,230
net_rshares0
@mysearchisover ·
$0.21
Are you a genius or can a lot of coders do this type of coding? I've kind of been hearing that you are a genius. 
So you can run SMT like apps on other website and still use the Steem Blockchain to record transactions?
Do we really need SMT's? 
I thought it was cool how https://steemhunt.com/ integrates some Steem functions into their website.
👍  ,
properties (23)
authormysearchisover
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t024216201z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"links":["https://steemhunt.com/"],"app":"steemit/0.1"}
created2018-06-01 02:42:18
last_update2018-06-01 02:42:18
depth1
children2
last_payout2018-06-08 02:42:18
cashout_time1969-12-31 23:59:59
total_payout_value0.200 HBD
curator_payout_value0.009 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length345
author_reputation106,037,311,868,398
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,690,405
net_rshares56,826,147,297
author_curate_reward""
vote details (2)
@yabapmatt ·
Lol I am certainly not a genius. This stuff is rather simple from a development perspective. The developers who work on the core Steem blockchain are the real geniuses here and I don't think they get the recognition they deserve. SMTs will be very different than what we are doing with Steem Monsters and will allow a lot more than just recording things on the blockchain. <br/><div class="pull-right"><sub><a href="https://steemit.com/utopian-io/@roxane/fast-reply-v0-1-never-miss-to-answer-a-comment-again-and-do-it-faster-than-ever">Sent with Fast-Reply</a></sub></div>
properties (22)
authoryabapmatt
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t024216201z-1527856882108
categorysteemmonsters
json_metadata{"app":"fast-reply","version":0.2}
created2018-06-01 12:41:51
last_update2018-06-01 12:41:51
depth2
children1
last_payout2018-06-08 12:41: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_length572
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,752,195
net_rshares0
@mysearchisover ·
$0.21
Just real innovative? From what I have been hearing and have seen it seems like you're our best developer. 
So you couldn't have programmed the Steem blockchain by yourself? lol 
Were Dan and Ned our main developers?
👍  ,
properties (23)
authormysearchisover
permlinkre-yabapmatt-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-1527856882108-20180601t125526778z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 12:55:27
last_update2018-06-01 12:55:27
depth3
children0
last_payout2018-06-08 12:55:27
cashout_time1969-12-31 23:59:59
total_payout_value0.205 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length216
author_reputation106,037,311,868,398
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,753,821
net_rshares57,069,773,015
author_curate_reward""
vote details (2)
@negativer ·
$1.02
I love that you spent the time to explain all the details here, particularly about ownership of digital assets. For a lot of people, something like this is the first time they've purchased an asset using steem/sbd (their steemit earnings, and evidence of their effort on steemit!) and to feel safe in doing that is important. 

Nice work so far, lots of folks I know are looking forward to seeing how this progresses!
👍  ,
properties (23)
authornegativer
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t224732537z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 22:47:33
last_update2018-05-31 22:47:33
depth1
children0
last_payout2018-06-07 22:47:33
cashout_time1969-12-31 23:59:59
total_payout_value1.004 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length417
author_reputation15,437,925,547,686
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,668,071
net_rshares272,213,167,712
author_curate_reward""
vote details (2)
@nicolerose ·
Hello yabapmatt. Please fix it.
steembrain bottracker is not working. Shows Loading... but is not working. And steembottracker is not working. You’re doing a great job Thank for your time.
👍  
properties (23)
authornicolerose
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180602t063137269z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-02 06:31:30
last_update2018-06-02 06:31:30
depth1
children0
last_payout2018-06-09 06:31: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_length188
author_reputation-1,134,626,754,724
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,867,204
net_rshares386,874,314
author_curate_reward""
vote details (1)
@offgridlife ·
You guys are brilliant. Bought my Starter pack and 1st 6 Booster packs already. Going to take it slow and only buy 1 Booster pack a day ... if I can.

![AF3A0C2F-F8E6-4D11-B282-5B6CFD4E8788.jpeg](https://cdn.steemitimages.com/DQmUpuqwTbFJxuhLUaDmbVsRT52thGT66hzGygwezAcRd6k/AF3A0C2F-F8E6-4D11-B282-5B6CFD4E8788.jpeg)
properties (22)
authoroffgridlife
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180602t133823457z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"image":["https://cdn.steemitimages.com/DQmUpuqwTbFJxuhLUaDmbVsRT52thGT66hzGygwezAcRd6k/AF3A0C2F-F8E6-4D11-B282-5B6CFD4E8788.jpeg"],"app":"steemit/0.1"}
created2018-06-02 13:38:24
last_update2018-06-02 13:38:24
depth1
children0
last_payout2018-06-09 13:38: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_length316
author_reputation392,937,772,975,035
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,908,328
net_rshares0
@omitaylor ·
$0.80
This is amazing! I was posting about the possibilities of smts tokenizing the cards on an open market in the discord suggestions. Okay so can I ask you something? Can the NFT still be tokenized and traded on an open market schema as well? 

I love to learn how things work behind the scenes. I submitted a map to the cartography contest and started a 3d model of it because it's a 3d map. Lots came to mind about the possability of an actual game using google api or even an app like pokemon go. Or even a short 3d movie. This has opened my mind about possibilities of using the blockchain in a different way. Could this be used to do all kind of collectible markets on the block-chain? Now I'm thinking about business documents and things like that. 

Anyhow, thanks. This is enlightening. I would be interested in you going into this further.
👍  
properties (23)
authoromitaylor
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180603t043146372z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-03 04:31:54
last_update2018-06-03 04:31:54
depth1
children2
last_payout2018-06-10 04:31:54
cashout_time1969-12-31 23:59:59
total_payout_value0.598 HBD
curator_payout_value0.199 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length844
author_reputation3,986,872,420,584
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,997,975
net_rshares217,154,952,959
author_curate_reward""
vote details (1)
@yabapmatt ·
@omitaylor I'm not sure I understand your first question - an NFT is a token, so it doesn't really make sense to Tokenize it. For your second question - yes any type of collectibles could use the same method we are using to interface with the Steem blockchain. Many projects like this are already being run on Ethereum already which allows true decentralization on the blockchain for NFTs.<br/><div class="pull-right"><sub><a href="https://steemit.com/utopian-io/@roxane/fast-reply-v0-1-never-miss-to-answer-a-comment-again-and-do-it-faster-than-ever">Sent with Fast-Reply</a></sub></div>
properties (22)
authoryabapmatt
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180603t043146372z-1528133063215
categorysteemmonsters
json_metadata{"app":"fast-reply","version":0.2}
created2018-06-04 17:24:24
last_update2018-06-04 17:24:24
depth2
children1
last_payout2018-06-11 17:24: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_length588
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,238,255
net_rshares0
@omitaylor ·
What I'm seeing is this is <em>sort of</em> like an ERC721, but not really? — because it's not actually a sub-chain of its own? 

Okay, let me rewind a bit. What is what we are buying? It's not a license to the art, but that is not the case. Are we paying for a serial number in a centralized database that represents each card? (There's nothing wrong with that, just asking.) And those serial numbers are backed by the Steem that was used to pay for it — but are not actually generated by the blockchain?

Transactions/exchanges are essentially like blog posts to the block-chain but without any post data, and with commenting off, voting off, rewards off, etc. — is that accurate? They're just posts with the custom metadata and custom json?

I don't know a lot about programming (only game stuff) and especially not on Steem, but I'm learning. 

> spite77 transfer 3.419 SBD to steemmonsters P-8I1RTJ3VTC

> 	{"account":"spite77","purchase":"P-8I1RTJ3VTC","trx_id":"579fbea032040f2a15d4abbe420721adebb548de","packs":[["B-37WPD9GFPS",[[16,"C-OZG900D6YO"],[39,"C-ON37CZHGCG"],[15,"C-UYE9KP3O28"],[1,"C-L72KRWIK80"],[45,"C-W60QFVB6C0"]]],["B-RARCJYQSR4",[[15,"C-TBS9EAHL9S"],[4,"C-MMH0C2AKWG"],[13,"C-CU0RUV3M5S"],[2,"C-1UNLM1YF6O"],[6,"C-6ALGIUYC8W"]]],["B-IFTU7U0LWG",[[45,"C-R6UJKPBU1C"],[1,"C-HT1EXCDS1S"],[36,"C-22J6OKF640"],[49,"C-ZG8Y0KUIS0"],[23,"C-4QER24JS34"]]]]}

So trx_id is the transaction hash?

And packs is like, pack id: B-37WPD9GFPS which contains the 16,C-OZG900D6YO etc etc..

What is the number before the card serial number? Is that the number his cards of that kind his are being updated to? Or is that the actual card type that C-OZG900D6YO is part of?

<hr>

What I mean't by tokenize is this:

Let's say I make an SMT called MonsterLedger

And then I generate 4 more SMT's—
Common 5000 coins only
Rare 1000 coins only
Epic 500 coins only
Legendary 100 coins only

Generate 6600 NFTs with your method, each with unique serial number in a centralized DB

Now with the <em>new</em> protocol hypothesis in mind (ie. Good Person Token)

Would I be able to associate each post on MonsterLedger with an actual coin representing 1 share of a supply of NFT's, defined by serial number?

Ha-ha... sorry not really an advanced programmer so just asking.

Wondering if hypothetically possible to back a non-fungible token by a set of fungible  tokens that are backed by single fungible token.
properties (22)
authoromitaylor
permlinkre-yabapmatt-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-1528133063215-20180605t171033525z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-05 17:10:36
last_update2018-06-05 17:10:36
depth3
children0
last_payout2018-06-12 17:10: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_length2,407
author_reputation3,986,872,420,584
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,402,614
net_rshares0
@phillips93 ·
What would happen if I bought a monster package as the transaction would be?
properties (22)
authorphillips93
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t132651368z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 13:27:24
last_update2018-06-01 13:27:24
depth1
children0
last_payout2018-06-08 13:27: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_length76
author_reputation190,210,226,774
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,757,814
net_rshares0
@postpromoter ·
re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t010207399z
You got a 22.00% upvote from @postpromoter courtesy of @postpromoter!

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-steem-blockchain-integration-20180601t010207399z
categorysteemmonsters
json_metadata{"app":"postpromoter/2.0.0"}
created2018-06-01 01:02:09
last_update2018-06-01 01:02:09
depth1
children0
last_payout2018-06-08 01:02: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_length396
author_reputation12,722,616,650,811
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,680,939
net_rshares0
@prameshtyagi ·
@yabapmatt, I am curious to know how this would help increase the value of steem token itself? May be I am missing on something ?
👎  
properties (23)
authorprameshtyagi
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180603t131250958z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-06-03 13:12:51
last_update2018-06-03 13:12:51
depth1
children1
last_payout2018-06-10 13:12: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_length129
author_reputation133,698,299,152,872
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,043,158
net_rshares-2,040,250,404
author_curate_reward""
vote details (1)
@yabapmatt ·
@prameshtyagi If this brings more people into the Steem ecosystem and creates another use case for the STEEM token then it will help increase the value.<br/><div class="pull-right"><sub><a href="https://steemit.com/utopian-io/@roxane/fast-reply-v0-1-never-miss-to-answer-a-comment-again-and-do-it-faster-than-ever">Sent with Fast-Reply</a></sub></div>
properties (22)
authoryabapmatt
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180603t131250958z-1528133109869
categorysteemmonsters
json_metadata{"app":"fast-reply","version":0.2}
created2018-06-04 17:25:24
last_update2018-06-04 17:25:24
depth2
children0
last_payout2018-06-11 17:25: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_length351
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,238,406
net_rshares0
@psos ·
In my opinion this game will be the reference for future ways on STEEM. Congratulations!
👍  
properties (23)
authorpsos
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t222032892z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 22:20:36
last_update2018-05-31 22:20:36
depth1
children0
last_payout2018-06-07 22:20: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_length88
author_reputation39,092,181,285,787
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,665,220
net_rshares949,835,741
author_curate_reward""
vote details (1)
@rach · (edited)
$0.78
Hi @yabapmatt.  Congratulations, it is a wonderful work! But, the following part was not clear to me:

>It’s important to also note that publishing Custom JSON operations to the blockchain from your own account in order to “authorize” actions will require you to log in to the Steem Monsters website using your private posting key.


This means that I really do not own the cards as such, but I need your authorization to be able to exchange them with other users. In the end, is the information decentralized in the steem blockchain but the property remains centralized?

Can I transfer ownership of my cards to someone else from my account?

I'm just curious about it.

Regards...
👍  
properties (23)
authorrach
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180604t052000933z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1","users":["yabapmatt"]}
created2018-06-04 05:20:00
last_update2018-06-04 05:26:57
depth1
children2
last_payout2018-06-11 05:20:00
cashout_time1969-12-31 23:59:59
total_payout_value0.591 HBD
curator_payout_value0.194 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length682
author_reputation2,957,717,028,845
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,150,727
net_rshares217,154,952,959
author_curate_reward""
vote details (1)
@yabapmatt ·
@rach I mentioned in the post that it's not possible to build a fully-decentralized solution on the Steem blockchain like you can on Ethereum or some others. So it is still centralized, however everything that happens is published and verifiable on the blockchain. To transfer ownership of cards you do publish that transaction from your own account, but for now you need to do that through the steemmonsters.com website in order for the change to be reflected on the site. Hope that makes sense!<br/><div class="pull-right"><sub><a href="https://steemit.com/utopian-io/@roxane/fast-reply-v0-1-never-miss-to-answer-a-comment-again-and-do-it-faster-than-ever">Sent with Fast-Reply</a></sub></div>
👍  
properties (23)
authoryabapmatt
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180604t052000933z-1528133410811
categorysteemmonsters
json_metadata{"app":"fast-reply","version":0.2}
created2018-06-04 17:30:24
last_update2018-06-04 17:30:24
depth2
children1
last_payout2018-06-11 17:30: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_length695
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,239,087
net_rshares292,003,415
author_curate_reward""
vote details (1)
@rach ·
Thak you for your reply @yabapmatt. 
For now I will do more research on your project which I really love. I want to try to make some applications for steemmonsters and I was interested in understanding the dynamics of the exchange of cards between users, to see if it was possible to use the scrow in these cases. But this is going to take a lot of time because our programming skills are quite limited. 
By the way, for your information, luckily I own steemmonster.net.
properties (22)
authorrach
permlinkre-yabapmatt-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-1528133410811-20180605t050532890z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-06-05 05:05:33
last_update2018-06-05 05:05:33
depth3
children0
last_payout2018-06-12 05:05: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_length470
author_reputation2,957,717,028,845
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,317,259
net_rshares0
@resteem.bot ·
@yabapmatt

Can you please check your bot? Something is wrong today, we lost a lot of money.

Transfer 15.000 STEEM to postpromoter
https://steemit.com/win/@resteem.bot/win-with-resteem-bot-04-06-2018
(5.64 SBD, 0.25 STEEM, 2.65 SP)

Transfer 16.456 STEEM to postpromoter
https://steemit.com/win/@resteem.bot/win-with-resteem-bot-05-06-2018
(6.26 SBD, 0.27 STEEM, 2.94 SP)

And in this payout are a lot upvotes from other user.
Can you please check all your upvotes from you to us?
We can not lose money from our community.

Thank you.

@resteem.bot
👍  
properties (23)
authorresteem.bot
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180606t205622028z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt","resteem.bot"],"links":["https://steemit.com/win/@resteem.bot/win-with-resteem-bot-04-06-2018","https://steemit.com/win/@resteem.bot/win-with-resteem-bot-05-06-2018"],"app":"steemit/0.1"}
created2018-06-06 20:56:27
last_update2018-06-06 20:56:27
depth1
children4
last_payout2018-06-13 20:56:27
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_length549
author_reputation33,530,472,041,781
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,586,530
net_rshares4,771,497,689
author_curate_reward""
vote details (1)
@resteem.bot ·
@yabapmatt

This are ca. -50%, even with the upvotes from the other users.

@resteem.bot
👍  
properties (23)
authorresteem.bot
permlinkre-resteembot-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180606t212830627z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt","resteem.bot"],"app":"steemit/0.1"}
created2018-06-06 21:28:36
last_update2018-06-06 21:28:36
depth2
children1
last_payout2018-06-13 21:28: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_length88
author_reputation33,530,472,041,781
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,590,125
net_rshares4,771,519,234
author_curate_reward""
vote details (1)
@resteem.bot · (edited)
@yabapmatt

I don't know your system, but I think this vote was in this round:
3 hours ago	Transfer 100.000 SBD to postpromoter	https://steemit.com/steemmonsters/@steemmonsters/welcome-clove71-to-the-team

And with the new 50 SBD/STEEM limit it must be made manual?

Is this the error?

@resteem.bot
properties (22)
authorresteem.bot
permlinkre-resteembot-re-resteembot-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180606t221824731z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt","resteem.bot"],"links":["https://steemit.com/steemmonsters/@steemmonsters/welcome-clove71-to-the-team"],"app":"steemit/0.1"}
created2018-06-06 22:18:33
last_update2018-06-06 22:19:03
depth3
children0
last_payout2018-06-13 22:18: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_length299
author_reputation33,530,472,041,781
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,595,650
net_rshares0
@yabapmatt ·
This was due to SBD prices being messed up on coinmarketcap. The issue is fixed and you have been sent a refund. Please accept my sincere apologies for the issue!
properties (22)
authoryabapmatt
permlinkre-resteembot-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180606t221519967z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-06 22:15:18
last_update2018-06-06 22:15:18
depth2
children1
last_payout2018-06-13 22:15: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_length162
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,595,321
net_rshares0
@resteem.bot ·
@yabapmatt

Yes I have seen this.

$7,34 USD (319,37%) 
0,00095765 BTC (316,98%)

I is because you can not deposit SBD on HitBTC, it is a phantasie price.
2	HitBTCHitBTC	SBD/BTC	$179.576	$25,05	23,99%	Recently

Thank you.

@resteem.bot
properties (22)
authorresteem.bot
permlinkre-yabapmatt-re-resteembot-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180606t223522950z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt","resteem.bot"],"app":"steemit/0.1"}
created2018-06-06 22:35:27
last_update2018-06-06 22:35:27
depth3
children0
last_payout2018-06-13 22:35:27
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_length235
author_reputation33,530,472,041,781
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,597,464
net_rshares0
@sevinwilson ·
$0.83
Well said @yabapmatt!! I was curious how this was going to be set up! It is pretty damn genius I must say! It makes sense with the private posting keys being able to sign the messages even though the steem monsters database is separate!

I am looking forward to following this project even though I missed the whole trading card and gaming as a kid!! 

I may need to get someone to show me the ropes or play on my behalf! :D
👍  
properties (23)
authorsevinwilson
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t222245554z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-05-31 22:22:45
last_update2018-05-31 22:22:45
depth1
children4
last_payout2018-06-07 22:22:45
cashout_time1969-12-31 23:59:59
total_payout_value0.786 HBD
curator_payout_value0.039 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length424
author_reputation30,294,228,295,664
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,665,440
net_rshares221,431,500,642
author_curate_reward""
vote details (1)
@yabapmatt ·
$0.03
I'm sure there will be plenty of people making videos, guides, etc to show you the ropes once the tournaments start! You should definitely play yourself and not have someone play for you - otherwise what's the fun?

P.S. I am so looking forward to getting the Steem silver rounds!
👍  
properties (23)
authoryabapmatt
permlinkre-sevinwilson-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t223059878z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 22:31:00
last_update2018-05-31 22:31:00
depth2
children3
last_payout2018-06-07 22:31:00
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length280
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,666,255
net_rshares7,110,441,379
author_curate_reward""
vote details (1)
@sevinwilson ·
That is true! My little brother loves gaming and it might be a good way to get him onto Steemit!!

Did you see the latest update?? It’s [here](https://steemit.com/steemsilvergold/@sevinwilson/steem-silver-round-update-shipping-dates-becoming-more-concrete) in case you missed it!
properties (22)
authorsevinwilson
permlinkre-yabapmatt-re-sevinwilson-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t223624495z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"links":["https://steemit.com/steemsilvergold/@sevinwilson/steem-silver-round-update-shipping-dates-becoming-more-concrete"],"app":"steemit/0.1"}
created2018-05-31 22:36:24
last_update2018-05-31 22:36:24
depth3
children2
last_payout2018-06-07 22:36: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_length279
author_reputation30,294,228,295,664
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,666,864
net_rshares0
@sirpee ·
Great work @yabapmatt

This game will be one of its kind. Please, I have a question.

Will it be possible to watch the tournament as it is going on? Or, am I expected to buy the card and expect a positive outcome?
properties (22)
authorsirpee
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t102935513z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-06-01 10:30:03
last_update2018-06-01 10:30:03
depth1
children0
last_payout2018-06-08 10:30: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_length213
author_reputation187,765,983,536
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,737,330
net_rshares0
@skycornish ·
$0.22
Looks really really cool, but I'm very hesitant to enter my private key on any website..  is it safe??
👍  
properties (23)
authorskycornish
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t035307019z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 03:53:06
last_update2018-06-01 03:53:06
depth1
children1
last_payout2018-06-08 03:53:06
cashout_time1969-12-31 23:59:59
total_payout_value0.163 HBD
curator_payout_value0.053 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation2,169,519,497,809
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,697,013
net_rshares58,162,008,245
author_curate_reward""
vote details (1)
@yabapmatt ·
@skycornish it's good that you are being careful about how you use your private key. It's important to consider who has built and is running a site to decide if they are trustworthy. I hope that by this point I have built up enough trust in the community so you can be comfortable using your private key with sites and services I have built, but in addition to myself this is also run by @aggroed who should certainly have that level of trust. Please feel free to reach out to me directly if you have any questions or concerns or want to discuss it further.<br/><div class="pull-right"><sub><a href="https://steemit.com/utopian-io/@roxane/fast-reply-v0-1-never-miss-to-answer-a-comment-again-and-do-it-faster-than-ever">Sent with Fast-Reply</a></sub></div>
properties (22)
authoryabapmatt
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t035307019z-1527857175313
categorysteemmonsters
json_metadata{"app":"fast-reply","version":0.2}
created2018-06-01 12:46:18
last_update2018-06-01 12:46:18
depth2
children0
last_payout2018-06-08 12:46: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_length756
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,752,757
net_rshares0
@sorin.cristescu ·
I have to agree with @mysearchisover, you are a genius @yabapmatt
I was wondering, what happens if my keys get compromised and I need to change my keys - how do you deal with that ? On Bitcoin and ethereum, if one loses the private key the ownership if whatever that key was associated with is lost, but steem has worked hard to prevent that hard link.
👍  
properties (23)
authorsorin.cristescu
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t195126007z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["mysearchisover","yabapmatt"],"app":"steemit/0.1"}
created2018-06-01 19:51:27
last_update2018-06-01 19:51:27
depth1
children4
last_payout2018-06-08 19:51:27
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_length352
author_reputation256,499,027,348,823
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,807,601
net_rshares0
author_curate_reward""
vote details (1)
@yabapmatt ·
$0.04
@sorin.cristescu If you lose your master password for your Steem account that can never be recovered. If you lose your private keys those can be generated from your master password. If your keys get stolen you can change them using your master password. If your master pass or owner key gets stolen you can recover your account using Steem's built-in account recovery mechanism.<br/><div class="pull-right"><sub><a href="https://steemit.com/utopian-io/@roxane/fast-reply-v0-1-never-miss-to-answer-a-comment-again-and-do-it-faster-than-ever">Sent with Fast-Reply</a></sub></div>
👍  
properties (23)
authoryabapmatt
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t195126007z-1528132879843
categorysteemmonsters
json_metadata{"app":"fast-reply","version":0.2}
created2018-06-04 17:21:24
last_update2018-06-04 17:21:24
depth2
children3
last_payout2018-06-11 17:21:24
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length577
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,237,836
net_rshares10,954,084,500
author_curate_reward""
vote details (1)
@sorin.cristescu ·
Thanks @yabapmatt - my question was related to the steemmonsters: if I change my posting key, what happens to my steem monsters? I understood that the association is between a card and my posting key, is that correct ? So if I change my posting key, does the game (your database) know to change the association from my old posting key to my new posting key ?

Also, unrelated, is there a post where the principles of the "built-in account recovery mechanism" are explained ? I would like to understand how it works.

TIA
properties (22)
authorsorin.cristescu
permlinkre-yabapmatt-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-1528132879843-20180604t203835790z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-06-04 20:38:36
last_update2018-06-04 20:38:36
depth3
children2
last_payout2018-06-11 20:38: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_length520
author_reputation256,499,027,348,823
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id59,263,298
net_rshares0
@stabilowl ·
Thank you for the technical details!  It would be a great reference for those of us who are working on future steem blockchain projects!
properties (22)
authorstabilowl
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t002053913z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 00:20:57
last_update2018-06-01 00:20:57
depth1
children0
last_payout2018-06-08 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_length136
author_reputation17,959,675,189,416
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,677,144
net_rshares0
@steemitbounties ·
Peeps, make sure to drop in the unofficial discord called [Team Steem Monsters](https://discord.gg/KGUTpD2) - we are building out  the Team Guilds.
👍  
properties (23)
authorsteemitbounties
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t222227469z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"links":["https://discord.gg/KGUTpD2"],"app":"steemit/0.1"}
created2018-06-01 22:22:27
last_update2018-06-01 22:22:27
depth1
children0
last_payout2018-06-08 22:22:27
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_length147
author_reputation10,067,747,759
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,823,793
net_rshares240,664,709
author_curate_reward""
vote details (1)
@tattoodjay ·
I just heard of this today what a cool idea and I bought a few packs ;) 

tip!
properties (22)
authortattoodjay
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t134138896z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 13:41:39
last_update2018-06-01 13:41:39
depth1
children0
last_payout2018-06-08 13:41: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_length78
author_reputation2,646,893,289,310,336
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,759,578
net_rshares0
@theaustrianguy ·
I would be totally lying if I said that I truly and deeply understand most of that technical stuff. But I can honestly say that I am totally in love with the project already and that I fully trust you guys to make something great out of it - especially now that you have seen how desperately the community wants you to do that with Steem Monsters! Good luck guys! :)
properties (22)
authortheaustrianguy
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180531t223448860z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-05-31 22:34:48
last_update2018-05-31 22:34:48
depth1
children0
last_payout2018-06-07 22:34: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_length366
author_reputation199,452,111,799,428
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,666,686
net_rshares0
@timcliff ·
Is there any randomness built into the game? If so, how is that done?
👍  
properties (23)
authortimcliff
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t004703160z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 00:47:03
last_update2018-06-01 00:47:03
depth1
children1
last_payout2018-06-08 00:47: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_length69
author_reputation272,954,445,077,789
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,679,535
net_rshares688,902,090
author_curate_reward""
vote details (1)
@yabapmatt ·
$0.03
Currently, yes, for determining what cards will be in each pack. Just using the basic JS Math.random(). But based on the comment thread started by @inertia on this post I am going to change that to be seeded based on the transaction ID so it will be verifiable going forward.
👍  
properties (23)
authoryabapmatt
permlinkre-timcliff-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t020138012z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["inertia"],"app":"steemit/0.1"}
created2018-06-01 02:01:36
last_update2018-06-01 02:01:36
depth2
children0
last_payout2018-06-08 02:01:36
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length275
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,686,454
net_rshares9,115,172,146
author_curate_reward""
vote details (1)
@tipopipa ·
great info @yabapmatt...thank you for your great explanation......go steemmonster...
properties (22)
authortipopipa
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t041533683z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 04:15:36
last_update2018-06-01 04:15:36
depth1
children0
last_payout2018-06-08 04:15: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_length84
author_reputation12,670,139,434,497
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,699,177
net_rshares0
@tipu ·
Hi @yabapmatt! You have received 0.1 SBD tip from @tattoodjay!<br><p><strong>@tattoodjay wrote lately about: <a href=https://www.steemit.com/@tattoodjay/market-friday-downtown-milford-shops rel="noopener"> Market Friday - Downtown Milford Shops</a></strong> Feel free to follow @tattoodjay if you like it :)</p><p>Earn daily income on steem: <a href="https://steemit.com/steem/@tipu/tipu-is-looking-for-steem-power-delegators-pays-out-100-of-profit-50-of-curation-rewards-to-investors" rel="noopener">@tipU distributes 100% profit + 60% curation rewards to all investors</a>.</p>
properties (22)
authortipu
permlinkre-steem-monsters-tech-talk-steem-blockchain-integration-20180601t134205
categorysteemmonsters
json_metadata""
created2018-06-01 13:42:06
last_update2018-06-01 13:42:06
depth1
children0
last_payout2018-06-08 13:42: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_length579
author_reputation55,955,007,523,366
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,759,639
net_rshares0
@transparencybot ·
<h3>This post has received votes totaling more than $50.00 from the following pay for vote services:</h3>

postpromoter upvote in the amount of $94.35 STU, $118.54 USD.
ebargains upvote in the amount of $1.60 STU, $2.03 USD.

**For a total calculated value of $96 [STU,](http://steem.supply/rewards) $121 USD before curation, with a calculated curation of $24 USD.**

This information is being presented in the interest of transparency on our platform **and is by no means a judgement as to the quality of this post.**
properties (22)
authortransparencybot
permlinkre-steem-monsters-tech-talk-steem-blockchain-integration--bidbot
categorysteemmonsters
json_metadata{"tags":["bidbot","transparencybot"],"links":["http://steem.supply/rewards"],"app":"null/null","format":"markdown"}
created2018-06-01 01:09:57
last_update2018-06-01 01:09:57
depth1
children0
last_payout2018-06-08 01:09: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_length525
author_reputation-5,641,716,862,244
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,681,677
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-steem-blockchain-integration.mp3)
Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvoting this reply.
properties (22)
authortts
permlinkre-steem-monsters-tech-talk-steem-blockchain-integration-20180531t224126
categorysteemmonsters
json_metadata""
created2018-05-31 22:41:27
last_update2018-05-31 22:41:27
depth1
children0
last_payout2018-06-07 22:41:27
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_length374
author_reputation-4,535,154,553,995
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,667,376
net_rshares0
@tyady ·
Good post
properties (22)
authortyady
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180612t101822850z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-12 10:18:24
last_update2018-06-12 10:18:24
depth1
children0
last_payout2018-06-19 10:18: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_length9
author_reputation57,837,522,133
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id60,426,080
net_rshares0
@veteranforcrypto ·
Loving what you guys are doing here! Get what you gotta do done right and TRY not to feel rushed &#128523; I know great things are in the future &#128080;&#128080; Throwing the witness a vote as well &#128526;
properties (22)
authorveteranforcrypto
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t003702545z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 00:37:03
last_update2018-06-01 00:37:03
depth1
children0
last_payout2018-06-08 00:37: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_length209
author_reputation13,324,630,408,034
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,678,585
net_rshares0
@yordin ·
I would like to translate your publication into Spanish, so that Spanish speakers know about this great project. Please. You give me your permission?
properties (22)
authoryordin
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t034348119z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"app":"steemit/0.1"}
created2018-06-01 03:13:54
last_update2018-06-01 03:13:54
depth1
children2
last_payout2018-06-08 03:13: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_length149
author_reputation1,008,362,862,732
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,693,446
net_rshares0
@yabapmatt ·
@yordin Yes by all means, go ahead!<br/><div class="pull-right"><sub><a href="https://steemit.com/utopian-io/@roxane/fast-reply-v0-1-never-miss-to-answer-a-comment-again-and-do-it-faster-than-ever">Sent with Fast-Reply</a></sub></div>
properties (22)
authoryabapmatt
permlinkre-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-20180601t034348119z-1527856899626
categorysteemmonsters
json_metadata{"app":"fast-reply","version":0.2}
created2018-06-01 12:42:18
last_update2018-06-01 12:42:18
depth2
children1
last_payout2018-06-08 12:42: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_length234
author_reputation160,234,431,724,160
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,752,260
net_rshares0
@yordin ·
Thank you very much friend @yabapmatt. A hug from Venezuela. Regards!
properties (22)
authoryordin
permlinkre-yabapmatt-re-yabapmatt-steem-monsters-tech-talk-steem-blockchain-integration-1527856899626-20180601t144918902z
categorysteemmonsters
json_metadata{"tags":["steemmonsters"],"users":["yabapmatt"],"app":"steemit/0.1"}
created2018-06-01 14:19:24
last_update2018-06-01 14:19:24
depth3
children0
last_payout2018-06-08 14:19: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_length69
author_reputation1,008,362,862,732
root_title"Steem Monsters Tech Talk - Steem Blockchain Integration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,764,666
net_rshares0