From 95f893011b7835e08dbdc43af0abd63ed8022619 Mon Sep 17 00:00:00 2001 From: Greg Zaitsev Date: Thu, 07 May 2020 12:43:37 +0000 Subject: [PATCH] Merge branch 'substrate2' --- --- a/doc/demo_milestone1-2.md +++ b/doc/demo_milestone1-2.md @@ -30,19 +30,19 @@ Before we continue, we need to do some preparations in the UI: Add NFT Data types so that the UI knows how to decode them. Go to [Settings-Developer Tab](https://polkadot.js.org/apps/#/settings/developer) and add following types to the JSON object in there: ``` { - "Address": "AccountId", - "LookupSource": "AccountId", - "Weight": "u32", "NftItemType": { "Collection": "u64", "Owner": "AccountId", "Data": "Vec" }, "CollectionType": { + "Owner": "AccountId", "NextItemId": "u64", - "Owner": "AccountId", "CustomDataSize": "u32" - } + }, + "Address": "AccountId", + "LookupSource": "AccountId", + "Weight": "u32" } ``` -- gitstuff