File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 20
20
21
21
## Installation
22
22
23
- Head over to the [ releases] ( /releases ) page and download the latest ` .unitypackage ` file.
23
+ Head over to the [ releases] ( https://github.com/thirdweb-dev/unity-sdk /releases) page and download the latest ` .unitypackage ` file.
24
24
25
25
Drag and drop the file into your project.
26
26
@@ -41,6 +41,10 @@ var sdk = new ThirdwebSDK("goerli");
41
41
// connect a wallet via browser extension
42
42
var walletAddress = await sdk .wallet .Connect ();
43
43
44
+ // interact with the wallet
45
+ CurrencyValue balance = await sdk .wallet .GetBalance ();
46
+ var signature = await sdk .wallet .Sign (" message to sign" );
47
+
44
48
// get an instance of a deployed contract (no ABI requried!)
45
49
var contract = sdk .GetContract (" 0x..." );
46
50
You can’t perform that action at this time.
0 commit comments