From 18f939e65fc6a880896829589e55adb9da744763 Mon Sep 17 00:00:00 2001 From: Troy McConaghy Date: Tue, 2 Apr 2019 13:58:39 +0200 Subject: [PATCH] Add some tips when clicking the app's buttons --- content/tutorials/react-get-use-data-set.md | 8 ++++++-- content/tutorials/react-publish-data-set.md | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/content/tutorials/react-get-use-data-set.md b/content/tutorials/react-get-use-data-set.md index 423fc7d2..ea2d7487 100644 --- a/content/tutorials/react-get-use-data-set.md +++ b/content/tutorials/react-get-use-data-set.md @@ -65,9 +65,13 @@ With all these buttons in place, you should see this: ![React App 05](images/react-app-05.png) -## Final Result +Tip: Before clicking the `Retrieve assets` button, it might help to reload the page. -That's it. If you have no errors in your `console.log` and can see your asset files listed, you have a working marketplace. +Go ahead and click the `Retrieve assets` button, and then the `Consume asset` button. Approve all the MetaMask dialog boxes. + +If you have no errors in your `console.log` and can see your asset files listed, you have a working marketplace. + +## Final Result Here is the full source of `src/App.js` that you should have if you followed this tutorial: diff --git a/content/tutorials/react-publish-data-set.md b/content/tutorials/react-publish-data-set.md index 70e4b4a7..2c9e1506 100644 --- a/content/tutorials/react-publish-data-set.md +++ b/content/tutorials/react-publish-data-set.md @@ -101,9 +101,13 @@ The last thing we need is a button to start our registration inside the render f ``` -## Final Result +Tip: Before clicking the `Register asset` button, it might help to reload the page. -That's it. If you have no errors in your `console.log` and you receive an alert after you click `Register asset` then you have successfully registered an asset. +When you click on the `Register asset` button, you should get four separate dialog boxes from MetaMask, in a series, i.e. the second one only appears after you accept/approve the first one, and so on. + +If you have no errors in your `console.log`, then you have successfully registered an asset. + +## Final Result Here is the full source of `src/App.js` that you should have if you followed this tutorial: