Skip to content

Commit 64254e6

Browse files
committed
save
1 parent a84c60d commit 64254e6

21 files changed

+16411
-142
lines changed

Web3/Assets/EasyWeb3/Scripts/Web3Components/UI/TestViewer.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -288,13 +288,13 @@ private async Task<bool> TestERC721Calls() {
288288
}
289289

290290
private async Task<bool> LoadOwnerNFTS(string _nftContract, string _nftOwner) {
291-
ERC721 _nft = new ERC721(_nftContract, ChainId.ETH_MAINNET);
292-
await _nft.Load();
293-
Debug.Log("\tname: "+_nft.Name);
294-
Debug.Log("\tsymbol: "+_nft.Symbol);
295-
Debug.Log("\ttotal supply: "+_nft.ValueFromDecimals(_nft.TotalSupply));
291+
ERC721 _contract = new ERC721(_nftContract, ChainId.ETH_MAINNET);
292+
await _contract.Load();
293+
Debug.Log("\tname: "+_contract.Name);
294+
Debug.Log("\tsymbol: "+_contract.Symbol);
295+
Debug.Log("\ttotal supply: "+_contract.ValueFromDecimals(_contract.TotalSupply));
296296
Debug.Log("Getting NFTs from an owner...");
297-
List<NFT> _nfts = await _nft.GetOwnerNFTs(_nftOwner,
297+
List<NFT> _nfts = await _contract.GetOwnerNFTs(_nftOwner,
298298
(_nft,_progress) => { // called when an nft is found
299299
Debug.Log("\t"+(_progress*100)+"% | Loaded NFT: "+_nft.Data.image);
300300
},

Web3/Logs/AssetImportWorker0.log

Lines changed: 2179 additions & 0 deletions
Large diffs are not rendered by default.

Web3/Logs/AssetImportWorker1.log

Lines changed: 1285 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
Base path: 'C:/Program Files/Unity/Hub/Editor/2021.3.0f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2021.3.0f1/Editor/Data/PlaybackEngines'
22
Cmd: initializeCompiler
33

4+
Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4)
5+
6+
Quitting shader compiler process

Web3/Logs/shadercompiler-UnityShaderCompiler.exe0.log

Lines changed: 1249 additions & 0 deletions
Large diffs are not rendered by default.

Web3/Logs/shadercompiler-UnityShaderCompiler.exe1.log

Lines changed: 771 additions & 0 deletions
Large diffs are not rendered by default.

Web3/Logs/shadercompiler-UnityShaderCompiler.exe10.log

Lines changed: 758 additions & 0 deletions
Large diffs are not rendered by default.

Web3/Logs/shadercompiler-UnityShaderCompiler.exe11.log

Lines changed: 786 additions & 0 deletions
Large diffs are not rendered by default.

Web3/Logs/shadercompiler-UnityShaderCompiler.exe12.log

Lines changed: 774 additions & 0 deletions
Large diffs are not rendered by default.

Web3/Logs/shadercompiler-UnityShaderCompiler.exe13.log

Lines changed: 765 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)