Skip to content

Commit 2a7285b

Browse files
authored
Update README.md
Signed-off-by: Firekeeper <0xFirekeeper@gmail.com>
1 parent 5fffef4 commit 2a7285b

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020
# Supported platforms
2121

22-
![wallets](https://github.com/thirdweb-dev/unity-sdk/assets/43042585/621563a7-25b6-4b01-a85a-c31c109bf88c)
22+
Build games for WebGL, Standalone and Mobile using 1000+ supported chains.
2323

24-
More on wallets [here](https://thirdweb.com/dashboard/wallet).
24+
![tw_wallets](https://github.com/thirdweb-dev/unity-sdk/assets/43042585/0c7f5ad1-263e-4cc8-9dfa-97a7f84bc471)
2525

2626
# Installation
2727

@@ -31,10 +31,12 @@ Drag and drop the file into your project.
3131

3232
The package comes with a sample Scene and Prefab examples showcasing the different capabilities of the SDK.
3333

34-
All you need is a ThirdwebManager component in your scene. See [documentation](https://portal.thirdweb.com/unity) for more information.
34+
All you need is a ThirdwebManager prefab in your scene. See [documentation](https://portal.thirdweb.com/unity) for more information.
3535

3636
The SDK has been tested on Web, Desktop and Mobile platforms using Unity 2021 and 2022 LTS. We recommend using 2022 LTS.
3737

38+
The example scenes are built using Unity 2022 LTS.
39+
3840
Note: The Newtonsoft DLL is included as part of the Unity Package, feel free to deselect it if you already have it installed as a dependency to avoid conflicts.
3941

4042
# Build
@@ -70,8 +72,8 @@ var sdk = ThirdwebManager.Instance.SDK;
7072

7173
// Configure the connection
7274
var connection = new WalletConnection(
73-
provider: WalletProvider.Paper, // The wallet provider you want to connect to (Required)
74-
chainId: 1, // The chain you want to connect to (Required)
75+
provider: WalletProvider.EmbeddedWallet, // The wallet provider you want to connect to (Required)
76+
chainId: 5, // The chain you want to connect to (Required)
7577
email: "email@email.com" // The email you want to authenticate with (Required for this provider)
7678
);
7779

@@ -102,7 +104,7 @@ var res = await contract.Read<string>("myReadFunction", arg1, arg2, ...);
102104
var txRes = await contract.Write("myWriteFunction", arg1, arg2, ...);
103105
```
104106

105-
# Prefabs
107+
# Prefab Examples
106108

107109
The `Examples` folder contains a demo scene using our user-friendly prefabs, check it out!
108110

@@ -166,4 +168,4 @@ nftPrefabScript.LoadNFT(nft);
166168
- Authentication.
167169
- Deployment.
168170

169-
See full documentation on the [thirdweb portal](https://portal.thirdweb.com).
171+
See full documentation on the [thirdweb portal](https://portal.thirdweb.com/unity).

0 commit comments

Comments
 (0)