btc-wallet 0.3.11 → 0.3.12
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/core/btcUtils.d.ts +1 -7
- package/dist/index.js +576 -323
- package/dist/index.js.map +4 -4
- package/dist/utils/Dialog.d.ts +13 -0
- package/dist/utils/request.d.ts +1 -1
- package/dist/utils/satoshi.d.ts +18 -0
- package/esm/index.js +574 -321
- package/esm/index.js.map +4 -4
- package/package.json +1 -1
package/dist/core/btcUtils.d.ts
CHANGED
@@ -25,11 +25,5 @@ interface ExecuteBTCDepositAndActionParams {
|
|
25
25
|
/** is dev environment */
|
26
26
|
isDev?: boolean;
|
27
27
|
}
|
28
|
-
export declare function executeBTCDepositAndAction({ action, feeRate, isDev, }: ExecuteBTCDepositAndActionParams): Promise<
|
29
|
-
result: string;
|
30
|
-
error?: undefined;
|
31
|
-
} | {
|
32
|
-
result: string;
|
33
|
-
error: any;
|
34
|
-
}>;
|
28
|
+
export declare function executeBTCDepositAndAction({ action, feeRate, isDev, }: ExecuteBTCDepositAndActionParams): Promise<any[]>;
|
35
29
|
export {};
|