@ledgerhq/connect-kit 1.0.0-beta.5 → 1.0.0-beta.7
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,10 +1,10 @@
|
|
1
1
|
import { ConnectSupportedChains, SupportedProviders, SupportedProviderImplementations } from "./provider";
|
2
2
|
export declare type CheckSupportOptions = {
|
3
3
|
providerType: SupportedProviders;
|
4
|
-
chainId?:
|
4
|
+
chainId?: number;
|
5
5
|
bridge?: string;
|
6
6
|
infuraId?: string;
|
7
|
-
rpc
|
7
|
+
rpc?: {
|
8
8
|
[chainId: number]: string;
|
9
9
|
};
|
10
10
|
};
|
@@ -4,6 +4,8 @@ export declare const LEDGER_CONNECT_ETHEREUM_PROP = "isLedgerConnect";
|
|
4
4
|
export interface EthereumProvider {
|
5
5
|
providers?: EthereumProvider[];
|
6
6
|
request(...args: unknown[]): Promise<unknown>;
|
7
|
+
disconnect(): Promise<void>;
|
8
|
+
emit(eventName: string | symbol, ...args: any[]): boolean;
|
7
9
|
on(...args: unknown[]): void;
|
8
10
|
removeListener(...args: unknown[]): void;
|
9
11
|
}
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import { EthereumProvider } from './Ethereum';
|
2
2
|
export interface initWalletConnectProviderOptions {
|
3
|
+
chainId?: number;
|
3
4
|
bridge?: string;
|
4
5
|
infuraId?: string;
|
5
6
|
rpc?: {
|
6
7
|
[chainId: number]: string;
|
7
8
|
};
|
8
|
-
chainId?: number;
|
9
9
|
}
|
10
10
|
export declare function initWalletConnectProvider(options: initWalletConnectProviderOptions): void;
|
11
11
|
export declare function isWalletConnectProviderConnected(): boolean;
|