We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1f047e commit 1701f24Copy full SHA for 1701f24
README.md
@@ -20,7 +20,7 @@
20
21
## Installation
22
23
-Head over to the [releases](/releases) page and download the latest `.unitypackage` file.
+Head over to the [releases](https://github.com/thirdweb-dev/unity-sdk/releases) page and download the latest `.unitypackage` file.
24
25
Drag and drop the file into your project.
26
@@ -41,6 +41,10 @@ var sdk = new ThirdwebSDK("goerli");
41
// connect a wallet via browser extension
42
var walletAddress = await sdk.wallet.Connect();
43
44
+// interact with the wallet
45
+CurrencyValue balance = await sdk.wallet.GetBalance();
46
+var signature = await sdk.wallet.Sign("message to sign");
47
+
48
// get an instance of a deployed contract (no ABI requried!)
49
var contract = sdk.GetContract("0x...");
50
0 commit comments