Skip to content

Commit a72fd34

Browse files
Update latest bridge
1 parent 18e8928 commit a72fd34

File tree

2 files changed

+66
-59
lines changed

2 files changed

+66
-59
lines changed

Assets/Thirdweb/Demo/ThirdwebSDKDemos.cs

+12-5
Original file line numberDiff line numberDiff line change
@@ -260,12 +260,19 @@ public async void Deploy()
260260
resultText.text = "Deploying...";
261261

262262
// deploy nft collection contract
263-
var address = await sdk.deployer.DeployNFTCollection(new NFTContractDeployMetadata
263+
try
264264
{
265-
name = "Unity Collection",
266-
primary_sale_recipient = await sdk.wallet.GetAddress(),
267-
});
268-
resultText.text = "Deployed: " + address;
265+
var address = await sdk.deployer.DeployNFTCollection(new NFTContractDeployMetadata
266+
{
267+
name = "Unity Collection",
268+
primary_sale_recipient = await sdk.wallet.GetAddress(),
269+
});
270+
resultText.text = "Deployed: " + address;
271+
}
272+
catch (System.Exception e)
273+
{
274+
resultText.text = "Deploy Failed (see console): " + e.Message;
275+
}
269276
}
270277

271278
public async void CustomContract()

Assets/WebGLTemplates/Thirdweb/lib/thirdweb-unity-bridge.js

+54-54
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)