We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c985e10 commit 6ef31aeCopy full SHA for 6ef31ae
Assets/Thirdweb/Core/Scripts/ERC1155.cs
@@ -94,7 +94,7 @@ public async Task<List<NFT>> GetAll(QueryAllParams queryParams = null)
94
}
95
// TODO: Add Multicall
96
List<NFT> allNfts = new List<NFT>();
97
- for (int i = start; i < end; i++)
+ for (int i = start; i <= end; i++)
98
allNfts.Add(await Get(i.ToString()));
99
return allNfts;
100
Assets/Thirdweb/Core/Scripts/ERC721.cs
@@ -102,7 +102,7 @@ public async Task<List<NFT>> GetAll(QueryAllParams queryParams = null)
102
catch (System.Exception)
103
{
104
105
106
107
108
0 commit comments