@ledgerhq/connect-kit 1.0.10 → 1.0.11
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +4 -0
- package/dist/umd/index.js +5 -5
- package/dist/umd/index.js.map +1 -1
- package/dist/umd/lib/provider.d.ts +3 -2
- package/package.json +1 -1
@@ -1,9 +1,10 @@
|
|
1
1
|
import { EthereumProvider } from "../providers/Ethereum";
|
2
2
|
import { SolanaProvider } from "../providers/Solana";
|
3
3
|
export declare enum ConnectSupportedChains {
|
4
|
-
EthereumMainnet = 1
|
4
|
+
EthereumMainnet = 1,
|
5
|
+
Polygon = 137
|
5
6
|
}
|
6
|
-
export declare function isChainIdSupported(chainId:
|
7
|
+
export declare function isChainIdSupported(chainId: number): boolean;
|
7
8
|
export declare enum SupportedProviders {
|
8
9
|
Ethereum = "Ethereum",
|
9
10
|
Solana = "Solana"
|