btc-wallet 0.3.10 → 0.3.12

Sign up to get free protection for your applications and to get access to all the features.
@@ -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 {};