File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @web3-onboard/injected-wallets" ,
3
- "version" : " 2.0.12 " ,
3
+ "version" : " 2.0.13-alpha.1 " ,
4
4
"description" : " Injected wallets module for web3-onboard" ,
5
5
"repository" : " blocknative/web3-onboard" ,
6
6
"module" : " dist/index.js" ,
Original file line number Diff line number Diff line change @@ -319,13 +319,18 @@ const imtoken: InjectedWalletModule = {
319
319
320
320
const liquality : InjectedWalletModule = {
321
321
label : ProviderLabel . Liquality ,
322
- injectedNamespace : InjectedNameSpace . Arbitrum ,
322
+ injectedNamespace : InjectedNameSpace . Ethereum ,
323
323
checkProviderIdentity : ( { provider } ) =>
324
324
! ! provider && ! ! provider [ ProviderIdentityFlag . Liquality ] ,
325
325
getIcon : async ( ) => ( await import ( './icons/liquality.js' ) ) . default ,
326
326
getInterface : async ( ) => {
327
- const provider = window [ InjectedNameSpace . Arbitrum ]
327
+ const provider = createEIP1193Provider ( window . ethereum , {
328
+ wallet_switchEthereumChain : UNSUPPORTED_METHOD ,
329
+ eth_selectAccounts : UNSUPPORTED_METHOD
330
+ } )
331
+
328
332
provider . removeListener = ( event , func ) => { }
333
+
329
334
return { provider }
330
335
} ,
331
336
platforms : [ 'desktop' ]
You can’t perform that action at this time.
0 commit comments