File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ MonoBehaviour:
44
44
m_Script : {fileID: 11500000, guid: 56d9559a79e304f44b5ac4d726f1ee68, type: 3}
45
45
m_Name :
46
46
m_EditorClassIdentifier :
47
- chain : goerli
47
+ activeChain : goerli
48
48
supportedChains :
49
49
- identifier : ethereum
50
50
chainId : 1
@@ -88,10 +88,14 @@ MonoBehaviour:
88
88
- identifier : binance-testnet
89
89
chainId : 97
90
90
rpcOverride :
91
+ - identifier : sepolia
92
+ chainId : 11155111
93
+ rpcOverride :
94
+ clientId :
95
+ initializeOnAwake : 1
91
96
appName :
92
97
appDescription :
93
- appIcons :
94
- -
98
+ appIcons : []
95
99
appUrl :
96
100
storageIpfsGatewayUrl :
97
101
relayerUrl :
@@ -102,7 +106,6 @@ MonoBehaviour:
102
106
walletConnectProjectId :
103
107
paperClientId :
104
108
factoryAddress :
105
- thirdwebApiKey :
106
109
gasless : 0
107
110
bundlerUrl :
108
111
paymasterUrl :
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ public void Initialize(string chainIdentifier)
206
206
{
207
207
appName = string . IsNullOrEmpty ( appName ) ? "thirdweb powered dApp" : appName ,
208
208
appDescription = string . IsNullOrEmpty ( appDescription ) ? "thirdweb powered dApp" : appDescription ,
209
- appIcons = string . IsNullOrEmpty ( appIcons [ 0 ] ) ? new string [ ] { "https://thirdweb.com/favicon.ico" } : appIcons ,
209
+ appIcons = ( appIcons == null || appIcons . Length == 0 || string . IsNullOrEmpty ( appIcons [ 0 ] ) ) ? new string [ ] { "https://thirdweb.com/favicon.ico" } : appIcons ,
210
210
appUrl = string . IsNullOrEmpty ( appUrl ) ? "https://thirdweb.com" : appUrl ,
211
211
magicLinkApiKey = string . IsNullOrEmpty ( magicLinkApiKey ) ? null : magicLinkApiKey ,
212
212
walletConnectProjectId = string . IsNullOrEmpty ( walletConnectProjectId ) ? "145769e410f16970a79ff77b2d89a1e0" : walletConnectProjectId ,
You can’t perform that action at this time.
0 commit comments