Skip to content

Commit 169893b

Browse files
authored
Add Events to Prefab section (#22)
1 parent 712ca79 commit 169893b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The `Examples` folder contains a demo scene using our user-friendly prefabs, che
7777

7878
All Prefabs require the [ThirdwebManager](https://github.com/thirdweb-dev/unity-sdk/blob/main/Assets/Thirdweb/Examples/Scripts/Prefabs/ThirdwebManager.cs) prefab to get the SDK Instance, drag and drop it into your scene and select the networks you want to support from the Inspector.
7979

80-
[Connect Wallet Prefab](https://github.com/thirdweb-dev/unity-sdk/blob/main/Assets/Thirdweb/Examples/Scripts/Prefabs/Prefab_ConnectWallet.cs) - All-in one drag & drop wallet supporting multiple wallet providers, network switching, balance displaying and more!
80+
[Connect Wallet](https://github.com/thirdweb-dev/unity-sdk/blob/main/Assets/Thirdweb/Examples/Scripts/Prefabs/Prefab_ConnectWallet.cs) - All-in one drag & drop wallet supporting multiple wallet providers, network switching, balance displaying and more!
8181
- Drag and drop it into your scene and select the wallet providers you want to support from the Inspector.
8282
- You may also choose whether you want to activate the Network Switching feature (leave unchecked if your app only requires one network).
8383

@@ -89,7 +89,7 @@ All Prefabs require the [ThirdwebManager](https://github.com/thirdweb-dev/unity-
8989
- Or any combination of the above - they will all be displayed automatically in a grid view with vertical scroll!
9090
- Customize the prefab's ScrollView and Content gameobjects if you want your content to behave differently.
9191

92-
[NFT Prefab](https://github.com/thirdweb-dev/unity-sdk/blob/main/Assets/Thirdweb/Examples/Scripts/Prefabs/Prefab_NFT.cs) - Displays an NFT by calling LoadNFT through script!
92+
[NFT](https://github.com/thirdweb-dev/unity-sdk/blob/main/Assets/Thirdweb/Examples/Scripts/Prefabs/Prefab_NFT.cs) - Displays an NFT by calling LoadNFT through script!
9393
- Instantiate this Prefab through script.
9494
- Get its Prefab_NFT component.
9595
- Call the LoadNFT function and pass it your NFT struct to display your fetched NFT's images automatically.
@@ -100,4 +100,9 @@ Prefab_NFT nftPrefabScript = Instantiate(nftPrefab);
100100
nftPrefabScript.LoadNFT(nft);
101101
```
102102

103+
[Events](https://github.com/thirdweb-dev/unity-sdk/blob/main/Assets/Thirdweb/Examples/Scripts/Prefabs/Prefab_Events.cs) - Fetch and manipulate Contract Events with a simple API!
104+
- Get specific events from any contract.
105+
- Get all events from any contract.
106+
- Optional query filters.
107+
103108
See full documentation on the [thirdweb portal](https://portal.thirdweb.com).

0 commit comments

Comments
 (0)