@wagmi/connectors 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -41,6 +41,8 @@ function getInjectedName(ethereum) {
41
41
  return "Exodus";
42
42
  if (provider.isFrame)
43
43
  return "Frame";
44
+ if (provider.isFrontier)
45
+ return "Frontier Wallet";
44
46
  if (provider.isKuCoinWallet)
45
47
  return "KuCoin Wallet";
46
48
  if (provider.isMathWallet)
@@ -61,6 +63,8 @@ function getInjectedName(ethereum) {
61
63
  return "Tokenary";
62
64
  if (provider.isTrust || provider.isTrustWallet)
63
65
  return "Trust Wallet";
66
+ if (provider.isHyperPay)
67
+ return "HyperPay Wallet";
64
68
  if (provider.isMetaMask)
65
69
  return "MetaMask";
66
70
  if (provider.isXDEFI)
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { C as Connector, a as ConnectorData, b as ConnectorEvents } from './base-84a689bb.js';
2
- export { E as Ethereum } from './types-86dbb446.js';
2
+ export { E as Ethereum } from './types-47f9e468.js';
3
3
  import '@wagmi/core';
4
4
  import '@wagmi/core/chains';
5
5
  import 'eventemitter3';
@@ -2,7 +2,7 @@ import { Address } from '@wagmi/core';
2
2
  import { Chain } from '@wagmi/core/chains';
3
3
  import { providers } from 'ethers';
4
4
  import { C as Connector } from './base-84a689bb.js';
5
- import { E as Ethereum } from './types-86dbb446.js';
5
+ import { E as Ethereum } from './types-47f9e468.js';
6
6
  import 'eventemitter3';
7
7
  import 'abitype';
8
8
 
package/dist/injected.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  InjectedConnector
3
- } from "./chunk-SCGCTBHA.js";
3
+ } from "./chunk-CYQSS77O.js";
4
4
  import "./chunk-5NCTPR6C.js";
5
5
  export {
6
6
  InjectedConnector
@@ -1,6 +1,6 @@
1
1
  import { Chain } from '@wagmi/core/chains';
2
2
  import { InjectedConnectorOptions, InjectedConnector } from './injected.js';
3
- import { E as Ethereum } from './types-86dbb446.js';
3
+ import { E as Ethereum } from './types-47f9e468.js';
4
4
  import '@wagmi/core';
5
5
  import 'ethers';
6
6
  import './base-84a689bb.js';
package/dist/metaMask.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  InjectedConnector
3
- } from "./chunk-SCGCTBHA.js";
3
+ } from "./chunk-CYQSS77O.js";
4
4
  import {
5
5
  __privateAdd,
6
6
  __privateGet,
@@ -49,6 +49,7 @@ type InjectedProviderFlags = {
49
49
  isCoinbaseWallet?: true;
50
50
  isExodus?: true;
51
51
  isFrame?: true;
52
+ isFrontier?: true;
52
53
  isKuCoinWallet?: true;
53
54
  isMathWallet?: true;
54
55
  isMetaMask?: true;
@@ -63,6 +64,7 @@ type InjectedProviderFlags = {
63
64
  isTokenary?: true;
64
65
  isTrust?: true;
65
66
  isTrustWallet?: true;
67
+ isHyperPay?: true;
66
68
  isXDEFI?: true;
67
69
  };
68
70
  type InjectedProviders = InjectedProviderFlags & {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@wagmi/connectors",
3
3
  "description": "A collection of connectors for wagmi",
4
4
  "license": "MIT",
5
- "version": "0.3.0",
5
+ "version": "0.3.1",
6
6
  "peerDependencies": {
7
7
  "@wagmi/core": ">=0.9.x",
8
8
  "ethers": ">=5.5.1 <6",