From 8efe571e586cf222955ff3f7e9001eba3ecaed0e Mon Sep 17 00:00:00 2001 From: Greg Zaitsev Date: Thu, 07 May 2020 10:16:32 +0000 Subject: [PATCH] Update acceptance document --- --- 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