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 5b5cccc commit 46f6638Copy full SHA for 46f6638
Assets/Thirdweb/Core/Scripts/ERC1155.cs
@@ -116,7 +116,7 @@ public async Task<List<NFT>> GetOwned(string address = null)
116
List<NFT> ownedNfts = new List<NFT>();
117
for (int i = 0; i < totalCount; i++)
118
{
119
- BigInteger ownedBalance = BigInteger.Parse(await Balanceof(owner, i.ToString()));
+ BigInteger ownedBalance = BigInteger.Parse(await BalanceOf(owner, i.ToString()));
120
if (ownedBalance == 0)
121
122
continue;
0 commit comments