@ledgerhq/connect-kit 1.0.0-beta.6 → 1.0.0-beta.7
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +6 -0
- package/dist/umd/index.d.ts +2 -0
- package/dist/umd/index.js.map +1 -1
- package/dist/umd/providers/Ethereum.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -11,12 +11,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
11
11
|
### Changed
|
12
12
|
- Release workflow changes.
|
13
13
|
|
14
|
+
## 1.0.0-beta.7 - 2022-11-14
|
15
|
+
### Changed
|
16
|
+
- Added disconnect and emit to the EthereumProvider interface to implement
|
17
|
+
the lerger wagmi connector.
|
18
|
+
|
14
19
|
## 1.0.0-beta.6 - 2022-11-10
|
15
20
|
### Changed
|
16
21
|
- The rpc parameter is now optional.
|
17
22
|
- The chainId parameter is now optional, defaults to 1.
|
18
23
|
- No defaults are set for WalletConnect parameters.
|
19
24
|
- Hide the Connect Kit modal on the disconnect event handler.
|
25
|
+
- Add utm_medium parameter to buy URL.
|
20
26
|
|
21
27
|
## 1.0.0-beta.3 - 2022-11-01
|
22
28
|
### Fixed
|
package/dist/umd/index.d.ts
CHANGED
@@ -3,6 +3,8 @@ import WalletConnectProvider from '@walletconnect/ethereum-provider/dist/esm';
|
|
3
3
|
interface EthereumProvider {
|
4
4
|
providers?: EthereumProvider[];
|
5
5
|
request(...args: unknown[]): Promise<unknown>;
|
6
|
+
disconnect(): Promise<void>;
|
7
|
+
emit(eventName: string | symbol, ...args: any[]): boolean;
|
6
8
|
on(...args: unknown[]): void;
|
7
9
|
removeListener(...args: unknown[]): void;
|
8
10
|
}
|