Skip to content

Commit

Permalink
feat: on_chain_collection_key + some extra NFT parameters for Solana …
Browse files Browse the repository at this point in the history
…support.
  • Loading branch information
saszer committed Sep 2, 2022
1 parent f36e115 commit ae54676
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Runtime/models/NFTs_model.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -80,7 +82,7 @@ public class Metadata
public string short_name ;
public int? tokenId ;
}

[Serializable]
public class Collection
{
Expand Down Expand Up @@ -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;
Expand All @@ -136,7 +139,7 @@ public class Nft
public List<Royalty> royalties = new List<Royalty>();
public List<string> signatures = new List<string>();
public int total;
public Assets assets = new Assets();
public string owner;
}

[Serializable]
Expand Down

0 comments on commit ae54676

Please sign in to comment.