From ae546769a0b900c964bc265c08e89564e22a8ce3 Mon Sep 17 00:00:00 2001 From: "sz.sahaj" <43649755+saszer@users.noreply.github.com> Date: Fri, 2 Sep 2022 16:14:35 +1000 Subject: [PATCH] feat: on_chain_collection_key + some extra NFT parameters for Solana support. --- Runtime/models/NFTs_model.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Runtime/models/NFTs_model.cs b/Runtime/models/NFTs_model.cs index ef3b45b..7127ab2 100644 --- a/Runtime/models/NFTs_model.cs +++ b/Runtime/models/NFTs_model.cs @@ -15,7 +15,9 @@ public class NFTs_model public Contract contract; public string owner; public int total; - public string continuation; + public string continuation; + public object status; + public object status_message; } [Serializable] @@ -80,7 +82,7 @@ public class Metadata public string short_name ; public int? tokenId ; } - + [Serializable] public class Collection { @@ -121,6 +123,7 @@ public class Nft public string creator_address; public string mint_address; public string collection_id; + public string on_chain_collection_key; public string file_url; public string cached_file_url; public string animation_url; @@ -136,7 +139,7 @@ public class Nft public List royalties = new List(); public List signatures = new List(); public int total; - public Assets assets = new Assets(); + public string owner; } [Serializable]