btc-wallet 0.2.5 → 0.2.7
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +60 -6
- package/dist/components/signModal/index.d.ts +1 -1
- package/dist/config.d.ts +14 -0
- package/dist/context/index.d.ts +0 -2
- package/dist/core/bridgeSupplyUtils.d.ts +10 -0
- package/dist/{components → core}/btcWalletSelectorContext.d.ts +4 -1
- package/dist/{utils → core}/setupBTCWallet.d.ts +1 -1
- package/dist/evmSigner/index.d.ts +2737 -817
- package/dist/index.d.ts +3 -3
- package/dist/index.js +395 -228
- package/dist/index.js.map +4 -4
- package/dist/utils/ethereumUtils.d.ts +1 -4
- package/dist/utils/index.d.ts +0 -5
- package/dist/utils/request.d.ts +11 -0
- package/esm/index.js +391 -218
- package/esm/index.js.map +4 -4
- package/package.json +9 -7
- package/dist/components/hook.d.ts +0 -1
package/dist/index.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
export * from './connector';
|
2
2
|
export { ConnectProvider } from './context';
|
3
3
|
export * from './hooks';
|
4
|
-
export * from './
|
5
|
-
export * from './
|
6
|
-
export * from './
|
4
|
+
export * from './core/btcWalletSelectorContext';
|
5
|
+
export * from './core/setupBTCWallet';
|
6
|
+
export * from './core/bridgeSupplyUtils';
|
7
7
|
export declare const getVersion: () => string;
|