btc-wallet 0.3.3 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "btc-wallet",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -1,10 +0,0 @@
1
- interface ExecuteBurrowSupplyParams {
2
- /** btc amount, e.g. 0.01 */
3
- amount: string;
4
- /** fee rate, if not provided, will use the recommended fee rate from the btc node */
5
- feeRate?: number;
6
- /** environment, default is mainnet */
7
- environment?: 'dev' | 'testnet' | 'mainnet';
8
- }
9
- export declare function executeBurrowSupply({ amount, feeRate, environment, }: ExecuteBurrowSupplyParams): Promise<void>;
10
- export {};