@@ -19,11 +19,9 @@ public ChainData(string identifier, string chainId, string rpcOverride)
19
19
20
20
public class ThirdwebManager : MonoBehaviour
21
21
{
22
- [ Header ( "REQUIRED SETTINGS" ) ]
23
22
[ Tooltip ( "The chain to initialize the SDK with" ) ]
24
23
public string chain = "goerli" ;
25
24
26
- [ Header ( "CHAIN DATA" ) ]
27
25
[ Tooltip ( "Support any chain by adding it to this list from the inspector" ) ]
28
26
public List < ChainData > supportedChains = new List < ChainData > ( )
29
27
{
@@ -43,17 +41,21 @@ public class ThirdwebManager : MonoBehaviour
43
41
new ChainData ( "binance-testnet" , "97" , null ) ,
44
42
} ;
45
43
46
- [ Header ( "APP METADATA ") ]
44
+ [ Tooltip ( "The name of your app ") ]
47
45
public string appName = "Thirdweb Game" ;
46
+
47
+ [ Tooltip ( "The description of your app" ) ]
48
48
public string appDescription = "Thirdweb Game Demo" ;
49
+
50
+ [ Tooltip ( "Favicons for your app" ) ]
49
51
public string [ ] appIcons = new string [ ] { "https://thirdweb.com/favicon.ico" } ;
52
+
53
+ [ Tooltip ( "The url of your app" ) ]
50
54
public string appUrl = "https://thirdweb.com" ;
51
55
52
- [ Header ( "STORAGE OPTIONS" ) ]
53
56
[ Tooltip ( "IPFS Gateway Override" ) ]
54
57
public string storageIpfsGatewayUrl = "https://gateway.ipfscdn.io/ipfs/" ;
55
58
56
- [ Header ( "OZ DEFENDER OPTIONS" ) ]
57
59
[ Tooltip ( "Autotask URL" ) ]
58
60
public string relayerUrl = null ;
59
61
@@ -66,11 +68,9 @@ public class ThirdwebManager : MonoBehaviour
66
68
[ Tooltip ( "Forwarder Version (Defaults to 0.0.1 if left empty)" ) ]
67
69
public string forwaderVersionOverride = null ;
68
70
69
- [ Header ( "MAGIC LINK OPTIONS" ) ]
70
71
[ Tooltip ( "Magic Link API Key (https://dashboard.magic.link)" ) ]
71
72
public string magicLinkApiKey = null ;
72
73
73
- [ Header ( "SMART WALLET OPTIONS" ) ]
74
74
[ Tooltip ( "Factory Contract Address" ) ]
75
75
public string factoryAddress ;
76
76
@@ -89,7 +89,6 @@ public class ThirdwebManager : MonoBehaviour
89
89
[ Tooltip ( "Optional - If you want to use a custom entry point, you can provide the contract address here" ) ]
90
90
public string entryPointAddress ;
91
91
92
- [ Header ( "NATIVE PREFABS (DANGER ZONE)" ) ]
93
92
[ Tooltip ( "Instantiates the WalletConnect SDK for Native platforms." ) ]
94
93
public GameObject WalletConnectPrefab ;
95
94
0 commit comments