Skip to content
2 changes: 1 addition & 1 deletion packages/injected/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/injected-wallets",
"version": "2.10.13",
"version": "2.10.14-alpha.1",
"description": "Injected wallet module for connecting browser extension and mobile wallets to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, multi-chain and multi-account support, reactive wallet state subscriptions and real-time transaction state change notifications.",
"keywords": [
"Ethereum",
Expand Down
4 changes: 2 additions & 2 deletions packages/injected/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ function checkFor6963Providers() {
label: name,
getIcon: async () => icon,
getInterface: async () => ({
provider: createEIP1193Provider(provider)
provider
}),
platforms: ['all'],
eip6963Provider: createEIP1193Provider(provider) as InjectedProvider,
eip6963Provider: provider as InjectedProvider,
checkProviderIdentity: ({ provider }) => !!provider
})
})
Expand Down